<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

 /* theme imports */

:root {
  /* colors */
  --primary-color: #c91245;
  --primary-hover: #a10e37;
  --secondary-color: #000;
  --secondary-hover: #000;
  --tertiary-color: #003da5;
  --black: #000;
  --white: #fff;
  --dark-grey: #333;
  --dark-medium-grey: #666;
  --medium-grey: #999;
  --light-grey: #ccc;
  --light-light-grey: #f0f0f0;
  --accent-color-1: #f4f4f4;

  /* color assignments */
  --link-color: var(--secondary-color);
  --link-hover-color: var(--primary-hover);
  --button-color: var(--primary-color);
  --button-hover-color: var(--primary-hover);
  --background-color: var(--white);
  --light-color: var(--light-grey);
  --dark-color: var(--dark-grey);
  --text-color: var(--black);

  /* fonts */
  --body-font-family: 'Work Sans', arial, helvetica, sans-serif;
  --script-font-family: 'WK Kellogg Script', arial, helvetica, sans-serif;
  --heading-font-family: var(--body-font-family);
  --raisin-bran-font: 'Montserrat', sans-serif;
  --froot-loops-body-font: 'Metropolis', sans-serif;
  --froot-loops-heading-font: 'FrootLoops', sans-serif;
  --rice-krispies-font: 'KelloggSans', sans-serif;
  --honey-smacks-font: 'Source Sans 3', sans-serif;
  --corn-flakes-font: 'KelloggSans', sans-serif;
  --apple-jacks-heading-font: 'LeOsler', sans-serif;
  --apple-jacks-body-font: 'Source Sans 3', sans-serif;
  --frosted-flakes-font: 'Mission Gothic', sans-serif;
  --frosted-mini-wheats-font: 'FlamaSC', sans-serif;
  --frosted-mini-wheats-accent-font: 'Kalam', sans-serif;
  --special-k-font: 'GT Walsheim', sans-serif;
  --special-k-accent-font: "GT Pressura", sans-serif;
  --cracklin-oat-bran-font: 'Cabin', sans-serif;
  --corn-pops-heading-font: 'KG The Last Time', sans-serif;
  --corn-pops-body-font: 'Source Sans 3', sans-serif;
  --crispix-heading-font: 'Rosario', sans-serif;
  --crispix-body-font: 'Source Sans 3', sans-serif;
  --kashi-font: 'Circular Pro', sans-serif;
  --smart-start-heading-font: 'ITC Avant Garde Pro Bk', sans-serif;
  --smart-start-body-font: 'itc-avant-garde-gothic-pro', sans-serif;
  --mueslix-font: 'futura-pt', sans-serif;
  --krave-heading-font: 'LunchBox', sans-serif;
  --krave-body-font: 'Source Sans 3', sans-serif;
  --bear-naked-heading-font: 'Mindset', sans-serif;
  --bear-naked-body-font: 'Filson Pro', sans-serif;
  --all-bran-font: 'Source Serif Pro', serif;

  /* body sizes */
  --body-font-size: 1rem;
  --body-font-size-l: 1.5rem;
  --body-font-size-m: 1.125rem;
  --body-font-size-xs: 16px;

  /* heading sizes */
  --heading-font-size-xl: 2.25rem; /* h1 */
  --heading-font-size-l: 2rem; /* h2 */
  --heading-font-size-m: 1.5rem; /* h3 */
  --heading-font-size-s: 1.125rem; /* h4 */
  --heading-font-size-xs: 1rem; /* h5 | h6 (subhead) */

  /* nav height */
  --nav-height: 82px;
  --nav-height-tablet: 95px;
  --nav-height-desktop: 104px;

  /* body line-height sizes */
  --body-line-height: 1.563rem;
  --body-l-line-height: 2rem;
  --body-m-line-height: 1.375rem;
  --body-xs-line-height: 1.188rem;

  /* heading line-height sizes */
  --heading-xl-line-height: 2.625rem;
  --heading-l-line-height: 2.563rem;
  --heading-m-line-height: 2.125rem;
  --heading-s-line-height: 1.5rem;
  --heading-xs-line-height: 1.563rem; /* h5 | h6 (subhead) */

}

@media (width &gt;= 1024px) {
  :root {
    /* body */
    --body-font-size-l: 2rem;
    --body-font-size-m: 1.5rem;

    /* body line-height */
    --body-l-line-height: 2.688rem;
    --body-m-line-height: 1.938rem;

    /* heading */
    --heading-font-size-xl: 3.625rem;
    --heading-font-size-l: 3rem;
    --heading-font-size-m: 2rem;
    --heading-font-size-s: 1.75rem;

    /* heading line-height */
    --heading-xl-line-height: 4.625rem;
    --heading-l-line-height: 3.25rem;
    --heading-s-line-height: 2rem;

    /* subhead */
    --heading-font-size-xs: 1rem;
  }
}

*, *::after, *::before {
  box-sizing: border-box;
}

body {
  font-size: var(--body-font-size);
  margin: 0;
  font-family: var(--body-font-family);
  line-height: var(--body-line-height);
  font-weight: 300;
  color: var(--text-color);
  background-color: var(--background-color);
  display: none;
}

body.appear {
  display: block;
}

body.modal-open {
  overflow: hidden;
}

body .dotter-div {
  z-index: 1001;
  position: relative;
}

header {
  height: var(--nav-height);
  z-index: 1000;
  position: relative;
}

@media (width &gt;= 1024px) {
  header {
    height: var(--nav-height-tablet);
  }
}

@media (width &gt;= 1260px) {
  header {
    height: var(--nav-height-desktop);
  }
}

h1, h2, h3,
h4, h5, h6 {
  font-family: var(--heading-font-family);
  margin: 1.5rem 0;
  letter-spacing: -0.0002rem;
  scroll-margin: calc(var(--nav-height) + 1em);
  color: var(--secondary-color); 
}

h1, h2, h3, h4 {
  font-weight: 600;
}

h1 { 
  font-size: var(--heading-font-size-xl);
  line-height: var(--heading-xl-line-height);
}

h2 { 
  font-size: var(--heading-font-size-l);
  line-height: var(--heading-l-line-height);
  color:  var(--primary-color);
}

h3 {
  font-size: var(--heading-font-size-m);
  line-height: var(--heading-m-line-height);
}

h4 {
  font-size: var(--heading-font-size-s);
  line-height: var(--heading-s-line-height);
}

h5 {
  font-size: var(--heading-font-size-xs);
  line-height: var(--heading-xs-line-height);
  font-weight: 800;
}

h6 {
  font-size: var(--heading-font-size-xs);
  color: var(--dark-medium-grey);
  text-transform: uppercase;
  font-weight: 700;
}

/* SCRIPTED heading styles (WK Kellog Script) */
h1 em, h2 em, h3 em,
h4 em, h5 em, h6 em {
  font-family: var(--script-font-family);
  font-style: normal;
  color: var(--primary-color);
}

h2 em {
  line-height: 3.813rem;
}

p, dl, ol, ul, pre, blockquote {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

code, pre {
  font-family: var(--fixed-font-family);
  font-size: var(--body-font-size);
}

code {
  padding: .125em;
}

pre {
  overflow: scroll;
}

main pre {
  background-color: var(--light-color);
  padding: 1em;
  border-radius: .25em;
  overflow-x: auto;
  white-space: pre;
}

/* links */
a:any-link {
  color: var(--link-color);
  text-decoration: underline;
  transition: 200ms;
  word-wrap: break-word;
}

a:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
}

/* buttons */
a.button:any-link, button, span.button {
  font-family: var(--body-font-family);
  align-items: center;
  gap: .25rem;
  box-sizing: border-box;
  text-decoration: underline;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms;
  text-transform: uppercase;
}

a.button:any-link, button.default {
  text-decoration: none;
}

a.button:any-link, button.default:hover {
  text-decoration: none;
}

a.button:hover, a.button:focus, button:hover, button:focus  {
  cursor: pointer;
}

.button-container a.button:any-link,
.button-container button,
.button-container span.button {
  display: inline-flex;
}

button .icon, a.button .icon {
  height: 1.0625rem;
  width: 0.9375rem;
}

button .icon img, a.button .icon img {
  transition: 200ms;
}

button:hover .icon img, button:focus .icon img,
a.button:hover .icon img, a.button:focus .icon img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(74%) saturate(4914%) hue-rotate(334deg) brightness(84%) contrast(95%);
}

button:disabled, button:disabled:hover {
  background-color: var(--light-color);
  cursor: unset;
}

a.button.primary, button.primary, span.primary.button {
  color: var(--background-color);
  background-color: var(--primary-color);
  border: 2px solid transparent;
  padding: .75rem 1.75rem;
  border-radius: 1.875rem;
  text-decoration: none;
}

button.primary .icon img,
a.button.primary .icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(335deg) brightness(102%) contrast(101%);
}

a.button.primary:hover, button.primary:hover,
a.button.primary:focus, button.primary:focus,
span.button.primary:hover,
span.button.primary:focus {
  background-color: var(--primary-hover);
  text-decoration: none;
}

a.button.secondary, button.secondary, span.secondary.button {
  background-color: unset;
  border: 2px solid currentcolor;
  color: var(--text-color);
  padding: .75rem 1.75rem;
  border-radius: 1.875rem;
  text-decoration: none;
}

a.button.secondary:hover, button.secondary:hover,
a.button.secondary:focus, button.secondary:focus,
span.button.secondary:hover,
span.button.secondary:focus {
  border-color: var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.icon {
  display: inline-block;
  height: 20px;
  width: 20px;
}

.icon img {
  height: 100%;
  width: 100%;
}

/* sections */
main .section {
  padding: 64px 16px;
}

@media (width &gt;= 1024px) {
  .section &gt; div {
    max-width: 1440px;
    margin: auto;
  }

  .section.full-width.no-padding {
    padding: 0;
  }

  .section.full-width &gt; div {
    max-width: none;
  }
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
}

main .section.light-color {
  color: #fff;
}

main .section.has-background-image {
  background-size: cover;
  background-position: center;
}

main .section.no-padding {
  padding: 0 1rem;
}

main .section.no-padding.full-width {
  padding: 0;
}

main .section.pre-footer-section {
  position: relative;
}

main .section.pre-footer-section &gt; .default-content-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}

main .section.pre-footer-section &gt; .default-content-wrapper p {
  margin: 0;
  height: 100%;
}

main .section.pre-footer-section &gt; .default-content-wrapper picture {
  display: block;
  height: 100%;
}

main .section.pre-footer-section &gt; .default-content-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

main .section.pre-footer-section &gt; .columns-wrapper {
  position: relative;
  z-index: 1;
}

main .section.primary-bg-section,
main .section.secondary-bg-section,
main .section.tertiary-bg-section,
main .section.accent-1-bg-section,
main .section.accent-2-bg-section,
main .section.accent-3-bg-section,
main .section.accent-4-bg-section {
  position: relative;
}

main .section.primary-bg-section::after,
main .section.secondary-bg-section::after,
main .section.tertiary-bg-section::after,
main .section.accent-1-bg-section::after,
main .section.accent-2-bg-section::after,
main .section.accent-3-bg-section::after,
main .section.accent-4-bg-section::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  max-width: 1440px;
  margin: auto;
}

main .section.primary-bg-section.full-width::after,
main .section.secondary-bg-section.full-width::after,
main .section.tertiary-bg-section.full-width::after,
main .section.accent-1-bg-section.full-width::after,
main .section.accent-2-bg-section.full-width::after,
main .section.accent-3-bg-section.full-width::after,
main .section.accent-4-bg-section.full-width::after {
  max-width: none;
}

main .section.primary-bg-section::after {
  background-color: var(--primary-color);
}

main .section.secondary-bg-section::after {
  background-color: var(--secondary-color);
}

main .section.tertiary-bg-section::after {
  background-color: var(--tertiary-color);
}

main .section.accent-1-bg-section::after {
  background-color: var(--accent-color-1);
}

main .section.accent-2-bg-section::after {
  background-color: var(--accent-color-2);
}

main .section.accent-3-bg-section::after {
  background-color: var(--accent-color-3);
}

main .section.accent-4-bg-section::after {
  background-color: var(--accent-color-4);
}

main .section.primary-bg-section &gt; div,
main .section.secondary-bg-section &gt; div,
main .section.tertiary-bg-section &gt; div,
main .section.accent-1-bg-section &gt; div,
main .section.accent-2-bg-section &gt; div,
main .section.accent-3-bg-section &gt; div,
main .section.accent-4-bg-section &gt; div {
  padding-left: 1.4375rem;
  padding-right: 1.4375rem;
  z-index: 1;
  position: relative;
}

main .section.primary-bg-section &gt; div:first-child,
main .section.secondary-bg-section &gt; div:first-child,
main .section.tertiary-bg-section &gt; div:first-child,
main .section.accent-1-bg-section &gt; div:first-child,
main .section.accent-2-bg-section &gt; div:first-child,
main .section.accent-3-bg-section &gt; div:first-child,
main .section.accent-4-bg-section &gt; div:first-child {
  padding-top: 3rem
}

main .section.primary-bg-section &gt; div:last-child,
main .section.secondary-bg-section &gt; div:last-child,
main .section.tertiary-bg-section &gt; div:last-child,
main .section.accent-1-bg-section &gt; div:last-child,
main .section.accent-2-bg-section &gt; div:last-child,
main .section.accent-3-bg-section &gt; div:last-child,
main .section.accent-4-bg-section &gt; div:last-child {
  padding-bottom: 3rem;
}

main .section.full-width.no-padding.primary-bg-section &gt; div,
main .section.full-width.no-padding.secondary-bg-section &gt; div,
main .section.full-width.no-padding.tertiary-bg-section &gt; div,
main .section.full-width.no-padding.accent-1-bg-section &gt; div,
main .section.full-width.no-padding.accent-2-bg-section &gt; div,
main .section.full-width.no-padding.accent-3-bg-section &gt; div,
main .section.full-width.no-padding.accent-4-bg-section &gt; div {
  padding: 0;
}

main .section.border-bottom &gt; div {
  border-bottom: .125rem var(--light-grey) solid;
  padding: 1.0625rem .75rem;
}

main .section.centered-content &gt; .default-content-wrapper,
main .section.centered-content .text-block {
  text-align: center;
}

main .section.centered-content .image-block &gt; div &gt; div img {
  margin: 0 auto;
}

main .section.logo-grid-section {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

main .section.logo-grid-section &gt; div {
  max-width: none;
}

main .section.logo-grid-section &gt; .cards-wrapper {
  max-width: 30rem;
}

@media (width &gt;= 1024px) {
  main .section.primary-bg-section &gt; div,
  main .section.secondary-bg-section &gt; div,
  main .section.tertiary-bg-section &gt; div,
  main .section.accent-1-bg-section &gt; div,
  main .section.accent-2-bg-section &gt; div,
  main .section.accent-3-bg-section &gt; div,
  main .section.accent-4-bg-section &gt; div {
    padding-right: 5.375rem;
    padding-left: 5.375rem;
  }

  main .section.primary-bg-section &gt; div:first-child,
  main .section.secondary-bg-section &gt; div:first-child,
  main .section.tertiary-bg-section &gt; div:first-child,
  main .section.accent-1-bg-section &gt; div:first-child,
  main .section.accent-2-bg-section &gt; div:first-child,
  main .section.accent-3-bg-section &gt; div:first-child,
  main .section.accent-4-bg-section &gt; div:first-child {
    padding-top: 3.875rem;
  }

  main .section.primary-bg-section &gt; div:last-child,
  main .section.secondary-bg-section &gt; div:last-child,
  main .section.tertiary-bg-section &gt; div:last-child,
  main .section.accent-1-bg-section &gt; div:last-child,
  main .section.accent-2-bg-section &gt; div:last-child,
  main .section.accent-3-bg-section &gt; div:last-child,
  main .section.accent-4-bg-section &gt; div:last-child {
    padding-bottom: 3.875rem;
  }

  main .section.pre-footer-section {
    padding: 5rem 1rem;
  }

  main .section.border-bottom &gt; div {
    max-width: 1418px;
  }

  main .section.logo-grid-section {
    max-width: calc(1440px + 2rem);
    margin: 0 auto;
    flex-direction: row;
  }

  main .section.logo-grid-section .cards-wrapper {
    padding: 0 5.3125rem;
    max-width: none;
  }

  main .section.logo-grid-section .columns-wrapper {
    flex: 0 0 33.3333%;
  }
}
</pre></body></html>