Web State Template CDN

A content delivery network (CDN) provides the fast delivery of internet content. It is a group of servers that provide our template's static resources such as CSS, JavaScript (JS), fonts, and images in nodes all around the world. When a visitor uses your site, the node closest to them will deliver the static content. This means the data is traveling the shortest distance to the user, which reduces latency, increases performance, and provides the fastest site experience.

How this works

You can add CSS and JavaScript CDN references to your HTML webpage and they will work the same as internal style sheets or JavaScript files. Add those references into the head tag of your webpage.

Examples

Using core CSS files

<link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/cagov.core.css" rel="stylesheet" integrity="sha256-gfvqsu+DWwTXIdxtei9rMd7i34dU6Upcn4BF0Or2YW8=" crossorigin="anonymous">
<link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-oceanside.css" rel="stylesheet"  integrity="sha256-PC5Yszm8bAjYYFmjeL8EeB8mHo+S4dJbQt4OwA4aTmg=" crossorigin="anonymous">

Using JS files

<script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/js/cagov.core.js" integrity="sha256-yb1n0OhHox54XtT0AL7aBfUvbeEOhUX0eSAqwlUktSo=" crossorigin="anonymous"></script>

Crossorigin anonymous

Prevents .ca.gov “samesite” cookies (from Google Analytics, etc) from being transmitted on CDN requests. Should ALWAYS be there.

Generate Integrity hash (SRI Hash Generator)

Include optional integrity SRI hashes on our CDN links to guarantee our code is not tampered with on transmission. Using the shorter sha256 is fine. Do not use in code generators that automatically update the CDN version.

Integrity hash generator

Web page using Web State Template CDN

  <!doctype html>
   <html lang="en">
    <head>
     <meta charset="utf-8">
     <title>State Template</title>
     <meta name="Author" content="State of California" />
     <meta name="Description" content="State of California" />
     <meta name="Keywords" content="California, government" />
     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
     
     <!-- Public Sans font google API -->
     <link rel="preconnect" href="https://fonts.googleapis.com">
     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
     <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=block">

     <!-- State Template CDN CSS -->
     <link rel="stylesheet" href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/cagov.core.css"  integrity="sha256-gfvqsu+DWwTXIdxtei9rMd7i34dU6Upcn4BF0Or2YW8="  crossorigin="anonymous">
     <link rel="stylesheet" href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-oceanside.css"   integrity="sha256-PC5Yszm8bAjYYFmjeL8EeB8mHo+S4dJbQt4OwA4aTmg="  crossorigin="anonymous">
     <!-- State Template JavaScript CDN -->
     <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/js/cagov.core.js" integrity="sha256-yb1n0OhHox54XtT0AL7aBfUvbeEOhUX0eSAqwlUktSo=" crossorigin="anonymous"></script>

    </head>
   <body>
    <header role="banner" id="header" class="global-header fixed">
      <div id="skip-to-content"><a href="#main-content">Skip to Main Content</a></div>
       <!-- utility header goes here -->
       <!-- site header goes here -->
       <!-- mobile controls go here -->
       <div class="navigation-search full-width-nav">
        <div id="head-search" class="search-container featured-search">
          <!-- search goes here -->
        </div>
        <!-- site navigation goes here -->
       </div>
      <div class="header-decoration"></div>
     </header>
     <div id="main-content" class="main-content">
     <div class="container">
      <main class="main-primary">
        Page content
      </main>
     </div>
     </div>
     <!-- global footer goes here -->
   </body>
   </html>
  

Core files CDN links, by template version

Every version release of the state web template will get its own CDN links for the CSS and JavaScript code. This means updating to a new version will be much easier, simply updating to the updated CDN version links. Using CDN links is also another great way to test what happens to your website with different versions of the state web template.

Web State Template v6 (production)

  1. Version 6.3.1

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.1/js/cagov.core.min.js" crossorigin="anonymous"></script>
  2. Version 6.3.0

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.3.0/js/cagov.core.min.js" crossorigin="anonymous"></script>
  3. Version 6.2.1

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.1/js/cagov.core.min.js" crossorigin="anonymous"></script>
  4. Version 6.2.0

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/js/cagov.core.js" crossorigin="anonymous"></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.2.0/js/cagov.core.min.js" crossorigin="anonymous"></script>
  5. Version 6.1.2

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.2/js/cagov.core.min.js" crossorigin="anonymous"></script>
  6. Version 6.1.1

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.1/js/cagov.core.min.js" crossorigin="anonymous"></script>
  7. Version 6.1.0

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.1.0/js/cagov.core.min.js" crossorigin="anonymous"></script>

State Template v6 (beta)

  1. Version 6.0.9

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.9/js/cagov.core.min.js" crossorigin="anonymous"></script>
  2. Version 6.0.8

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/css/colortheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.8/js/cagov.core.min.js" crossorigin="anonymous"></script>
  3. Version 6.0.7

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.7/js/cagov.core.min.js" crossorigin="anonymous"></script>
  4. Version 6.0.6

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.6/js/cagov.core.min.js" crossorigin="anonymous"></script>
  5. Version 6.0.5

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.5/js/cagov.core.min.js" crossorigin="anonymous"></script>
  6. Version 6.0.4

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.4/js/cagov.core.min.js" crossorigin="anonymous"></script>
  7. Version 6.0.3

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.3/js/cagov.core.min.js" crossorigin="anonymous"></script>
  8. Version 6.0.2

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.2/js/cagov.core.min.js" crossorigin="anonymous"></script>
  9. Version 6.0.1

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.1/js/cagov.core.min.js" crossorigin="anonymous"></script>
  10. Version 6.0.0

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/6.0.0/js/cagov.core.min.js" crossorigin="anonymous"></script>

State Template v5 (legacy)

  1. Version 5.6.2

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.2/js/cagov.core.min.js" crossorigin="anonymous"></script>
  2. Version 5.6.1

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.1/js/cagov.core.min.js" crossorigin="anonymous"></script>
  3. Version 5.6.0

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.6.0/js/cagov.core.min.js" crossorigin="anonymous"></script>
  4. Version 5.5.24

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.24/js/cagov.core.min.js" crossorigin="anonymous"></script>
  5. Version 5.5.23

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.23/js/cagov.core.min.js" crossorigin="anonymous"></script>
  6. Version 5.5.22

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.22/js/cagov.core.min.js" crossorigin="anonymous"></script>
  7. Version 5.5.21

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.21/js/cagov.core.min.js" crossorigin="anonymous"></script>
  8. Version 5.5.20

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.20/js/cagov.core.min.js" crossorigin="anonymous"></script>
  9. Version 5.5.19

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.19/js/cagov.core.min.js" crossorigin="anonymous"></script>
  10. Version 5.5.18

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.18/js/cagov.core.min.js" crossorigin="anonymous"></script>
  11. Version 5.5.17

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.17/js/cagov.core.min.js" crossorigin="anonymous"></script>
  12. Version 5.5.16

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.16/js/cagov.core.min.js" crossorigin="anonymous"></script>
  13. Version 5.5.15

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-delta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-delta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-santacruz.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-santacruz.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-shasta.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-shasta.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.15/js/cagov.core.min.js" crossorigin="anonymous"></script>
  14. Version 5.5.14

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.14/js/cagov.core.min.js" crossorigin="anonymous"></script>
  15. Version 5.5.13

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.13/js/cagov.core.min.js" crossorigin="anonymous"></script>
  16. Version 5.5.12

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.12/js/cagov.core.min.js" crossorigin="anonymous"></script>
  17. Version 5.5.11

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.11/js/cagov.core.min.js" crossorigin="anonymous"></script>
  18. Version 5.5.10

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.10/js/cagov.core.min.js" crossorigin="anonymous"></script>
  19. Version 5.5.9

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.9/js/cagov.core.min.js" crossorigin="anonymous"></script>
  20. Version 5.5.8

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.8/js/cagov.core.min.js" crossorigin="anonymous"></script>
  21. Version 5.5.7

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.7/js/cagov.core.min.js" crossorigin="anonymous"></script>
  22. Version 5.5.6

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.6/js/cagov.core.min.js" crossorigin="anonymous"></script>
  23. Version 5.5.5

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.5/js/cagov.core.min.js" crossorigin="anonymous"></script>
  24. Version 5.5.4

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.4/js/cagov.core.min.js" crossorigin="anonymous"></script>
  25. Version 5.5.3

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.3/js/cagov.core.min.js" crossorigin="anonymous"></script>
  26. Version 5.5.2

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.2/js/cagov.core.min.js" crossorigin="anonymous"></script>
  27. Version 5.5.1

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.1/js/cagov.core.min.js" crossorigin="anonymous"></script>
  28. Version 5.5.0

    CSS

    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/cagov.core.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/cagov.core.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/cagov.font-only.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/cagov.font-only.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-eureka.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-eureka.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-mono.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-mono.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-oceanside.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-oceanside.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-orangecounty.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-orangecounty.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-pasorobles.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-pasorobles.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-sacramento.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-sacramento.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-santabarbara.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-santabarbara.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-sierra.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-sierra.min.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-trinity.css" rel="stylesheet" crossorigin="anonymous">
    <link href="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/css/colorscheme-trinity.min.css" rel="stylesheet" crossorigin="anonymous">

    JS

    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/js/cagov.core.js" crossorigin="anonymous></script>
    <script src="https://cdn.cdt.ca.gov/cdt/statetemplate/5.5.0/js/cagov.core.min.js" crossorigin="anonymous"></script>