@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Roboto:300,400,500");
.tippy-tooltip[data-placement^=top] > .tippy-backdrop {
  transform-origin: 0 25%;
  border-radius: 40% 40% 0 0;
}

.tippy-tooltip[data-placement^=top] > .tippy-backdrop[data-state=visible] {
  transform: scale(1) translate(-50%, -55%);
}

.tippy-tooltip[data-placement^=top] > .tippy-backdrop[data-state=hidden] {
  transform: scale(0.2) translate(-50%, -45%);
}

.tippy-tooltip[data-placement^=bottom] > .tippy-backdrop {
  transform-origin: 0 -50%;
  border-radius: 0 0 30% 30%;
}

.tippy-tooltip[data-placement^=bottom] > .tippy-backdrop[data-state=visible] {
  transform: scale(1) translate(-50%, -45%);
}

.tippy-tooltip[data-placement^=bottom] > .tippy-backdrop[data-state=hidden] {
  transform: scale(0.2) translate(-50%);
}

.tippy-tooltip[data-placement^=left] > .tippy-backdrop {
  transform-origin: 50% 0;
  border-radius: 50% 0 0 50%;
}

.tippy-tooltip[data-placement^=left] > .tippy-backdrop[data-state=visible] {
  transform: scale(1) translate(-50%, -50%);
}

.tippy-tooltip[data-placement^=left] > .tippy-backdrop[data-state=hidden] {
  transform: scale(0.2) translate(-75%, -50%);
}

.tippy-tooltip[data-placement^=right] > .tippy-backdrop {
  transform-origin: -50% 0;
  border-radius: 0 50% 50% 0;
}

.tippy-tooltip[data-placement^=right] > .tippy-backdrop[data-state=visible] {
  transform: scale(1) translate(-50%, -50%);
}

.tippy-tooltip[data-placement^=right] > .tippy-backdrop[data-state=hidden] {
  transform: scale(0.2) translate(-25%, -50%);
}

.tippy-tooltip[data-animatefill] {
  background-color: transparent !important;
}

.tippy-backdrop {
  position: absolute;
  background-color: #333;
  border-radius: 50%;
  width: calc(110% + 32px);
  left: 50%;
  top: 50%;
  z-index: -1;
  transition: all cubic-bezier(0.46, 0.1, 0.52, 0.98);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tippy-backdrop[data-state=hidden] {
  opacity: 0;
}

.tippy-backdrop:after {
  content: "";
  float: left;
  padding-top: 100%;
}

.tippy-backdrop + .tippy-content {
  transition-property: opacity;
  will-change: opacity;
}

.tippy-backdrop + .tippy-content[data-state=hidden] {
  opacity: 0;
}

.tippy-tooltip[data-placement^=top] > .tippy-svg-arrow {
  transform-origin: 50% 0;
  margin: 0 3px;
  bottom: -6.5px;
}

.tippy-tooltip[data-placement^=top] > .tippy-svg-arrow svg {
  transform: rotate(180deg);
}

.tippy-tooltip[data-placement^=bottom] > .tippy-svg-arrow {
  transform-origin: 50% 7px;
  margin: 0 3px;
  top: -7px;
}

.tippy-tooltip[data-placement^=left] > .tippy-svg-arrow {
  transform-origin: 33.33333333% 50%;
  margin: 3px 0;
  right: -12px;
}

.tippy-tooltip[data-placement^=left] > .tippy-svg-arrow svg {
  transform: rotate(90deg);
}

.tippy-tooltip[data-placement^=right] > .tippy-svg-arrow {
  transform-origin: 66.66666666% 50%;
  margin: 3px 0;
  left: -12px;
}

.tippy-tooltip[data-placement^=right] > .tippy-svg-arrow svg {
  transform: rotate(-90deg);
}

.tippy-tooltip[data-interactive] > .tippy-svg-arrow path {
  pointer-events: auto;
}

.tippy-svg-arrow {
  position: absolute;
  width: 18px;
  height: 7px;
  fill: #333;
  pointer-events: none;
}

.tippy-svg-arrow svg {
  position: absolute;
  left: 0;
}

.tippy-tooltip[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

.tippy-iOS {
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent;
}

.tippy-popper {
  pointer-events: none;
  max-width: calc(100vw - 10px);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-property: transform;
}

.tippy-tooltip {
  position: relative;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  background-color: #333;
  transition-property: visibility, opacity, transform;
  outline: 0;
}

.tippy-tooltip[data-placement^=top] > .tippy-arrow {
  border-width: 8px 8px 0;
  border-top-color: #333;
  margin: 0 3px;
  transform-origin: 50% 0;
  bottom: -7px;
}

.tippy-tooltip[data-placement^=bottom] > .tippy-arrow {
  border-width: 0 8px 8px;
  border-bottom-color: #333;
  margin: 0 3px;
  transform-origin: 50% 7px;
  top: -7px;
}

.tippy-tooltip[data-placement^=left] > .tippy-arrow {
  border-width: 8px 0 8px 8px;
  border-left-color: #333;
  margin: 3px 0;
  transform-origin: 0 50%;
  right: -7px;
}

.tippy-tooltip[data-placement^=right] > .tippy-arrow {
  border-width: 8px 8px 8px 0;
  border-right-color: #333;
  margin: 3px 0;
  transform-origin: 7px 50%;
  left: -7px;
}

.tippy-tooltip[data-interactive][data-state=visible] {
  pointer-events: auto;
}

.tippy-tooltip[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  padding: 5px 9px;
}

/**
 * Common animation durations.
 * pf2 > skin > _variables > _animation.scss
 *
 * @nuclide Duration
 * @section Animation > Duration
 * @description
 *  .fullscreen The speed fullscreen elements should transition on or off a page.
 *  .in         The speed at which elements should transition onto a page.
 *  .out        The speed at which elements should transition off of a page.
 *  .btw        The speed to use for an element staying on the page, but transitions a property in and out, for example on hover.
 */
/**
 * The different timing curves that can be used in a transition. 
 * pf2 > skin > _variables > _animation.scss
 *
 * @nuclide Motion Curves
 * @section Animation > Curves
 * @description
 *  .btw         The curve to use for an element staying on the page, but transitions a property in and out, for example on hover.
 *  .in          The curve at which elements should transition onto a page.
 *  .out         The curve at which elements should transition off of a page.
 *  .will-return The curve to use for an element that will return to the page, such as a hamburger menu.
 */
/**
 * White
 * @color
 * @section Gray Palette
 */
/**
 * Gray 100
 * @color
 * @section Gray Palette
 */
/**
 * Gray 200
 * @color
 * @section Gray Palette
 */
/**
 * Gray 300
 * @color
 * @section Gray Palette
 */
/**
 *  Gray 400
 * @color
 * @section Gray Palette
 */
/**
 * Gray 500
 * @color
 * @section Gray Palette
 */
/**
 * Gray 600
 * @color
 * @section Gray Palette
 */
/**
 * Gray 700
 * @color
 * @section Gray Palette
 */
/**
 * Gray 800
 * @color
 * @section Gray Palette
 */
/**
 * Gray 900
 * @color
 * @section Gray Palette
 */
/**
 * Gray 1000 - Black
 * @color
 * @section Gray Palette
 */
/**
 *  > Primary Color
 * @color
 * @section Theme Palette
 */
/**
 *  > Secondary Color
 * @color
 * @section Theme Palette
 */
/**
 * Accent Color
 * @color
 * @section Theme Palette
 */
/**
 * Warning Color
 * @color
 * @section Theme Palette
 */
/**
 * Error Color
 * @color
 * @section Theme Palette
 */
/**
 * Success Color
 * @color
 * @section Theme Palette
 */
/**
 * Info Color
 * @color
 * @section Theme Palette
 */
/**
 * Muted Color
 * @color
 * @section Theme Palette
 */
/**
 * Disabled Color
 * @color
 * @section Theme Palette
 */
/**
 * Google Brand Color
 * @color
 * @section Social Identity Palette
 */
/**
 * Facebook Brand Color
 * @color
 * @section Social Identity Palette
 */
/**
 * Twitter Brand Color
 * @color
 * @section Social Identity Palette
 */
/**
 * Orcid Brand Color
 * @color
 * @section Social Identity Palette
 */
/**
 * The degree of granularity flex-children can have in terms of ratio range. 
 * pf2 > skin > _variables > _layout.scss
 *
 * @nuclide Max Flex Ratio
 * @section Layout > Flexbox
 */
/**
 * Responsive breakpoint names and values used in media queries.  
 * pf2 > skin > _variables > _layout.scss
 *
 * when editing these defaults please also update createResponsive.js
 *
 * @nuclide breakpoints
 * @section Layout > Responsive
 * @description
 *  xxs - Mobile is the base resolution.
 *  xs  - Phablet starting resolution.
 *  sm  - Tablet starting resolution.
 *  md  - Laptop starting resolution.
 *  lg  - Desktop starting resolution.
 *  xl  - Retina starting resolution.
 */
/**
 * The scale of spacing units the spacing sytem utilizes. 
 * pf2 > skin > _variables > _spacing.scss
 *
 * @nuclide Space Scale
 * @section Spacing
 */
/**
 * The base properties (and their shorthands) of the properties used to control space in the box-model. 
 * pf2 > skin > _variables > _spacing.scss
 *
 * @nuclide Space Attribute Shorthands
 * @section Spacing
 */
/**
 * The directions each spacing property can sub-specify. 
 * pf2 > skin > _variables > _spacing.scss
 *
 * @nuclide Space Attribute Directions
 * @section Spacing
 */
/**
 * > The default typography style system scale for font weights.
 * pf2 > skin > _variables > _typography.scss
 *
 * @nuclide Font Weight Scale
 * @section Typography > Fonts
 */
/**
 * > The default typography style system scale for font sizes.
 * pf2 > skin > _variables > _typography.scss
 *
 * @nuclide Font Size Scale
 * @section Typography > Fonts
 */
/**
 * > The default typography style system scale for line height.
 * pf2 > skin > _variables > _typography.scss
 *
 * @nuclide Font Line Height Scale
 * @section Typography > Fonts
 */
/**
 *  > The default primary font family.
 * pf2 > skin > _variables > _typography.scss
 *
 * @nuclide Primary Font Family
 * @section Typography > Fonts
 */
/**
 *  > The default secondary font family.
 * pf2 > skin > _variables > _typography.scss
 *
 * @nuclide Secondary Font Family
 * @section Typography > Fonts
 */
/**
 * > The masthead component's font family.
 * pf2 > skin > _variables > _typography.scss
 *
 * @nuclide Masthead Component Font Family
 * @section Typography > Fonts
 */
/**
 * > The footer component font family.
 * pf2 > skin > _variables > _typography.scss
 *
 * @nuclide Footer Component Font Family
 * @section Typography > Fonts
 */
/**
 * @nuclide  > H1 Responsive Font Sizes.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H1 Responsive Line Heights.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H1 Font Family.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H1 Font Weight.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H1 Margins.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H2 Responsive Font Sizes.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H2 Responsive Line Heights.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H2 Font Family.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H2 Font Weight.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H2 Margins.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H3 Responsive Font Sizes.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H3 Responsive Line Heights.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H3 Font Family.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H3 Font Weight.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H3 Margins.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H4 Responsive Font Sizes.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H4 Responsive Line Heights.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H4 Font Family.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H4 Font Weight.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H4 Margins.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H5 Responsive Font Sizes.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H5 Responsive Line Heights.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H5 Font Family.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H5 Font Weight.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H5 Margins.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H6 Responsive Font Sizes.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H6 Responsive Line Heights.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H6 Font Family.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H6 Font Weight.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > H6 Margins.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > Regular Text Responsive Font Sizes.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > Regular Text Responsive Line Heights.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > Regular Text Font Family.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > Regular Text Font Weight.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/**
 * @nuclide  > Text Margins.  > For legacy support only, this is not to be used for any new code.  Please look to new atom typography classes.
 * @section Typography > Deprecated
 * @deprecated
 */
/*
  If you are still seeing the map structure below to lookup font icons ($pf2-iconsMap),
  You'll need to go through the steps below to update the lookup process:

  1. Use IcoMoon app to import the SVG.
  2. Make the edits on IcoMoon
  3. Select all icons in IcoMoon and export it.

  4. Trim out all the metadata until only the <glyph> tags remain.
  5. Open the output SVG with a text editor (I use Sublime), and do a regex replace:
		  Find: ^<glyph unicode="&#x(\w+);" glyph-name="([\w]+)".+
		  Replace : \2 : "\\\1",
  6. Do a regex replace to convert the snake_cased lookup key back to camelCase:
  		  Find: ([\w\d]+)_([\w\d])([\w\d]*)
  		  Replace: \1\U\2\E\3
  7. Repeat step 6 until no matches are found

  8. Overwrite the mapping below with the end results.
  9. Regenerate the woff2 and woff font files. I use FontForge.


 */
@font-face {
  font-family: "pf2-icons";
  src: url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/pf2-icons.woff2") format("woff2"), url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/pf2-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Material Icons";
  src: url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/MaterialIcons-Regular.woff2") format("woff2"), url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/MaterialIcons-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/**
 * Responsive breakpoint modifiers.
 *
 */
/**
 * Temp fix for icon.scss
 */
/**
 * Typography variables.
 *
 */
/**
 * Icon Font
 *
 */
/**
 * Icon Maps - Mapping PF Icons to Vendor's Font Icons
 * Possibly add key:value "label: offscreen or onscreen" to each icon???
 *
 */
/**
 * These variables are needed by the annotations module.  Not sure where these definitions
 * should live??
 */
/**
 * Content colors
 *
 */
/* Toggle Buttons */
/**
 * Load Fonts
 *
 */
/*
   utility function to return a default value if a variable is not set.
*/
@font-face {
  font-family: FontAwesome;
  src: url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/fontawesome-webfont.eot?v=4.4.0");
  src: url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/fontawesome-webfont.eot?#iefix&v=4.4.0") format("embedded-opentype"), url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/fontawesome-webfont.woff2?v=4.4.0") format("woff2"), url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/fontawesome-webfont.woff?v=4.4.0") format("woff"), url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/fontawesome-webfont.ttf?v=4.4.0") format("truetype"), url("/skin/f0adceba03b04254231c8650666c462a6628888c-20D8E2D13CFB7EB3A6D3FD9E5D2AA011/fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.ico-home:before {
  content: "\f015";
}

.ico-search:before {
  content: "\f002";
}

.ico-search-options:before {
  content: "\f141";
}

.ico-menu:before {
  content: "\f0c9";
}

.ico-youarehere:before {
  content: "\f054";
}

.ico-locale:before {
  content: "\f0ac";
}

.ico-user:before {
  content: "\f007";
}

.ico-sign-in:before {
  content: "\f090";
}

.ico-sign-out:before {
  content: "\f08b";
}

.ico-options:before {
  content: "\f013";
}

.ico-cog:before {
  content: "\f013";
}

.ico-print:before {
  content: "\f02f";
}

.ico-save:before {
  content: "\f097";
}

.ico-saved:before {
  content: "\f02e";
}

.ico-email:before {
  content: "\f0e0";
}

.ico-email-alert:before {
  content: "\f0f3";
}

.ico-email-alert-on:before {
  content: "\f0f3";
}

.ico-email-alert-off:before {
  content: "\f1f7";
}

.ico-edit:before {
  content: "\f040";
}

.ico-annot:before {
  content: "\f08d";
}

.ico-highlights-hide:before {
  content: "\f14b";
}

.ico-highlights-show:before {
  content: "\f044";
}

.ico-comment:before {
  content: "\f075";
}

.ico-cite:before {
  content: "\f10d";
}

.ico-share:before {
  content: "\f1e0";
}

.ico-font:before {
  content: "\f031";
}

.ico-prev:before {
  content: "\";
}

.ico-next:after {
  content: "\f054";
}

.ico-up:before {
  content: "\f0d8";
}

.ico-down:before {
  content: "\f0d7";
}

.ico-add:before {
  content: "\f0fe";
}

.ico-external-link:after {
  content: "\f08e";
}

.ico-close:before {
  content: "\f00d";
}

.ico-remove:before {
  content: "\f00d";
}

.ico-delete:before {
  content: "\f00d";
}

.ico-type:before {
  content: "\f02d";
}

.ico-rss:before {
  content: "\f09e";
}

.ico-rss-sign:before {
  content: "\f143";
}

.ico-help:before {
  content: "\f059";
}

.ico-facebook2:before {
  content: "\f09a";
}

.ico-facebook:before {
  content: "\f082";
}

.ico-twitter:before {
  content: "\f081";
}

.ico-linkedin:before {
  content: "\f08c";
}

.ico-mendeley:before {
  content: "\f14d";
}

.ico-filter:before {
  content: "\f0b0";
}

.ico-toc:before {
  content: "\f0ca";
}

.ico-view:before {
  content: "\f06e";
}

.ico-back:before {
  content: "\f0e2";
}

.ico-archive:before {
  content: "\f187";
}

.ico-file:before {
  content: "\f016";
}

.ico-file-archive:before {
  content: "\f1c6";
}

.ico-xls:before {
  content: "\f1c3";
}

.ico-xlsx:before {
  content: "\f1c3";
}

.ico-csv:before {
  content: "\f1c9";
}

.ico-xml:before {
  content: "\f1c9";
}

.ico-pdf:before {
  content: "\f1c1";
}

.ico-word:before {
  content: "\f1c2";
}

.ico-powerpoint:before {
  content: "\f1c4";
}

.ico-refresh:before {
  content: "\f021";
}

.ico-list:before {
  content: "\f03a";
}

.ico-tools:before {
  content: "\f00a";
}

.ico-image-file:before {
  content: "\f1c5";
}

.ico-arrow-double-left:before {
  content: "\f100";
}

.ico-arrow-double-right:before {
  content: "\f101";
}

.ico-arrow-double-up:before {
  content: "\f102";
}

.ico-arrow-double-down:before {
  content: "\f103";
}

.ico-wrench:after {
  content: "\f0ad";
}

[class^=ico-],
[class*=ico-] {
  cursor: pointer;
}
[class^=ico-]:before, [class^=ico-]:after,
[class*=ico-]:before,
[class*=ico-]:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
}
html:hover [class^=ico-],
html:hover [class*=ico-] {
  -ms-zoom: 1;
}
[class^=ico-] span,
[class*=ico-] span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
[class^=ico-] span.onscreen,
[class*=ico-] span.onscreen {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
}

h3[class*=ico-]:hover {
  color: #000000;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: >>>>> BASICS */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

::-moz-selection {
  text-shadow: none;
  background-color: #add8e6;
  color: black;
}

::selection {
  text-shadow: none;
  background-color: #add8e6;
  color: black;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
}

pre, code, kbd, samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

small {
  font-size: 85%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: >>>>> COMMON BLOCK TAGS */
p {
  margin: 0 0 1em;
}

nav ul, nav ol,
.header ul, .footer ul {
  list-style: none;
  list-style-image: none;
}

blockquote {
  margin: 1em 2em;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

img {
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

/* ----------------- Helper Classes --->>> */
.ir {
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

label.life-event-type-label {
  cursor: default;
}

label.life-event-place-label {
  cursor: default;
}

.select-date-field label {
  cursor: default;
}

.select-from-date label {
  cursor: default;
}

.select-to-date label {
  cursor: default;
}

.select-exact-date label {
  cursor: default;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.w-auto {
  width: auto;
}
.w-1 {
  width: 100%;
}
.w-75 {
  width: 75%;
}
.w-50 {
  width: 50%;
}
.w-33 {
  width: 33.3333333333%;
}
.w-25 {
  width: 25%;
}
.w-12 {
  width: 12.5%;
}

.wMin-auto {
  min-width: auto;
}
.wMin-1 {
  min-width: 100%;
}
.wMin-75 {
  min-width: 75%;
}
.wMin-50 {
  min-width: 50%;
}
.wMin-33 {
  min-width: 33.3333333333%;
}
.wMin-25 {
  min-width: 25%;
}
.wMin-12 {
  min-width: 12.5%;
}

.wMax-auto {
  max-width: auto;
}
.wMax-1 {
  max-width: 100%;
}
.wMax-75 {
  max-width: 75%;
}
.wMax-50 {
  max-width: 50%;
}
.wMax-33 {
  max-width: 33.3333333333%;
}
.wMax-25 {
  max-width: 25%;
}
.wMax-12 {
  max-width: 12.5%;
}

.h-auto {
  height: auto;
}
.h-1 {
  height: 100%;
}
.h-75 {
  height: 75%;
}
.h-50 {
  height: 50%;
}
.h-33 {
  height: 33.3333333333%;
}
.h-25 {
  height: 25%;
}
.h-12 {
  height: 12.5%;
}

.hMin-auto {
  min-height: auto;
}
.hMin-1 {
  min-height: 100%;
}
.hMin-75 {
  min-height: 75%;
}
.hMin-50 {
  min-height: 50%;
}
.hMin-33 {
  min-height: 33.3333333333%;
}
.hMin-25 {
  min-height: 25%;
}
.hMin-12 {
  min-height: 12.5%;
}

.hMax-auto {
  max-height: auto;
}
.hMax-1 {
  max-height: 100%;
}
.hMax-75 {
  max-height: 75%;
}
.hMax-50 {
  max-height: 50%;
}
.hMax-33 {
  max-height: 33.3333333333%;
}
.hMax-25 {
  max-height: 25%;
}
.hMax-12 {
  max-height: 12.5%;
}

.m-0.m-0 {
  margin: 0px;
}
.m-auto.m-auto {
  margin: auto;
}
.mt-0.mt-0 {
  margin-top: 0px;
}
.mt-auto.mt-auto {
  margin-top: auto;
}
.mr-0.mr-0 {
  margin-right: 0px;
}
.mr-auto.mr-auto {
  margin-right: auto;
}
.mb-0.mb-0 {
  margin-bottom: 0px;
}
.mb-auto.mb-auto {
  margin-bottom: auto;
}
.ml-0.ml-0 {
  margin-left: 0px;
}
.ml-auto.ml-auto {
  margin-left: auto;
}
.my-0.my-0, .component-table-of-contents ul.tree li.type-heading > ul > li.type-heading {
  margin-top: 0px;
  margin-bottom: 0px;
}
.mx-0.mx-0 {
  margin-right: 0px;
  margin-left: 0px;
}
.my-auto.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.m-1.m-1 {
  margin: 4px;
}
.m-auto.m-auto {
  margin: auto;
}
.mt-1.mt-1 {
  margin-top: 4px;
}
.mt-auto.mt-auto {
  margin-top: auto;
}
.mr-1.mr-1 {
  margin-right: 4px;
}
.mr-auto.mr-auto {
  margin-right: auto;
}
.mb-1.mb-1 {
  margin-bottom: 4px;
}
.mb-auto.mb-auto {
  margin-bottom: auto;
}
.ml-1.ml-1 {
  margin-left: 4px;
}
.ml-auto.ml-auto {
  margin-left: auto;
}
.my-1.my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}
.mx-1.mx-1 {
  margin-right: 4px;
  margin-left: 4px;
}
.my-auto.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.m-2.m-2 {
  margin: 8px;
}
.m-auto.m-auto {
  margin: auto;
}
.mt-2.mt-2 {
  margin-top: 8px;
}
.mt-auto.mt-auto {
  margin-top: auto;
}
.mr-2.mr-2 {
  margin-right: 8px;
}
.mr-auto.mr-auto {
  margin-right: auto;
}
.mb-2.mb-2 {
  margin-bottom: 8px;
}
.mb-auto.mb-auto {
  margin-bottom: auto;
}
.ml-2.ml-2 {
  margin-left: 8px;
}
.ml-auto.ml-auto {
  margin-left: auto;
}
.my-2.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.mx-2.mx-2 {
  margin-right: 8px;
  margin-left: 8px;
}
.my-auto.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.m-3.m-3 {
  margin: 16px;
}
.m-auto.m-auto {
  margin: auto;
}
.mt-3.mt-3 {
  margin-top: 16px;
}
.mt-auto.mt-auto {
  margin-top: auto;
}
.mr-3.mr-3 {
  margin-right: 16px;
}
.mr-auto.mr-auto {
  margin-right: auto;
}
.mb-3.mb-3 {
  margin-bottom: 16px;
}
.mb-auto.mb-auto {
  margin-bottom: auto;
}
.ml-3.ml-3 {
  margin-left: 16px;
}
.ml-auto.ml-auto {
  margin-left: auto;
}
.my-3.my-3, .page-form #pageBody {
  margin-top: 16px;
  margin-bottom: 16px;
}
.mx-3.mx-3 {
  margin-right: 16px;
  margin-left: 16px;
}
.my-auto.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.m-4.m-4 {
  margin: 32px;
}
.m-auto.m-auto {
  margin: auto;
}
.mt-4.mt-4 {
  margin-top: 32px;
}
.mt-auto.mt-auto {
  margin-top: auto;
}
.mr-4.mr-4 {
  margin-right: 32px;
}
.mr-auto.mr-auto {
  margin-right: auto;
}
.mb-4.mb-4 {
  margin-bottom: 32px;
}
.mb-auto.mb-auto {
  margin-bottom: auto;
}
.ml-4.ml-4 {
  margin-left: 32px;
}
.ml-auto.ml-auto {
  margin-left: auto;
}
.my-4.my-4 {
  margin-top: 32px;
  margin-bottom: 32px;
}
.mx-4.mx-4 {
  margin-right: 32px;
  margin-left: 32px;
}
.my-auto.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.m-5.m-5 {
  margin: 64px;
}
.m-auto.m-auto {
  margin: auto;
}
.mt-5.mt-5 {
  margin-top: 64px;
}
.mt-auto.mt-auto {
  margin-top: auto;
}
.mr-5.mr-5 {
  margin-right: 64px;
}
.mr-auto.mr-auto {
  margin-right: auto;
}
.mb-5.mb-5 {
  margin-bottom: 64px;
}
.mb-auto.mb-auto {
  margin-bottom: auto;
}
.ml-5.ml-5 {
  margin-left: 64px;
}
.ml-auto.ml-auto {
  margin-left: auto;
}
.my-5.my-5 {
  margin-top: 64px;
  margin-bottom: 64px;
}
.mx-5.mx-5 {
  margin-right: 64px;
  margin-left: 64px;
}
.my-auto.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.m-6.m-6 {
  margin: 128px;
}
.m-auto.m-auto {
  margin: auto;
}
.mt-6.mt-6 {
  margin-top: 128px;
}
.mt-auto.mt-auto {
  margin-top: auto;
}
.mr-6.mr-6 {
  margin-right: 128px;
}
.mr-auto.mr-auto {
  margin-right: auto;
}
.mb-6.mb-6 {
  margin-bottom: 128px;
}
.mb-auto.mb-auto {
  margin-bottom: auto;
}
.ml-6.ml-6 {
  margin-left: 128px;
}
.ml-auto.ml-auto {
  margin-left: auto;
}
.my-6.my-6 {
  margin-top: 128px;
  margin-bottom: 128px;
}
.mx-6.mx-6 {
  margin-right: 128px;
  margin-left: 128px;
}
.my-auto.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.m-7.m-7 {
  margin: 256px;
}
.m-auto.m-auto {
  margin: auto;
}
.mt-7.mt-7 {
  margin-top: 256px;
}
.mt-auto.mt-auto {
  margin-top: auto;
}
.mr-7.mr-7 {
  margin-right: 256px;
}
.mr-auto.mr-auto {
  margin-right: auto;
}
.mb-7.mb-7 {
  margin-bottom: 256px;
}
.mb-auto.mb-auto {
  margin-bottom: auto;
}
.ml-7.ml-7 {
  margin-left: 256px;
}
.ml-auto.ml-auto {
  margin-left: auto;
}
.my-7.my-7 {
  margin-top: 256px;
  margin-bottom: 256px;
}
.mx-7.mx-7 {
  margin-right: 256px;
  margin-left: 256px;
}
.my-auto.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.p-0.p-0 {
  padding: 0px;
}
.p-auto.p-auto {
  padding: auto;
}
.pt-0.pt-0 {
  padding-top: 0px;
}
.pt-auto.pt-auto {
  padding-top: auto;
}
.pr-0.pr-0 {
  padding-right: 0px;
}
.pr-auto.pr-auto {
  padding-right: auto;
}
.pb-0.pb-0 {
  padding-bottom: 0px;
}
.pb-auto.pb-auto {
  padding-bottom: auto;
}
.pl-0.pl-0 {
  padding-left: 0px;
}
.pl-auto.pl-auto {
  padding-left: auto;
}
.py-0.py-0, .component-table-of-contents ul.tree li.type-heading > ul > li.type-heading {
  padding-top: 0px;
  padding-bottom: 0px;
}
.px-0.px-0 {
  padding-right: 0px;
  padding-left: 0px;
}
.py-auto.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.px-auto.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.p-1.p-1 {
  padding: 4px;
}
.p-auto.p-auto {
  padding: auto;
}
.pt-1.pt-1 {
  padding-top: 4px;
}
.pt-auto.pt-auto {
  padding-top: auto;
}
.pr-1.pr-1 {
  padding-right: 4px;
}
.pr-auto.pr-auto {
  padding-right: auto;
}
.pb-1.pb-1 {
  padding-bottom: 4px;
}
.pb-auto.pb-auto {
  padding-bottom: auto;
}
.pl-1.pl-1 {
  padding-left: 4px;
}
.pl-auto.pl-auto {
  padding-left: auto;
}
.py-1.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}
.px-1.px-1 {
  padding-right: 4px;
  padding-left: 4px;
}
.py-auto.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.px-auto.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.p-2.p-2 {
  padding: 8px;
}
.p-auto.p-auto {
  padding: auto;
}
.pt-2.pt-2 {
  padding-top: 8px;
}
.pt-auto.pt-auto {
  padding-top: auto;
}
.pr-2.pr-2 {
  padding-right: 8px;
}
.pr-auto.pr-auto {
  padding-right: auto;
}
.pb-2.pb-2 {
  padding-bottom: 8px;
}
.pb-auto.pb-auto {
  padding-bottom: auto;
}
.pl-2.pl-2 {
  padding-left: 8px;
}
.pl-auto.pl-auto {
  padding-left: auto;
}
.py-2.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.px-2.px-2 {
  padding-right: 8px;
  padding-left: 8px;
}
.py-auto.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.px-auto.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.p-3.p-3 {
  padding: 16px;
}
.p-auto.p-auto {
  padding: auto;
}
.pt-3.pt-3 {
  padding-top: 16px;
}
.pt-auto.pt-auto {
  padding-top: auto;
}
.pr-3.pr-3 {
  padding-right: 16px;
}
.pr-auto.pr-auto {
  padding-right: auto;
}
.pb-3.pb-3 {
  padding-bottom: 16px;
}
.pb-auto.pb-auto {
  padding-bottom: auto;
}
.pl-3.pl-3 {
  padding-left: 16px;
}
.pl-auto.pl-auto {
  padding-left: auto;
}
.py-3.py-3 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.px-3.px-3 {
  padding-right: 16px;
  padding-left: 16px;
}
.py-auto.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.px-auto.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.p-4.p-4 {
  padding: 32px;
}
.p-auto.p-auto {
  padding: auto;
}
.pt-4.pt-4 {
  padding-top: 32px;
}
.pt-auto.pt-auto {
  padding-top: auto;
}
.pr-4.pr-4 {
  padding-right: 32px;
}
.pr-auto.pr-auto {
  padding-right: auto;
}
.pb-4.pb-4 {
  padding-bottom: 32px;
}
.pb-auto.pb-auto {
  padding-bottom: auto;
}
.pl-4.pl-4 {
  padding-left: 32px;
}
.pl-auto.pl-auto {
  padding-left: auto;
}
.py-4.py-4 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.px-4.px-4 {
  padding-right: 32px;
  padding-left: 32px;
}
.py-auto.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.px-auto.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.p-5.p-5 {
  padding: 64px;
}
.p-auto.p-auto {
  padding: auto;
}
.pt-5.pt-5 {
  padding-top: 64px;
}
.pt-auto.pt-auto {
  padding-top: auto;
}
.pr-5.pr-5 {
  padding-right: 64px;
}
.pr-auto.pr-auto {
  padding-right: auto;
}
.pb-5.pb-5 {
  padding-bottom: 64px;
}
.pb-auto.pb-auto {
  padding-bottom: auto;
}
.pl-5.pl-5 {
  padding-left: 64px;
}
.pl-auto.pl-auto {
  padding-left: auto;
}
.py-5.py-5 {
  padding-top: 64px;
  padding-bottom: 64px;
}
.px-5.px-5 {
  padding-right: 64px;
  padding-left: 64px;
}
.py-auto.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.px-auto.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.p-6.p-6 {
  padding: 128px;
}
.p-auto.p-auto {
  padding: auto;
}
.pt-6.pt-6 {
  padding-top: 128px;
}
.pt-auto.pt-auto {
  padding-top: auto;
}
.pr-6.pr-6 {
  padding-right: 128px;
}
.pr-auto.pr-auto {
  padding-right: auto;
}
.pb-6.pb-6 {
  padding-bottom: 128px;
}
.pb-auto.pb-auto {
  padding-bottom: auto;
}
.pl-6.pl-6 {
  padding-left: 128px;
}
.pl-auto.pl-auto {
  padding-left: auto;
}
.py-6.py-6 {
  padding-top: 128px;
  padding-bottom: 128px;
}
.px-6.px-6 {
  padding-right: 128px;
  padding-left: 128px;
}
.py-auto.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.px-auto.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.p-7.p-7 {
  padding: 256px;
}
.p-auto.p-auto {
  padding: auto;
}
.pt-7.pt-7 {
  padding-top: 256px;
}
.pt-auto.pt-auto {
  padding-top: auto;
}
.pr-7.pr-7 {
  padding-right: 256px;
}
.pr-auto.pr-auto {
  padding-right: auto;
}
.pb-7.pb-7 {
  padding-bottom: 256px;
}
.pb-auto.pb-auto {
  padding-bottom: auto;
}
.pl-7.pl-7 {
  padding-left: 256px;
}
.pl-auto.pl-auto {
  padding-left: auto;
}
.py-7.py-7 {
  padding-top: 256px;
  padding-bottom: 256px;
}
.px-7.px-7 {
  padding-right: 256px;
  padding-left: 256px;
}
.py-auto.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.px-auto.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.border-none {
  border-style: none;
}
.border-dotted {
  border-style: dotted;
}
.border-dashed {
  border-style: dashed;
}
.border-solid {
  border-style: solid;
}
.border-double {
  border-style: double;
}
.border-groove {
  border-style: groove;
}
.border-ridge {
  border-style: ridge;
}
.border-inset {
  border-style: inset;
}
.border-outset {
  border-style: outset;
}
.border {
  border: 1px solid rgba(0, 0, 0, 0.075);
}
.border-light {
  border: 1px solid rgba(0, 0, 0, 0.045);
}
.border-dark {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.075);
}
.border-top-light {
  border-top: 1px solid rgba(0, 0, 0, 0.045);
}
.border-top-dark {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.border-top-none {
  border-top-style: none;
}
.border-top-dotted {
  border-top-style: dotted;
}
.border-top-dashed {
  border-top-style: dashed;
}
.border-top-solid {
  border-top-style: solid;
}
.border-top-double {
  border-top-style: double;
}
.border-top-groove {
  border-top-style: groove;
}
.border-top-ridge {
  border-top-style: ridge;
}
.border-top-inset {
  border-top-style: inset;
}
.border-top-outset {
  border-top-style: outset;
}
.border-top-thin {
  border-top-width: thin;
}
.border-top-medium {
  border-top-width: medium;
}
.border-top-thick {
  border-top-width: thick;
}
.border {
  border: 1px solid rgba(0, 0, 0, 0.075);
}
.border-light {
  border: 1px solid rgba(0, 0, 0, 0.045);
}
.border-dark {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.075);
}
.border-right-light {
  border-right: 1px solid rgba(0, 0, 0, 0.045);
}
.border-right-dark {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.border-right-none {
  border-right-style: none;
}
.border-right-dotted {
  border-right-style: dotted;
}
.border-right-dashed {
  border-right-style: dashed;
}
.border-right-solid {
  border-right-style: solid;
}
.border-right-double {
  border-right-style: double;
}
.border-right-groove {
  border-right-style: groove;
}
.border-right-ridge {
  border-right-style: ridge;
}
.border-right-inset {
  border-right-style: inset;
}
.border-right-outset {
  border-right-style: outset;
}
.border-right-thin {
  border-right-width: thin;
}
.border-right-medium {
  border-right-width: medium;
}
.border-right-thick {
  border-right-width: thick;
}
.border {
  border: 1px solid rgba(0, 0, 0, 0.075);
}
.border-light {
  border: 1px solid rgba(0, 0, 0, 0.045);
}
.border-dark {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
.border-bottom-light {
  border-bottom: 1px solid rgba(0, 0, 0, 0.045);
}
.border-bottom-dark {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.border-bottom-none {
  border-bottom-style: none;
}
.border-bottom-dotted {
  border-bottom-style: dotted;
}
.border-bottom-dashed {
  border-bottom-style: dashed;
}
.border-bottom-solid {
  border-bottom-style: solid;
}
.border-bottom-double {
  border-bottom-style: double;
}
.border-bottom-groove {
  border-bottom-style: groove;
}
.border-bottom-ridge {
  border-bottom-style: ridge;
}
.border-bottom-inset {
  border-bottom-style: inset;
}
.border-bottom-outset {
  border-bottom-style: outset;
}
.border-bottom-thin {
  border-bottom-width: thin;
}
.border-bottom-medium {
  border-bottom-width: medium;
}
.border-bottom-thick {
  border-bottom-width: thick;
}
.border {
  border: 1px solid rgba(0, 0, 0, 0.075);
}
.border-light {
  border: 1px solid rgba(0, 0, 0, 0.045);
}
.border-dark {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.border-left {
  border-left: 1px solid rgba(0, 0, 0, 0.075);
}
.border-left-light {
  border-left: 1px solid rgba(0, 0, 0, 0.045);
}
.border-left-dark {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.border-left-none {
  border-left-style: none;
}
.border-left-dotted {
  border-left-style: dotted;
}
.border-left-dashed {
  border-left-style: dashed;
}
.border-left-solid {
  border-left-style: solid;
}
.border-left-double {
  border-left-style: double;
}
.border-left-groove {
  border-left-style: groove;
}
.border-left-ridge {
  border-left-style: ridge;
}
.border-left-inset {
  border-left-style: inset;
}
.border-left-outset {
  border-left-style: outset;
}
.border-left-thin {
  border-left-width: thin;
}
.border-left-medium {
  border-left-width: medium;
}
.border-left-thick {
  border-left-width: thick;
}
.border-y {
  border-top: 1px solid rgba(0, 0, 0, 0.075);
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
.border-y-light {
  border-top: 1px solid rgba(0, 0, 0, 0.045);
  border-bottom: 1px solid rgba(0, 0, 0, 0.045);
}
.border-y-dark {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.border-x {
  border-left: 1px solid rgba(0, 0, 0, 0.075);
  border-right: 1px solid rgba(0, 0, 0, 0.075);
}
.border-x-light {
  border-left: 1px solid rgba(0, 0, 0, 0.045);
  border-right: 1px solid rgba(0, 0, 0, 0.045);
}
.border-x-dark {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.border-radius {
  border-radius: 4px;
}
.border-radius-top-left {
  border-top-left-radius: 4px;
}
.border-radius-top-right {
  border-top-right-radius: 4px;
}
.border-radius-bottom-left {
  border-bottom-left-radius: 4px;
}
.border-radius-bottom-right {
  border-bottom-right-radius: 4px;
}

.font-style-oblique {
  font-style: oblique;
}

.font-style-italic {
  font-style: italic;
}

.font-ui {
  font-family: "Noto Sans", sans-serif !important;
}

.font-content {
  font-family: "Brill", "Georgia", serif !important;
}

.font-header {
  font-family: "Brill", "Georgia", serif !important;
}

.fw-1 {
  font-weight: 300 !important;
}

.fw-2 {
  font-weight: 400 !important;
}

.fw-3 {
  font-weight: 500 !important;
}

.fw-4 {
  font-weight: 600 !important;
}

.f-1 {
  font-size: 0.875rem !important;
}

.f-2 {
  font-size: 1rem !important;
}

.f-3 {
  font-size: 1.125rem !important;
}

.f-4 {
  font-size: 1.5rem !important;
}

.f-5 {
  font-size: 1.75rem !important;
}

.f-6 {
  font-size: 2.125rem !important;
}

.f-7 {
  font-size: 2.8125rem !important;
}

.f-8 {
  font-size: 1.125rem !important;
}

.f-9 {
  font-size: 3.5rem !important;
}

.f-10 {
  font-size: 5rem !important;
}

.ln-1 {
  line-height: 1.125rem !important;
}

.ln-2 {
  line-height: 1.25rem !important;
}

.ln-3 {
  line-height: 1.5rem !important;
}

.ln-4 {
  line-height: 1.75rem !important;
}

.ln-5 {
  line-height: 2rem !important;
}

.ln-6 {
  line-height: 2.125rem !important;
}

.ln-7 {
  line-height: 3rem !important;
}

.ln-8 {
  line-height: 4.5rem !important;
}

.ln-9 {
  line-height: 5.5rem !important;
}

.ln-10 {
  line-height: 6.5rem !important;
}

.text-left, .text-align-left {
  text-align: left;
}
.text-center, .text-align-center {
  text-align: center;
}
.text-right, .text-align-right {
  text-align: right;
}
.text-justify, .text-align-justify {
  text-align: justify;
}
.text-nowrap, .text-align-nowrap {
  white-space: nowrap;
}
.text-wrap, .text-align-wrap {
  white-space: wrap;
}
.text-pre, .text-align-pre {
  white-space: pre;
}
.text-pre-line, .text-align-pre-line {
  white-space: pre-line;
}
.text-pre-wrap, .text-align-pre-wrap {
  white-space: pre-wrap;
}

.text-transform-uppercase {
  text-transform: uppercase;
}

.text-transform-lowercase {
  text-transform: lowercase;
}

.text-transform-capitalize {
  text-transform: capitalize;
}

.text-transform-none {
  text-transform: none;
}

.display-none.display-none,
.hidden.hidden {
  display: none;
}

.display-inline.display-inline,
.inline.inline {
  display: inline;
}

.display-inline-block.display-inline-block, .inline-block.inline-block {
  display: inline-block;
}

.display-inline-flex.display-inline-flex {
  display: inline-flex;
}

.display-block.display-block,
.block.block {
  display: block;
}

.display-flex.display-flex {
  display: flex;
}

.display-table.display-table {
  display: table;
}

.display-contents.display-contents {
  display: contents;
}

.display-before-block.display-before-block:before,
.before-block.before-block:before {
  content: "";
  display: block;
}

.position-relative.position-relative {
  position: relative;
}

.position-fixed.position-fixed,
.display-fixed.display-fixed,
.fixed.fixed {
  position: fixed;
  visibility: visible;
  z-index: 99;
}

.position-absolute.position-absolute,
.display-absolute.display-absolute,
.absolute.absolute {
  position: absolute;
  visibility: visible;
}

.position-sticky.position-sticky,
.display-sticky.display-sticky,
.sticky.sticky {
  position: -webkit-sticky;
  position: sticky;
  visibility: visible;
}

.position-sticky-top.position-sticky-top,
.display-sticky-top.display-sticky-top,
.sticky-top.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  visibility: visible;
}

.position-sticky-bottom.position-sticky-bottom,
.display-sticky-bottom.display-sticky-bottom,
.sticky-bottom.sticky-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0px;
  visibility: visible;
}

.visibility-visible {
  visibility: visible;
}

.visibility-hidden {
  visibility: hidden;
}

.flex.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-inline.flex-inline {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-col.flex-col {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-col-reverse.flex-col-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-row.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-row-reverse.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-wrap.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap.flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-align-stretch.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-align-center.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-align-start.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-align-end.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-align-self-stretch.flex-align-self-stretch {
  align-self: stretch;
}
.flex-align-self-center.flex-align-self-center {
  align-self: center;
}
.flex-align-self-start.flex-align-self-start {
  align-self: flex-start;
}
.flex-align-self-end.flex-align-self-end {
  align-self: flex-end;
}
.flex-justify-start.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-justify-end.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-justify-center.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-justify-btw.flex-justify-btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-justify-around.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-justify-self-start.flex-justify-self-start {
  justify-self: flex-start;
}
.flex-justify-self-end.flex-justify-self-end {
  justify-self: flex-end;
}
.flex-justify-self-center.flex-justify-self-center {
  justify-self: center;
}
.flex-justify-self-btw.flex-justify-self-btw {
  justify-self: space-between;
}
.flex-justify-self-around.flex-justify-self-around {
  justify-self: space-around;
}
.flex-1 {
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flex-order-1 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
}
.flex-2 {
  min-width: 0;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.flex-order-2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
}
.flex-3 {
  min-width: 0;
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}
.flex-order-3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  order: 3;
}
.flex-4 {
  min-width: 0;
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}
.flex-order-4 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 4;
  order: 4;
}
.flex-5 {
  min-width: 0;
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
}
.flex-order-5 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 5;
  order: 5;
}
.flex-6 {
  min-width: 0;
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}
.flex-order-6 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 6;
  order: 6;
}
.flex-7 {
  min-width: 0;
  -webkit-box-flex: 7;
  -ms-flex: 7;
  flex: 7;
}
.flex-order-7 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 7;
  order: 7;
}
.flex-8 {
  min-width: 0;
  -webkit-box-flex: 8;
  -ms-flex: 8;
  flex: 8;
}
.flex-order-8 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 8;
  order: 8;
}
.flex-9 {
  min-width: 0;
  -webkit-box-flex: 9;
  -ms-flex: 9;
  flex: 9;
}
.flex-order-9 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 9;
  order: 9;
}
.flex-10 {
  min-width: 0;
  -webkit-box-flex: 10;
  -ms-flex: 10;
  flex: 10;
}
.flex-order-10 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 10;
  order: 10;
}
.flex-11 {
  min-width: 0;
  -webkit-box-flex: 11;
  -ms-flex: 11;
  flex: 11;
}
.flex-order-11 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 11;
  order: 11;
}
.flex-12 {
  min-width: 0;
  -webkit-box-flex: 12;
  -ms-flex: 12;
  flex: 12;
}
.flex-order-12 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 12;
  order: 12;
}

@media all and (-ms-high-contrast: none) {
  .flex-1 {
    flex: auto;
    flex-grow: 1;
  }
  .flex-2 {
    flex: auto;
    flex-grow: 2;
  }
  .flex-3 {
    flex: auto;
    flex-grow: 3;
  }
  .flex-4 {
    flex: auto;
    flex-grow: 4;
  }
  .flex-5 {
    flex: auto;
    flex-grow: 5;
  }
  .flex-6 {
    flex: auto;
    flex-grow: 6;
  }
  .flex-7 {
    flex: auto;
    flex-grow: 7;
  }
  .flex-8 {
    flex: auto;
    flex-grow: 8;
  }
  .flex-9 {
    flex: auto;
    flex-grow: 9;
  }
  .flex-10 {
    flex: auto;
    flex-grow: 10;
  }
  .flex-11 {
    flex: auto;
    flex-grow: 11;
  }
  .flex-12 {
    flex: auto;
    flex-grow: 12;
  }
}
.ie-11 .flex-1 {
  flex: auto;
  flex-grow: 1;
}
.ie-11 .flex-2 {
  flex: auto;
  flex-grow: 2;
}
.ie-11 .flex-3 {
  flex: auto;
  flex-grow: 3;
}
.ie-11 .flex-4 {
  flex: auto;
  flex-grow: 4;
}
.ie-11 .flex-5 {
  flex: auto;
  flex-grow: 5;
}
.ie-11 .flex-6 {
  flex: auto;
  flex-grow: 6;
}
.ie-11 .flex-7 {
  flex: auto;
  flex-grow: 7;
}
.ie-11 .flex-8 {
  flex: auto;
  flex-grow: 8;
}
.ie-11 .flex-9 {
  flex: auto;
  flex-grow: 9;
}
.ie-11 .flex-10 {
  flex: auto;
  flex-grow: 10;
}
.ie-11 .flex-11 {
  flex: auto;
  flex-grow: 11;
}
.ie-11 .flex-12 {
  flex: auto;
  flex-grow: 12;
}

.list-style-none {
  list-style: none;
}

.columns-0 {
  column-count: 0;
}
.columns-1 {
  column-count: 1;
}
.columns-2 {
  column-count: 2;
}
.columns-3 {
  column-count: 3;
}
.columns-4 {
  column-count: 4;
}
.columns-5 {
  column-count: 5;
}
.columns-6 {
  column-count: 6;
}
.columns-7 {
  column-count: 7;
}
.columns-8 {
  column-count: 8;
}
.columns-9 {
  column-count: 9;
}

.overflow-auto {
  overflow: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-y-visible {
  overflow-y: visible;
}
.overflow-x-visible {
  overflow-x: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-overlay {
  overflow: overlay;
}
.overflow-y-overlay {
  overflow-y: overlay;
}
.overflow-x-overlay {
  overflow-x: overlay;
}

.text-overflow-clip {
  text-overflow: clip;
}
.text-overflow-ellipsis {
  text-overflow: ellipsis;
}
.text-overflow-initial {
  text-overflow: initial;
}
.text-overflow-inherit {
  text-overflow: inherit;
}

@media (max-width: 480px) {
  .w\@xxs-auto {
    width: auto;
  }
  .w\@xxs-1 {
    width: 100%;
  }
  .w\@xxs-75 {
    width: 75%;
  }
  .w\@xxs-50 {
    width: 50%;
  }
  .w\@xxs-33 {
    width: 33.3333333333%;
  }
  .w\@xxs-25 {
    width: 25%;
  }
  .w\@xxs-12 {
    width: 12.5%;
  }

  .wMin\@xxs-auto {
    min-width: auto;
  }
  .wMin\@xxs-1 {
    min-width: 100%;
  }
  .wMin\@xxs-75 {
    min-width: 75%;
  }
  .wMin\@xxs-50 {
    min-width: 50%;
  }
  .wMin\@xxs-33 {
    min-width: 33.3333333333%;
  }
  .wMin\@xxs-25 {
    min-width: 25%;
  }
  .wMin\@xxs-12 {
    min-width: 12.5%;
  }

  .wMax\@xxs-auto {
    max-width: auto;
  }
  .wMax\@xxs-1 {
    max-width: 100%;
  }
  .wMax\@xxs-75 {
    max-width: 75%;
  }
  .wMax\@xxs-50 {
    max-width: 50%;
  }
  .wMax\@xxs-33 {
    max-width: 33.3333333333%;
  }
  .wMax\@xxs-25 {
    max-width: 25%;
  }
  .wMax\@xxs-12 {
    max-width: 12.5%;
  }

  .h\@xxs-auto {
    height: auto;
  }
  .h\@xxs-1 {
    height: 100%;
  }
  .h\@xxs-75 {
    height: 75%;
  }
  .h\@xxs-50 {
    height: 50%;
  }
  .h\@xxs-33 {
    height: 33.3333333333%;
  }
  .h\@xxs-25 {
    height: 25%;
  }
  .h\@xxs-12 {
    height: 12.5%;
  }

  .hMin\@xxs-auto {
    min-height: auto;
  }
  .hMin\@xxs-1 {
    min-height: 100%;
  }
  .hMin\@xxs-75 {
    min-height: 75%;
  }
  .hMin\@xxs-50 {
    min-height: 50%;
  }
  .hMin\@xxs-33 {
    min-height: 33.3333333333%;
  }
  .hMin\@xxs-25 {
    min-height: 25%;
  }
  .hMin\@xxs-12 {
    min-height: 12.5%;
  }

  .hMax\@xxs-auto {
    max-height: auto;
  }
  .hMax\@xxs-1 {
    max-height: 100%;
  }
  .hMax\@xxs-75 {
    max-height: 75%;
  }
  .hMax\@xxs-50 {
    max-height: 50%;
  }
  .hMax\@xxs-33 {
    max-height: 33.3333333333%;
  }
  .hMax\@xxs-25 {
    max-height: 25%;
  }
  .hMax\@xxs-12 {
    max-height: 12.5%;
  }

  .m\@xxs-0.m\@xxs-0 {
    margin: 0px;
  }
  .m\@xxs-auto.m\@xxs-auto {
    margin: auto;
  }
  .mt\@xxs-0.mt\@xxs-0 {
    margin-top: 0px;
  }
  .mt\@xxs-auto.mt\@xxs-auto {
    margin-top: auto;
  }
  .mr\@xxs-0.mr\@xxs-0 {
    margin-right: 0px;
  }
  .mr\@xxs-auto.mr\@xxs-auto {
    margin-right: auto;
  }
  .mb\@xxs-0.mb\@xxs-0 {
    margin-bottom: 0px;
  }
  .mb\@xxs-auto.mb\@xxs-auto {
    margin-bottom: auto;
  }
  .ml\@xxs-0.ml\@xxs-0 {
    margin-left: 0px;
  }
  .ml\@xxs-auto.ml\@xxs-auto {
    margin-left: auto;
  }
  .my\@xxs-0.my\@xxs-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mx\@xxs-0.mx\@xxs-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .my\@xxs-auto.my\@xxs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xxs-auto.mx\@xxs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xxs-1.m\@xxs-1 {
    margin: 4px;
  }
  .m\@xxs-auto.m\@xxs-auto {
    margin: auto;
  }
  .mt\@xxs-1.mt\@xxs-1 {
    margin-top: 4px;
  }
  .mt\@xxs-auto.mt\@xxs-auto {
    margin-top: auto;
  }
  .mr\@xxs-1.mr\@xxs-1 {
    margin-right: 4px;
  }
  .mr\@xxs-auto.mr\@xxs-auto {
    margin-right: auto;
  }
  .mb\@xxs-1.mb\@xxs-1 {
    margin-bottom: 4px;
  }
  .mb\@xxs-auto.mb\@xxs-auto {
    margin-bottom: auto;
  }
  .ml\@xxs-1.ml\@xxs-1 {
    margin-left: 4px;
  }
  .ml\@xxs-auto.ml\@xxs-auto {
    margin-left: auto;
  }
  .my\@xxs-1.my\@xxs-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .mx\@xxs-1.mx\@xxs-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .my\@xxs-auto.my\@xxs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xxs-auto.mx\@xxs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xxs-2.m\@xxs-2 {
    margin: 8px;
  }
  .m\@xxs-auto.m\@xxs-auto {
    margin: auto;
  }
  .mt\@xxs-2.mt\@xxs-2 {
    margin-top: 8px;
  }
  .mt\@xxs-auto.mt\@xxs-auto {
    margin-top: auto;
  }
  .mr\@xxs-2.mr\@xxs-2 {
    margin-right: 8px;
  }
  .mr\@xxs-auto.mr\@xxs-auto {
    margin-right: auto;
  }
  .mb\@xxs-2.mb\@xxs-2 {
    margin-bottom: 8px;
  }
  .mb\@xxs-auto.mb\@xxs-auto {
    margin-bottom: auto;
  }
  .ml\@xxs-2.ml\@xxs-2 {
    margin-left: 8px;
  }
  .ml\@xxs-auto.ml\@xxs-auto {
    margin-left: auto;
  }
  .my\@xxs-2.my\@xxs-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx\@xxs-2.mx\@xxs-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .my\@xxs-auto.my\@xxs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xxs-auto.mx\@xxs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xxs-3.m\@xxs-3 {
    margin: 16px;
  }
  .m\@xxs-auto.m\@xxs-auto {
    margin: auto;
  }
  .mt\@xxs-3.mt\@xxs-3 {
    margin-top: 16px;
  }
  .mt\@xxs-auto.mt\@xxs-auto {
    margin-top: auto;
  }
  .mr\@xxs-3.mr\@xxs-3 {
    margin-right: 16px;
  }
  .mr\@xxs-auto.mr\@xxs-auto {
    margin-right: auto;
  }
  .mb\@xxs-3.mb\@xxs-3 {
    margin-bottom: 16px;
  }
  .mb\@xxs-auto.mb\@xxs-auto {
    margin-bottom: auto;
  }
  .ml\@xxs-3.ml\@xxs-3 {
    margin-left: 16px;
  }
  .ml\@xxs-auto.ml\@xxs-auto {
    margin-left: auto;
  }
  .my\@xxs-3.my\@xxs-3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx\@xxs-3.mx\@xxs-3 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .my\@xxs-auto.my\@xxs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xxs-auto.mx\@xxs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xxs-4.m\@xxs-4 {
    margin: 32px;
  }
  .m\@xxs-auto.m\@xxs-auto {
    margin: auto;
  }
  .mt\@xxs-4.mt\@xxs-4 {
    margin-top: 32px;
  }
  .mt\@xxs-auto.mt\@xxs-auto {
    margin-top: auto;
  }
  .mr\@xxs-4.mr\@xxs-4 {
    margin-right: 32px;
  }
  .mr\@xxs-auto.mr\@xxs-auto {
    margin-right: auto;
  }
  .mb\@xxs-4.mb\@xxs-4 {
    margin-bottom: 32px;
  }
  .mb\@xxs-auto.mb\@xxs-auto {
    margin-bottom: auto;
  }
  .ml\@xxs-4.ml\@xxs-4 {
    margin-left: 32px;
  }
  .ml\@xxs-auto.ml\@xxs-auto {
    margin-left: auto;
  }
  .my\@xxs-4.my\@xxs-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx\@xxs-4.mx\@xxs-4 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .my\@xxs-auto.my\@xxs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xxs-auto.mx\@xxs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xxs-5.m\@xxs-5 {
    margin: 64px;
  }
  .m\@xxs-auto.m\@xxs-auto {
    margin: auto;
  }
  .mt\@xxs-5.mt\@xxs-5 {
    margin-top: 64px;
  }
  .mt\@xxs-auto.mt\@xxs-auto {
    margin-top: auto;
  }
  .mr\@xxs-5.mr\@xxs-5 {
    margin-right: 64px;
  }
  .mr\@xxs-auto.mr\@xxs-auto {
    margin-right: auto;
  }
  .mb\@xxs-5.mb\@xxs-5 {
    margin-bottom: 64px;
  }
  .mb\@xxs-auto.mb\@xxs-auto {
    margin-bottom: auto;
  }
  .ml\@xxs-5.ml\@xxs-5 {
    margin-left: 64px;
  }
  .ml\@xxs-auto.ml\@xxs-auto {
    margin-left: auto;
  }
  .my\@xxs-5.my\@xxs-5 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx\@xxs-5.mx\@xxs-5 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .my\@xxs-auto.my\@xxs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xxs-auto.mx\@xxs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xxs-6.m\@xxs-6 {
    margin: 128px;
  }
  .m\@xxs-auto.m\@xxs-auto {
    margin: auto;
  }
  .mt\@xxs-6.mt\@xxs-6 {
    margin-top: 128px;
  }
  .mt\@xxs-auto.mt\@xxs-auto {
    margin-top: auto;
  }
  .mr\@xxs-6.mr\@xxs-6 {
    margin-right: 128px;
  }
  .mr\@xxs-auto.mr\@xxs-auto {
    margin-right: auto;
  }
  .mb\@xxs-6.mb\@xxs-6 {
    margin-bottom: 128px;
  }
  .mb\@xxs-auto.mb\@xxs-auto {
    margin-bottom: auto;
  }
  .ml\@xxs-6.ml\@xxs-6 {
    margin-left: 128px;
  }
  .ml\@xxs-auto.ml\@xxs-auto {
    margin-left: auto;
  }
  .my\@xxs-6.my\@xxs-6 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx\@xxs-6.mx\@xxs-6 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .my\@xxs-auto.my\@xxs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xxs-auto.mx\@xxs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xxs-7.m\@xxs-7 {
    margin: 256px;
  }
  .m\@xxs-auto.m\@xxs-auto {
    margin: auto;
  }
  .mt\@xxs-7.mt\@xxs-7 {
    margin-top: 256px;
  }
  .mt\@xxs-auto.mt\@xxs-auto {
    margin-top: auto;
  }
  .mr\@xxs-7.mr\@xxs-7 {
    margin-right: 256px;
  }
  .mr\@xxs-auto.mr\@xxs-auto {
    margin-right: auto;
  }
  .mb\@xxs-7.mb\@xxs-7 {
    margin-bottom: 256px;
  }
  .mb\@xxs-auto.mb\@xxs-auto {
    margin-bottom: auto;
  }
  .ml\@xxs-7.ml\@xxs-7 {
    margin-left: 256px;
  }
  .ml\@xxs-auto.ml\@xxs-auto {
    margin-left: auto;
  }
  .my\@xxs-7.my\@xxs-7 {
    margin-top: 256px;
    margin-bottom: 256px;
  }
  .mx\@xxs-7.mx\@xxs-7 {
    margin-right: 256px;
    margin-left: 256px;
  }
  .my\@xxs-auto.my\@xxs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xxs-auto.mx\@xxs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .p\@xxs-0.p\@xxs-0 {
    padding: 0px;
  }
  .p\@xxs-auto.p\@xxs-auto {
    padding: auto;
  }
  .pt\@xxs-0.pt\@xxs-0 {
    padding-top: 0px;
  }
  .pt\@xxs-auto.pt\@xxs-auto {
    padding-top: auto;
  }
  .pr\@xxs-0.pr\@xxs-0 {
    padding-right: 0px;
  }
  .pr\@xxs-auto.pr\@xxs-auto {
    padding-right: auto;
  }
  .pb\@xxs-0.pb\@xxs-0 {
    padding-bottom: 0px;
  }
  .pb\@xxs-auto.pb\@xxs-auto {
    padding-bottom: auto;
  }
  .pl\@xxs-0.pl\@xxs-0 {
    padding-left: 0px;
  }
  .pl\@xxs-auto.pl\@xxs-auto {
    padding-left: auto;
  }
  .py\@xxs-0.py\@xxs-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .px\@xxs-0.px\@xxs-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .py\@xxs-auto.py\@xxs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xxs-auto.px\@xxs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xxs-1.p\@xxs-1 {
    padding: 4px;
  }
  .p\@xxs-auto.p\@xxs-auto {
    padding: auto;
  }
  .pt\@xxs-1.pt\@xxs-1 {
    padding-top: 4px;
  }
  .pt\@xxs-auto.pt\@xxs-auto {
    padding-top: auto;
  }
  .pr\@xxs-1.pr\@xxs-1 {
    padding-right: 4px;
  }
  .pr\@xxs-auto.pr\@xxs-auto {
    padding-right: auto;
  }
  .pb\@xxs-1.pb\@xxs-1 {
    padding-bottom: 4px;
  }
  .pb\@xxs-auto.pb\@xxs-auto {
    padding-bottom: auto;
  }
  .pl\@xxs-1.pl\@xxs-1 {
    padding-left: 4px;
  }
  .pl\@xxs-auto.pl\@xxs-auto {
    padding-left: auto;
  }
  .py\@xxs-1.py\@xxs-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .px\@xxs-1.px\@xxs-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .py\@xxs-auto.py\@xxs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xxs-auto.px\@xxs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xxs-2.p\@xxs-2 {
    padding: 8px;
  }
  .p\@xxs-auto.p\@xxs-auto {
    padding: auto;
  }
  .pt\@xxs-2.pt\@xxs-2 {
    padding-top: 8px;
  }
  .pt\@xxs-auto.pt\@xxs-auto {
    padding-top: auto;
  }
  .pr\@xxs-2.pr\@xxs-2 {
    padding-right: 8px;
  }
  .pr\@xxs-auto.pr\@xxs-auto {
    padding-right: auto;
  }
  .pb\@xxs-2.pb\@xxs-2 {
    padding-bottom: 8px;
  }
  .pb\@xxs-auto.pb\@xxs-auto {
    padding-bottom: auto;
  }
  .pl\@xxs-2.pl\@xxs-2 {
    padding-left: 8px;
  }
  .pl\@xxs-auto.pl\@xxs-auto {
    padding-left: auto;
  }
  .py\@xxs-2.py\@xxs-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px\@xxs-2.px\@xxs-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .py\@xxs-auto.py\@xxs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xxs-auto.px\@xxs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xxs-3.p\@xxs-3 {
    padding: 16px;
  }
  .p\@xxs-auto.p\@xxs-auto {
    padding: auto;
  }
  .pt\@xxs-3.pt\@xxs-3 {
    padding-top: 16px;
  }
  .pt\@xxs-auto.pt\@xxs-auto {
    padding-top: auto;
  }
  .pr\@xxs-3.pr\@xxs-3 {
    padding-right: 16px;
  }
  .pr\@xxs-auto.pr\@xxs-auto {
    padding-right: auto;
  }
  .pb\@xxs-3.pb\@xxs-3 {
    padding-bottom: 16px;
  }
  .pb\@xxs-auto.pb\@xxs-auto {
    padding-bottom: auto;
  }
  .pl\@xxs-3.pl\@xxs-3 {
    padding-left: 16px;
  }
  .pl\@xxs-auto.pl\@xxs-auto {
    padding-left: auto;
  }
  .py\@xxs-3.py\@xxs-3 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px\@xxs-3.px\@xxs-3 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .py\@xxs-auto.py\@xxs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xxs-auto.px\@xxs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xxs-4.p\@xxs-4 {
    padding: 32px;
  }
  .p\@xxs-auto.p\@xxs-auto {
    padding: auto;
  }
  .pt\@xxs-4.pt\@xxs-4 {
    padding-top: 32px;
  }
  .pt\@xxs-auto.pt\@xxs-auto {
    padding-top: auto;
  }
  .pr\@xxs-4.pr\@xxs-4 {
    padding-right: 32px;
  }
  .pr\@xxs-auto.pr\@xxs-auto {
    padding-right: auto;
  }
  .pb\@xxs-4.pb\@xxs-4 {
    padding-bottom: 32px;
  }
  .pb\@xxs-auto.pb\@xxs-auto {
    padding-bottom: auto;
  }
  .pl\@xxs-4.pl\@xxs-4 {
    padding-left: 32px;
  }
  .pl\@xxs-auto.pl\@xxs-auto {
    padding-left: auto;
  }
  .py\@xxs-4.py\@xxs-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px\@xxs-4.px\@xxs-4 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .py\@xxs-auto.py\@xxs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xxs-auto.px\@xxs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xxs-5.p\@xxs-5 {
    padding: 64px;
  }
  .p\@xxs-auto.p\@xxs-auto {
    padding: auto;
  }
  .pt\@xxs-5.pt\@xxs-5 {
    padding-top: 64px;
  }
  .pt\@xxs-auto.pt\@xxs-auto {
    padding-top: auto;
  }
  .pr\@xxs-5.pr\@xxs-5 {
    padding-right: 64px;
  }
  .pr\@xxs-auto.pr\@xxs-auto {
    padding-right: auto;
  }
  .pb\@xxs-5.pb\@xxs-5 {
    padding-bottom: 64px;
  }
  .pb\@xxs-auto.pb\@xxs-auto {
    padding-bottom: auto;
  }
  .pl\@xxs-5.pl\@xxs-5 {
    padding-left: 64px;
  }
  .pl\@xxs-auto.pl\@xxs-auto {
    padding-left: auto;
  }
  .py\@xxs-5.py\@xxs-5 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px\@xxs-5.px\@xxs-5 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .py\@xxs-auto.py\@xxs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xxs-auto.px\@xxs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xxs-6.p\@xxs-6 {
    padding: 128px;
  }
  .p\@xxs-auto.p\@xxs-auto {
    padding: auto;
  }
  .pt\@xxs-6.pt\@xxs-6 {
    padding-top: 128px;
  }
  .pt\@xxs-auto.pt\@xxs-auto {
    padding-top: auto;
  }
  .pr\@xxs-6.pr\@xxs-6 {
    padding-right: 128px;
  }
  .pr\@xxs-auto.pr\@xxs-auto {
    padding-right: auto;
  }
  .pb\@xxs-6.pb\@xxs-6 {
    padding-bottom: 128px;
  }
  .pb\@xxs-auto.pb\@xxs-auto {
    padding-bottom: auto;
  }
  .pl\@xxs-6.pl\@xxs-6 {
    padding-left: 128px;
  }
  .pl\@xxs-auto.pl\@xxs-auto {
    padding-left: auto;
  }
  .py\@xxs-6.py\@xxs-6 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px\@xxs-6.px\@xxs-6 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py\@xxs-auto.py\@xxs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xxs-auto.px\@xxs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xxs-7.p\@xxs-7 {
    padding: 256px;
  }
  .p\@xxs-auto.p\@xxs-auto {
    padding: auto;
  }
  .pt\@xxs-7.pt\@xxs-7 {
    padding-top: 256px;
  }
  .pt\@xxs-auto.pt\@xxs-auto {
    padding-top: auto;
  }
  .pr\@xxs-7.pr\@xxs-7 {
    padding-right: 256px;
  }
  .pr\@xxs-auto.pr\@xxs-auto {
    padding-right: auto;
  }
  .pb\@xxs-7.pb\@xxs-7 {
    padding-bottom: 256px;
  }
  .pb\@xxs-auto.pb\@xxs-auto {
    padding-bottom: auto;
  }
  .pl\@xxs-7.pl\@xxs-7 {
    padding-left: 256px;
  }
  .pl\@xxs-auto.pl\@xxs-auto {
    padding-left: auto;
  }
  .py\@xxs-7.py\@xxs-7 {
    padding-top: 256px;
    padding-bottom: 256px;
  }
  .px\@xxs-7.px\@xxs-7 {
    padding-right: 256px;
    padding-left: 256px;
  }
  .py\@xxs-auto.py\@xxs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xxs-auto.px\@xxs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .border-none {
    border-style: none;
  }
  .border-dotted {
    border-style: dotted;
  }
  .border-dashed {
    border-style: dashed;
  }
  .border-solid {
    border-style: solid;
  }
  .border-double {
    border-style: double;
  }
  .border-groove {
    border-style: groove;
  }
  .border-ridge {
    border-style: ridge;
  }
  .border-inset {
    border-style: inset;
  }
  .border-outset {
    border-style: outset;
  }
  .border\@xxs {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-top {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-top-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-top-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-top-none {
    border-top-style: none;
  }
  .border\@xxs-top-dotted {
    border-top-style: dotted;
  }
  .border\@xxs-top-dashed {
    border-top-style: dashed;
  }
  .border\@xxs-top-solid {
    border-top-style: solid;
  }
  .border\@xxs-top-double {
    border-top-style: double;
  }
  .border\@xxs-top-groove {
    border-top-style: groove;
  }
  .border\@xxs-top-ridge {
    border-top-style: ridge;
  }
  .border\@xxs-top-inset {
    border-top-style: inset;
  }
  .border\@xxs-top-outset {
    border-top-style: outset;
  }
  .border\@xxs-top-thin {
    border-top-width: thin;
  }
  .border\@xxs-top-medium {
    border-top-width: medium;
  }
  .border\@xxs-top-thick {
    border-top-width: thick;
  }
  .border\@xxs {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-right {
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-right-light {
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-right-dark {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-right-none {
    border-right-style: none;
  }
  .border\@xxs-right-dotted {
    border-right-style: dotted;
  }
  .border\@xxs-right-dashed {
    border-right-style: dashed;
  }
  .border\@xxs-right-solid {
    border-right-style: solid;
  }
  .border\@xxs-right-double {
    border-right-style: double;
  }
  .border\@xxs-right-groove {
    border-right-style: groove;
  }
  .border\@xxs-right-ridge {
    border-right-style: ridge;
  }
  .border\@xxs-right-inset {
    border-right-style: inset;
  }
  .border\@xxs-right-outset {
    border-right-style: outset;
  }
  .border\@xxs-right-thin {
    border-right-width: thin;
  }
  .border\@xxs-right-medium {
    border-right-width: medium;
  }
  .border\@xxs-right-thick {
    border-right-width: thick;
  }
  .border\@xxs {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-bottom-dark {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-bottom-none {
    border-bottom-style: none;
  }
  .border\@xxs-bottom-dotted {
    border-bottom-style: dotted;
  }
  .border\@xxs-bottom-dashed {
    border-bottom-style: dashed;
  }
  .border\@xxs-bottom-solid {
    border-bottom-style: solid;
  }
  .border\@xxs-bottom-double {
    border-bottom-style: double;
  }
  .border\@xxs-bottom-groove {
    border-bottom-style: groove;
  }
  .border\@xxs-bottom-ridge {
    border-bottom-style: ridge;
  }
  .border\@xxs-bottom-inset {
    border-bottom-style: inset;
  }
  .border\@xxs-bottom-outset {
    border-bottom-style: outset;
  }
  .border\@xxs-bottom-thin {
    border-bottom-width: thin;
  }
  .border\@xxs-bottom-medium {
    border-bottom-width: medium;
  }
  .border\@xxs-bottom-thick {
    border-bottom-width: thick;
  }
  .border\@xxs {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-left {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-left-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-left-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-left-none {
    border-left-style: none;
  }
  .border\@xxs-left-dotted {
    border-left-style: dotted;
  }
  .border\@xxs-left-dashed {
    border-left-style: dashed;
  }
  .border\@xxs-left-solid {
    border-left-style: solid;
  }
  .border\@xxs-left-double {
    border-left-style: double;
  }
  .border\@xxs-left-groove {
    border-left-style: groove;
  }
  .border\@xxs-left-ridge {
    border-left-style: ridge;
  }
  .border\@xxs-left-inset {
    border-left-style: inset;
  }
  .border\@xxs-left-outset {
    border-left-style: outset;
  }
  .border\@xxs-left-thin {
    border-left-width: thin;
  }
  .border\@xxs-left-medium {
    border-left-width: medium;
  }
  .border\@xxs-left-thick {
    border-left-width: thick;
  }
  .border\@xxs-y {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-y-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-y-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-x {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xxs-x-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xxs-x-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xxs-radius {
    border-radius: 4px;
  }
  .border\@xxs-radius-top-left {
    border-top-left-radius: 4px;
  }
  .border\@xxs-radius-top-right {
    border-top-right-radius: 4px;
  }
  .border\@xxs-radius-bottom-left {
    border-bottom-left-radius: 4px;
  }
  .border\@xxs-radius-bottom-right {
    border-bottom-right-radius: 4px;
  }

  .font-style\@xxs-oblique {
    font-style: oblique;
  }

  .font-style\@xxs-italic {
    font-style: italic;
  }

  .font\@xxs-ui {
    font-family: "Noto Sans", sans-serif !important;
  }

  .font\@xxs-content {
    font-family: "Brill", "Georgia", serif !important;
  }

  .font\@xxs-header {
    font-family: "Brill", "Georgia", serif !important;
  }

  .fw\@xxs-1 {
    font-weight: 300 !important;
  }

  .fw\@xxs-2 {
    font-weight: 400 !important;
  }

  .fw\@xxs-3 {
    font-weight: 500 !important;
  }

  .fw\@xxs-4 {
    font-weight: 600 !important;
  }

  .f\@xxs-1 {
    font-size: 0.875rem !important;
  }

  .f\@xxs-2 {
    font-size: 1rem !important;
  }

  .f\@xxs-3 {
    font-size: 1.125rem !important;
  }

  .f\@xxs-4 {
    font-size: 1.5rem !important;
  }

  .f\@xxs-5 {
    font-size: 1.75rem !important;
  }

  .f\@xxs-6 {
    font-size: 2.125rem !important;
  }

  .f\@xxs-7 {
    font-size: 2.8125rem !important;
  }

  .f\@xxs-8 {
    font-size: 1.125rem !important;
  }

  .f\@xxs-9 {
    font-size: 3.5rem !important;
  }

  .f\@xxs-10 {
    font-size: 5rem !important;
  }

  .ln\@xxs-1 {
    line-height: 1.125rem !important;
  }

  .ln\@xxs-2 {
    line-height: 1.25rem !important;
  }

  .ln\@xxs-3 {
    line-height: 1.5rem !important;
  }

  .ln\@xxs-4 {
    line-height: 1.75rem !important;
  }

  .ln\@xxs-5 {
    line-height: 2rem !important;
  }

  .ln\@xxs-6 {
    line-height: 2.125rem !important;
  }

  .ln\@xxs-7 {
    line-height: 3rem !important;
  }

  .ln\@xxs-8 {
    line-height: 4.5rem !important;
  }

  .ln\@xxs-9 {
    line-height: 5.5rem !important;
  }

  .ln\@xxs-10 {
    line-height: 6.5rem !important;
  }

  .text\@xxs-left, .text-align\@xxs-left {
    text-align: left;
  }
  .text\@xxs-center, .text-align\@xxs-center {
    text-align: center;
  }
  .text\@xxs-right, .text-align\@xxs-right {
    text-align: right;
  }
  .text\@xxs-justify, .text-align\@xxs-justify {
    text-align: justify;
  }
  .text\@xxs-nowrap, .text-align\@xxs-nowrap {
    white-space: nowrap;
  }
  .text\@xxs-wrap, .text-align\@xxs-wrap {
    white-space: wrap;
  }
  .text\@xxs-pre, .text-align\@xxs-pre {
    white-space: pre;
  }
  .text\@xxs-pre-line, .text-align\@xxs-pre-line {
    white-space: pre-line;
  }
  .text\@xxs-pre-wrap, .text-align\@xxs-pre-wrap {
    white-space: pre-wrap;
  }

  .text-transform\@xxs-uppercase {
    text-transform: uppercase;
  }

  .text-transform\@xxs-lowercase {
    text-transform: lowercase;
  }

  .text-transform\@xxs-capitalize {
    text-transform: capitalize;
  }

  .text-transform\@xxs-none {
    text-transform: none;
  }

  .display\@xxs-none.display\@xxs-none,
.hidden\@xxs.hidden\@xxs {
    display: none;
  }

  .display\@xxs-inline.display\@xxs-inline,
.inline\@xxs.inline\@xxs {
    display: inline;
  }

  .display\@xxs-inline-block.display\@xxs-inline-block, .inline-block\@xxs.inline-block\@xxs {
    display: inline-block;
  }

  .display\@xxs-inline-flex.display\@xxs-inline-flex {
    display: inline-flex;
  }

  .display\@xxs-block.display\@xxs-block,
.block\@xxs.block\@xxs {
    display: block;
  }

  .display\@xxs-flex.display\@xxs-flex {
    display: flex;
  }

  .display\@xxs-table.display\@xxs-table {
    display: table;
  }

  .display\@xxs-contents.display\@xxs-contents {
    display: contents;
  }

  .display\@xxs-before-block.display\@xxs-before-block:before,
.before-block\@xxs.before-block\@xxs:before {
    content: "";
    display: block;
  }

  .position\@xxs-relative.position\@xxs-relative {
    position: relative;
  }

  .position\@xxs-fixed.position\@xxs-fixed,
.display\@xxs-fixed.display\@xxs-fixed,
.fixed\@xxs.fixed\@xxs {
    position: fixed;
    visibility: visible;
    z-index: 99;
  }

  .position\@xxs-absolute.position\@xxs-absolute,
.display\@xxs-absolute.display\@xxs-absolute,
.absolute\@xxs.absolute\@xxs {
    position: absolute;
    visibility: visible;
  }

  .position\@xxs-sticky.position\@xxs-sticky,
.display\@xxs-sticky.display\@xxs-sticky,
.sticky\@xxs.sticky\@xxs {
    position: -webkit-sticky;
    position: sticky;
    visibility: visible;
  }

  .position\@xxs-sticky-top.position\@xxs-sticky-top,
.display\@xxs-sticky-top.display\@xxs-sticky-top,
.sticky-top\@xxs.sticky-top\@xxs {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    visibility: visible;
  }

  .position\@xxs-sticky-bottom.position\@xxs-sticky-bottom,
.display\@xxs-sticky-bottom.display\@xxs-sticky-bottom,
.sticky-bottom\@xxs.sticky-bottom\@xxs {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    visibility: visible;
  }

  .visibility\@xxs-visible {
    visibility: visible;
  }

  .visibility\@xxs-hidden {
    visibility: hidden;
  }

  .flex\@xxs.flex\@xxs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex\@xxs-inline.flex\@xxs-inline {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex\@xxs-col.flex\@xxs-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex\@xxs-col-reverse.flex\@xxs-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex\@xxs-row.flex\@xxs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex\@xxs-row-reverse.flex\@xxs-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex\@xxs-wrap.flex\@xxs-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex\@xxs-nowrap.flex\@xxs-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex\@xxs-align-stretch.flex\@xxs-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex\@xxs-align-center.flex\@xxs-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex\@xxs-align-start.flex\@xxs-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex\@xxs-align-end.flex\@xxs-align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex\@xxs-align-self-stretch.flex\@xxs-align-self-stretch {
    align-self: stretch;
  }
  .flex\@xxs-align-self-center.flex\@xxs-align-self-center {
    align-self: center;
  }
  .flex\@xxs-align-self-start.flex\@xxs-align-self-start {
    align-self: flex-start;
  }
  .flex\@xxs-align-self-end.flex\@xxs-align-self-end {
    align-self: flex-end;
  }
  .flex\@xxs-justify-start.flex\@xxs-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex\@xxs-justify-end.flex\@xxs-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex\@xxs-justify-center.flex\@xxs-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex\@xxs-justify-btw.flex\@xxs-justify-btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex\@xxs-justify-around.flex\@xxs-justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex\@xxs-justify-self-start.flex\@xxs-justify-self-start {
    justify-self: flex-start;
  }
  .flex\@xxs-justify-self-end.flex\@xxs-justify-self-end {
    justify-self: flex-end;
  }
  .flex\@xxs-justify-self-center.flex\@xxs-justify-self-center {
    justify-self: center;
  }
  .flex\@xxs-justify-self-btw.flex\@xxs-justify-self-btw {
    justify-self: space-between;
  }
  .flex\@xxs-justify-self-around.flex\@xxs-justify-self-around {
    justify-self: space-around;
  }
  .flex\@xxs-1 {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex\@xxs-order-1 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex\@xxs-2 {
    min-width: 0;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .flex\@xxs-order-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex\@xxs-3 {
    min-width: 0;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
  }
  .flex\@xxs-order-3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .flex\@xxs-4 {
    min-width: 0;
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
  .flex\@xxs-order-4 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .flex\@xxs-5 {
    min-width: 0;
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
  }
  .flex\@xxs-order-5 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .flex\@xxs-6 {
    min-width: 0;
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
  .flex\@xxs-order-6 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .flex\@xxs-7 {
    min-width: 0;
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7;
  }
  .flex\@xxs-order-7 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .flex\@xxs-8 {
    min-width: 0;
    -webkit-box-flex: 8;
    -ms-flex: 8;
    flex: 8;
  }
  .flex\@xxs-order-8 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .flex\@xxs-9 {
    min-width: 0;
    -webkit-box-flex: 9;
    -ms-flex: 9;
    flex: 9;
  }
  .flex\@xxs-order-9 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .flex\@xxs-10 {
    min-width: 0;
    -webkit-box-flex: 10;
    -ms-flex: 10;
    flex: 10;
  }
  .flex\@xxs-order-10 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .flex\@xxs-11 {
    min-width: 0;
    -webkit-box-flex: 11;
    -ms-flex: 11;
    flex: 11;
  }
  .flex\@xxs-order-11 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .flex\@xxs-12 {
    min-width: 0;
    -webkit-box-flex: 12;
    -ms-flex: 12;
    flex: 12;
  }
  .flex\@xxs-order-12 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media all and (max-width: 480px) and (-ms-high-contrast: none) {
  .flex\@xxs-1 {
    flex: auto;
    flex-grow: 1;
  }
  .flex\@xxs-2 {
    flex: auto;
    flex-grow: 2;
  }
  .flex\@xxs-3 {
    flex: auto;
    flex-grow: 3;
  }
  .flex\@xxs-4 {
    flex: auto;
    flex-grow: 4;
  }
  .flex\@xxs-5 {
    flex: auto;
    flex-grow: 5;
  }
  .flex\@xxs-6 {
    flex: auto;
    flex-grow: 6;
  }
  .flex\@xxs-7 {
    flex: auto;
    flex-grow: 7;
  }
  .flex\@xxs-8 {
    flex: auto;
    flex-grow: 8;
  }
  .flex\@xxs-9 {
    flex: auto;
    flex-grow: 9;
  }
  .flex\@xxs-10 {
    flex: auto;
    flex-grow: 10;
  }
  .flex\@xxs-11 {
    flex: auto;
    flex-grow: 11;
  }
  .flex\@xxs-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (max-width: 480px) {
  .ie-11 .flex\@xxs-1 {
    flex: auto;
    flex-grow: 1;
  }
  .ie-11 .flex\@xxs-2 {
    flex: auto;
    flex-grow: 2;
  }
  .ie-11 .flex\@xxs-3 {
    flex: auto;
    flex-grow: 3;
  }
  .ie-11 .flex\@xxs-4 {
    flex: auto;
    flex-grow: 4;
  }
  .ie-11 .flex\@xxs-5 {
    flex: auto;
    flex-grow: 5;
  }
  .ie-11 .flex\@xxs-6 {
    flex: auto;
    flex-grow: 6;
  }
  .ie-11 .flex\@xxs-7 {
    flex: auto;
    flex-grow: 7;
  }
  .ie-11 .flex\@xxs-8 {
    flex: auto;
    flex-grow: 8;
  }
  .ie-11 .flex\@xxs-9 {
    flex: auto;
    flex-grow: 9;
  }
  .ie-11 .flex\@xxs-10 {
    flex: auto;
    flex-grow: 10;
  }
  .ie-11 .flex\@xxs-11 {
    flex: auto;
    flex-grow: 11;
  }
  .ie-11 .flex\@xxs-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (max-width: 480px) {
  .list\@xxs-style-none {
    list-style: none;
  }
}
@media (max-width: 480px) {
  .columns\@xxs-0 {
    column-count: 0;
  }
  .columns\@xxs-1 {
    column-count: 1;
  }
  .columns\@xxs-2 {
    column-count: 2;
  }
  .columns\@xxs-3 {
    column-count: 3;
  }
  .columns\@xxs-4 {
    column-count: 4;
  }
  .columns\@xxs-5 {
    column-count: 5;
  }
  .columns\@xxs-6 {
    column-count: 6;
  }
  .columns\@xxs-7 {
    column-count: 7;
  }
  .columns\@xxs-8 {
    column-count: 8;
  }
  .columns\@xxs-9 {
    column-count: 9;
  }
}
@media (max-width: 480px) {
  .overflow\@xxs-auto {
    overflow: auto;
  }
  .overflow\@xxs-y-auto {
    overflow-y: auto;
  }
  .overflow\@xxs-x-auto {
    overflow-x: auto;
  }
  .overflow\@xxs-hidden {
    overflow: hidden;
  }
  .overflow\@xxs-y-hidden {
    overflow-y: hidden;
  }
  .overflow\@xxs-x-hidden {
    overflow-x: hidden;
  }
  .overflow\@xxs-visible {
    overflow: visible;
  }
  .overflow\@xxs-y-visible {
    overflow-y: visible;
  }
  .overflow\@xxs-x-visible {
    overflow-x: visible;
  }
  .overflow\@xxs-scroll {
    overflow: scroll;
  }
  .overflow\@xxs-y-scroll {
    overflow-y: scroll;
  }
  .overflow\@xxs-x-scroll {
    overflow-x: scroll;
  }
  .overflow\@xxs-overlay {
    overflow: overlay;
  }
  .overflow\@xxs-y-overlay {
    overflow-y: overlay;
  }
  .overflow\@xxs-x-overlay {
    overflow-x: overlay;
  }
}
@media (max-width: 480px) {
  .text-overflow\@xxs-clip {
    text-overflow: clip;
  }
  .text-overflow\@xxs-ellipsis {
    text-overflow: ellipsis;
  }
  .text-overflow\@xxs-initial {
    text-overflow: initial;
  }
  .text-overflow\@xxs-inherit {
    text-overflow: inherit;
  }
}
@media (min-width: 480px) {
  .w\@xs-auto {
    width: auto;
  }
  .w\@xs-1 {
    width: 100%;
  }
  .w\@xs-75 {
    width: 75%;
  }
  .w\@xs-50 {
    width: 50%;
  }
  .w\@xs-33 {
    width: 33.3333333333%;
  }
  .w\@xs-25 {
    width: 25%;
  }
  .w\@xs-12 {
    width: 12.5%;
  }

  .wMin\@xs-auto {
    min-width: auto;
  }
  .wMin\@xs-1 {
    min-width: 100%;
  }
  .wMin\@xs-75 {
    min-width: 75%;
  }
  .wMin\@xs-50 {
    min-width: 50%;
  }
  .wMin\@xs-33 {
    min-width: 33.3333333333%;
  }
  .wMin\@xs-25 {
    min-width: 25%;
  }
  .wMin\@xs-12 {
    min-width: 12.5%;
  }

  .wMax\@xs-auto {
    max-width: auto;
  }
  .wMax\@xs-1 {
    max-width: 100%;
  }
  .wMax\@xs-75 {
    max-width: 75%;
  }
  .wMax\@xs-50 {
    max-width: 50%;
  }
  .wMax\@xs-33 {
    max-width: 33.3333333333%;
  }
  .wMax\@xs-25 {
    max-width: 25%;
  }
  .wMax\@xs-12 {
    max-width: 12.5%;
  }

  .h\@xs-auto {
    height: auto;
  }
  .h\@xs-1 {
    height: 100%;
  }
  .h\@xs-75 {
    height: 75%;
  }
  .h\@xs-50 {
    height: 50%;
  }
  .h\@xs-33 {
    height: 33.3333333333%;
  }
  .h\@xs-25 {
    height: 25%;
  }
  .h\@xs-12 {
    height: 12.5%;
  }

  .hMin\@xs-auto {
    min-height: auto;
  }
  .hMin\@xs-1 {
    min-height: 100%;
  }
  .hMin\@xs-75 {
    min-height: 75%;
  }
  .hMin\@xs-50 {
    min-height: 50%;
  }
  .hMin\@xs-33 {
    min-height: 33.3333333333%;
  }
  .hMin\@xs-25 {
    min-height: 25%;
  }
  .hMin\@xs-12 {
    min-height: 12.5%;
  }

  .hMax\@xs-auto {
    max-height: auto;
  }
  .hMax\@xs-1 {
    max-height: 100%;
  }
  .hMax\@xs-75 {
    max-height: 75%;
  }
  .hMax\@xs-50 {
    max-height: 50%;
  }
  .hMax\@xs-33 {
    max-height: 33.3333333333%;
  }
  .hMax\@xs-25 {
    max-height: 25%;
  }
  .hMax\@xs-12 {
    max-height: 12.5%;
  }

  .m\@xs-0.m\@xs-0 {
    margin: 0px;
  }
  .m\@xs-auto.m\@xs-auto {
    margin: auto;
  }
  .mt\@xs-0.mt\@xs-0 {
    margin-top: 0px;
  }
  .mt\@xs-auto.mt\@xs-auto {
    margin-top: auto;
  }
  .mr\@xs-0.mr\@xs-0 {
    margin-right: 0px;
  }
  .mr\@xs-auto.mr\@xs-auto {
    margin-right: auto;
  }
  .mb\@xs-0.mb\@xs-0 {
    margin-bottom: 0px;
  }
  .mb\@xs-auto.mb\@xs-auto {
    margin-bottom: auto;
  }
  .ml\@xs-0.ml\@xs-0 {
    margin-left: 0px;
  }
  .ml\@xs-auto.ml\@xs-auto {
    margin-left: auto;
  }
  .my\@xs-0.my\@xs-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mx\@xs-0.mx\@xs-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .my\@xs-auto.my\@xs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xs-auto.mx\@xs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xs-1.m\@xs-1 {
    margin: 4px;
  }
  .m\@xs-auto.m\@xs-auto {
    margin: auto;
  }
  .mt\@xs-1.mt\@xs-1 {
    margin-top: 4px;
  }
  .mt\@xs-auto.mt\@xs-auto {
    margin-top: auto;
  }
  .mr\@xs-1.mr\@xs-1 {
    margin-right: 4px;
  }
  .mr\@xs-auto.mr\@xs-auto {
    margin-right: auto;
  }
  .mb\@xs-1.mb\@xs-1 {
    margin-bottom: 4px;
  }
  .mb\@xs-auto.mb\@xs-auto {
    margin-bottom: auto;
  }
  .ml\@xs-1.ml\@xs-1 {
    margin-left: 4px;
  }
  .ml\@xs-auto.ml\@xs-auto {
    margin-left: auto;
  }
  .my\@xs-1.my\@xs-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .mx\@xs-1.mx\@xs-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .my\@xs-auto.my\@xs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xs-auto.mx\@xs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xs-2.m\@xs-2 {
    margin: 8px;
  }
  .m\@xs-auto.m\@xs-auto {
    margin: auto;
  }
  .mt\@xs-2.mt\@xs-2 {
    margin-top: 8px;
  }
  .mt\@xs-auto.mt\@xs-auto {
    margin-top: auto;
  }
  .mr\@xs-2.mr\@xs-2 {
    margin-right: 8px;
  }
  .mr\@xs-auto.mr\@xs-auto {
    margin-right: auto;
  }
  .mb\@xs-2.mb\@xs-2 {
    margin-bottom: 8px;
  }
  .mb\@xs-auto.mb\@xs-auto {
    margin-bottom: auto;
  }
  .ml\@xs-2.ml\@xs-2 {
    margin-left: 8px;
  }
  .ml\@xs-auto.ml\@xs-auto {
    margin-left: auto;
  }
  .my\@xs-2.my\@xs-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx\@xs-2.mx\@xs-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .my\@xs-auto.my\@xs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xs-auto.mx\@xs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xs-3.m\@xs-3 {
    margin: 16px;
  }
  .m\@xs-auto.m\@xs-auto {
    margin: auto;
  }
  .mt\@xs-3.mt\@xs-3 {
    margin-top: 16px;
  }
  .mt\@xs-auto.mt\@xs-auto {
    margin-top: auto;
  }
  .mr\@xs-3.mr\@xs-3 {
    margin-right: 16px;
  }
  .mr\@xs-auto.mr\@xs-auto {
    margin-right: auto;
  }
  .mb\@xs-3.mb\@xs-3 {
    margin-bottom: 16px;
  }
  .mb\@xs-auto.mb\@xs-auto {
    margin-bottom: auto;
  }
  .ml\@xs-3.ml\@xs-3 {
    margin-left: 16px;
  }
  .ml\@xs-auto.ml\@xs-auto {
    margin-left: auto;
  }
  .my\@xs-3.my\@xs-3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx\@xs-3.mx\@xs-3 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .my\@xs-auto.my\@xs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xs-auto.mx\@xs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xs-4.m\@xs-4 {
    margin: 32px;
  }
  .m\@xs-auto.m\@xs-auto {
    margin: auto;
  }
  .mt\@xs-4.mt\@xs-4 {
    margin-top: 32px;
  }
  .mt\@xs-auto.mt\@xs-auto {
    margin-top: auto;
  }
  .mr\@xs-4.mr\@xs-4 {
    margin-right: 32px;
  }
  .mr\@xs-auto.mr\@xs-auto {
    margin-right: auto;
  }
  .mb\@xs-4.mb\@xs-4 {
    margin-bottom: 32px;
  }
  .mb\@xs-auto.mb\@xs-auto {
    margin-bottom: auto;
  }
  .ml\@xs-4.ml\@xs-4 {
    margin-left: 32px;
  }
  .ml\@xs-auto.ml\@xs-auto {
    margin-left: auto;
  }
  .my\@xs-4.my\@xs-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx\@xs-4.mx\@xs-4 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .my\@xs-auto.my\@xs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xs-auto.mx\@xs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xs-5.m\@xs-5 {
    margin: 64px;
  }
  .m\@xs-auto.m\@xs-auto {
    margin: auto;
  }
  .mt\@xs-5.mt\@xs-5 {
    margin-top: 64px;
  }
  .mt\@xs-auto.mt\@xs-auto {
    margin-top: auto;
  }
  .mr\@xs-5.mr\@xs-5 {
    margin-right: 64px;
  }
  .mr\@xs-auto.mr\@xs-auto {
    margin-right: auto;
  }
  .mb\@xs-5.mb\@xs-5 {
    margin-bottom: 64px;
  }
  .mb\@xs-auto.mb\@xs-auto {
    margin-bottom: auto;
  }
  .ml\@xs-5.ml\@xs-5 {
    margin-left: 64px;
  }
  .ml\@xs-auto.ml\@xs-auto {
    margin-left: auto;
  }
  .my\@xs-5.my\@xs-5 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx\@xs-5.mx\@xs-5 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .my\@xs-auto.my\@xs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xs-auto.mx\@xs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xs-6.m\@xs-6 {
    margin: 128px;
  }
  .m\@xs-auto.m\@xs-auto {
    margin: auto;
  }
  .mt\@xs-6.mt\@xs-6 {
    margin-top: 128px;
  }
  .mt\@xs-auto.mt\@xs-auto {
    margin-top: auto;
  }
  .mr\@xs-6.mr\@xs-6 {
    margin-right: 128px;
  }
  .mr\@xs-auto.mr\@xs-auto {
    margin-right: auto;
  }
  .mb\@xs-6.mb\@xs-6 {
    margin-bottom: 128px;
  }
  .mb\@xs-auto.mb\@xs-auto {
    margin-bottom: auto;
  }
  .ml\@xs-6.ml\@xs-6 {
    margin-left: 128px;
  }
  .ml\@xs-auto.ml\@xs-auto {
    margin-left: auto;
  }
  .my\@xs-6.my\@xs-6 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx\@xs-6.mx\@xs-6 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .my\@xs-auto.my\@xs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xs-auto.mx\@xs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xs-7.m\@xs-7 {
    margin: 256px;
  }
  .m\@xs-auto.m\@xs-auto {
    margin: auto;
  }
  .mt\@xs-7.mt\@xs-7 {
    margin-top: 256px;
  }
  .mt\@xs-auto.mt\@xs-auto {
    margin-top: auto;
  }
  .mr\@xs-7.mr\@xs-7 {
    margin-right: 256px;
  }
  .mr\@xs-auto.mr\@xs-auto {
    margin-right: auto;
  }
  .mb\@xs-7.mb\@xs-7 {
    margin-bottom: 256px;
  }
  .mb\@xs-auto.mb\@xs-auto {
    margin-bottom: auto;
  }
  .ml\@xs-7.ml\@xs-7 {
    margin-left: 256px;
  }
  .ml\@xs-auto.ml\@xs-auto {
    margin-left: auto;
  }
  .my\@xs-7.my\@xs-7 {
    margin-top: 256px;
    margin-bottom: 256px;
  }
  .mx\@xs-7.mx\@xs-7 {
    margin-right: 256px;
    margin-left: 256px;
  }
  .my\@xs-auto.my\@xs-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xs-auto.mx\@xs-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .p\@xs-0.p\@xs-0 {
    padding: 0px;
  }
  .p\@xs-auto.p\@xs-auto {
    padding: auto;
  }
  .pt\@xs-0.pt\@xs-0 {
    padding-top: 0px;
  }
  .pt\@xs-auto.pt\@xs-auto {
    padding-top: auto;
  }
  .pr\@xs-0.pr\@xs-0 {
    padding-right: 0px;
  }
  .pr\@xs-auto.pr\@xs-auto {
    padding-right: auto;
  }
  .pb\@xs-0.pb\@xs-0 {
    padding-bottom: 0px;
  }
  .pb\@xs-auto.pb\@xs-auto {
    padding-bottom: auto;
  }
  .pl\@xs-0.pl\@xs-0 {
    padding-left: 0px;
  }
  .pl\@xs-auto.pl\@xs-auto {
    padding-left: auto;
  }
  .py\@xs-0.py\@xs-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .px\@xs-0.px\@xs-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .py\@xs-auto.py\@xs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xs-auto.px\@xs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xs-1.p\@xs-1 {
    padding: 4px;
  }
  .p\@xs-auto.p\@xs-auto {
    padding: auto;
  }
  .pt\@xs-1.pt\@xs-1 {
    padding-top: 4px;
  }
  .pt\@xs-auto.pt\@xs-auto {
    padding-top: auto;
  }
  .pr\@xs-1.pr\@xs-1 {
    padding-right: 4px;
  }
  .pr\@xs-auto.pr\@xs-auto {
    padding-right: auto;
  }
  .pb\@xs-1.pb\@xs-1 {
    padding-bottom: 4px;
  }
  .pb\@xs-auto.pb\@xs-auto {
    padding-bottom: auto;
  }
  .pl\@xs-1.pl\@xs-1 {
    padding-left: 4px;
  }
  .pl\@xs-auto.pl\@xs-auto {
    padding-left: auto;
  }
  .py\@xs-1.py\@xs-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .px\@xs-1.px\@xs-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .py\@xs-auto.py\@xs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xs-auto.px\@xs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xs-2.p\@xs-2 {
    padding: 8px;
  }
  .p\@xs-auto.p\@xs-auto {
    padding: auto;
  }
  .pt\@xs-2.pt\@xs-2 {
    padding-top: 8px;
  }
  .pt\@xs-auto.pt\@xs-auto {
    padding-top: auto;
  }
  .pr\@xs-2.pr\@xs-2 {
    padding-right: 8px;
  }
  .pr\@xs-auto.pr\@xs-auto {
    padding-right: auto;
  }
  .pb\@xs-2.pb\@xs-2 {
    padding-bottom: 8px;
  }
  .pb\@xs-auto.pb\@xs-auto {
    padding-bottom: auto;
  }
  .pl\@xs-2.pl\@xs-2 {
    padding-left: 8px;
  }
  .pl\@xs-auto.pl\@xs-auto {
    padding-left: auto;
  }
  .py\@xs-2.py\@xs-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px\@xs-2.px\@xs-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .py\@xs-auto.py\@xs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xs-auto.px\@xs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xs-3.p\@xs-3 {
    padding: 16px;
  }
  .p\@xs-auto.p\@xs-auto {
    padding: auto;
  }
  .pt\@xs-3.pt\@xs-3 {
    padding-top: 16px;
  }
  .pt\@xs-auto.pt\@xs-auto {
    padding-top: auto;
  }
  .pr\@xs-3.pr\@xs-3 {
    padding-right: 16px;
  }
  .pr\@xs-auto.pr\@xs-auto {
    padding-right: auto;
  }
  .pb\@xs-3.pb\@xs-3 {
    padding-bottom: 16px;
  }
  .pb\@xs-auto.pb\@xs-auto {
    padding-bottom: auto;
  }
  .pl\@xs-3.pl\@xs-3 {
    padding-left: 16px;
  }
  .pl\@xs-auto.pl\@xs-auto {
    padding-left: auto;
  }
  .py\@xs-3.py\@xs-3 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px\@xs-3.px\@xs-3 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .py\@xs-auto.py\@xs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xs-auto.px\@xs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xs-4.p\@xs-4 {
    padding: 32px;
  }
  .p\@xs-auto.p\@xs-auto {
    padding: auto;
  }
  .pt\@xs-4.pt\@xs-4 {
    padding-top: 32px;
  }
  .pt\@xs-auto.pt\@xs-auto {
    padding-top: auto;
  }
  .pr\@xs-4.pr\@xs-4 {
    padding-right: 32px;
  }
  .pr\@xs-auto.pr\@xs-auto {
    padding-right: auto;
  }
  .pb\@xs-4.pb\@xs-4 {
    padding-bottom: 32px;
  }
  .pb\@xs-auto.pb\@xs-auto {
    padding-bottom: auto;
  }
  .pl\@xs-4.pl\@xs-4 {
    padding-left: 32px;
  }
  .pl\@xs-auto.pl\@xs-auto {
    padding-left: auto;
  }
  .py\@xs-4.py\@xs-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px\@xs-4.px\@xs-4 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .py\@xs-auto.py\@xs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xs-auto.px\@xs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xs-5.p\@xs-5 {
    padding: 64px;
  }
  .p\@xs-auto.p\@xs-auto {
    padding: auto;
  }
  .pt\@xs-5.pt\@xs-5 {
    padding-top: 64px;
  }
  .pt\@xs-auto.pt\@xs-auto {
    padding-top: auto;
  }
  .pr\@xs-5.pr\@xs-5 {
    padding-right: 64px;
  }
  .pr\@xs-auto.pr\@xs-auto {
    padding-right: auto;
  }
  .pb\@xs-5.pb\@xs-5 {
    padding-bottom: 64px;
  }
  .pb\@xs-auto.pb\@xs-auto {
    padding-bottom: auto;
  }
  .pl\@xs-5.pl\@xs-5 {
    padding-left: 64px;
  }
  .pl\@xs-auto.pl\@xs-auto {
    padding-left: auto;
  }
  .py\@xs-5.py\@xs-5 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px\@xs-5.px\@xs-5 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .py\@xs-auto.py\@xs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xs-auto.px\@xs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xs-6.p\@xs-6 {
    padding: 128px;
  }
  .p\@xs-auto.p\@xs-auto {
    padding: auto;
  }
  .pt\@xs-6.pt\@xs-6 {
    padding-top: 128px;
  }
  .pt\@xs-auto.pt\@xs-auto {
    padding-top: auto;
  }
  .pr\@xs-6.pr\@xs-6 {
    padding-right: 128px;
  }
  .pr\@xs-auto.pr\@xs-auto {
    padding-right: auto;
  }
  .pb\@xs-6.pb\@xs-6 {
    padding-bottom: 128px;
  }
  .pb\@xs-auto.pb\@xs-auto {
    padding-bottom: auto;
  }
  .pl\@xs-6.pl\@xs-6 {
    padding-left: 128px;
  }
  .pl\@xs-auto.pl\@xs-auto {
    padding-left: auto;
  }
  .py\@xs-6.py\@xs-6 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px\@xs-6.px\@xs-6 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py\@xs-auto.py\@xs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xs-auto.px\@xs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xs-7.p\@xs-7 {
    padding: 256px;
  }
  .p\@xs-auto.p\@xs-auto {
    padding: auto;
  }
  .pt\@xs-7.pt\@xs-7 {
    padding-top: 256px;
  }
  .pt\@xs-auto.pt\@xs-auto {
    padding-top: auto;
  }
  .pr\@xs-7.pr\@xs-7 {
    padding-right: 256px;
  }
  .pr\@xs-auto.pr\@xs-auto {
    padding-right: auto;
  }
  .pb\@xs-7.pb\@xs-7 {
    padding-bottom: 256px;
  }
  .pb\@xs-auto.pb\@xs-auto {
    padding-bottom: auto;
  }
  .pl\@xs-7.pl\@xs-7 {
    padding-left: 256px;
  }
  .pl\@xs-auto.pl\@xs-auto {
    padding-left: auto;
  }
  .py\@xs-7.py\@xs-7 {
    padding-top: 256px;
    padding-bottom: 256px;
  }
  .px\@xs-7.px\@xs-7 {
    padding-right: 256px;
    padding-left: 256px;
  }
  .py\@xs-auto.py\@xs-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xs-auto.px\@xs-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .border-none {
    border-style: none;
  }
  .border-dotted {
    border-style: dotted;
  }
  .border-dashed {
    border-style: dashed;
  }
  .border-solid {
    border-style: solid;
  }
  .border-double {
    border-style: double;
  }
  .border-groove {
    border-style: groove;
  }
  .border-ridge {
    border-style: ridge;
  }
  .border-inset {
    border-style: inset;
  }
  .border-outset {
    border-style: outset;
  }
  .border\@xs {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-top {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-top-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-top-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-top-none {
    border-top-style: none;
  }
  .border\@xs-top-dotted {
    border-top-style: dotted;
  }
  .border\@xs-top-dashed {
    border-top-style: dashed;
  }
  .border\@xs-top-solid {
    border-top-style: solid;
  }
  .border\@xs-top-double {
    border-top-style: double;
  }
  .border\@xs-top-groove {
    border-top-style: groove;
  }
  .border\@xs-top-ridge {
    border-top-style: ridge;
  }
  .border\@xs-top-inset {
    border-top-style: inset;
  }
  .border\@xs-top-outset {
    border-top-style: outset;
  }
  .border\@xs-top-thin {
    border-top-width: thin;
  }
  .border\@xs-top-medium {
    border-top-width: medium;
  }
  .border\@xs-top-thick {
    border-top-width: thick;
  }
  .border\@xs {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-right {
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-right-light {
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-right-dark {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-right-none {
    border-right-style: none;
  }
  .border\@xs-right-dotted {
    border-right-style: dotted;
  }
  .border\@xs-right-dashed {
    border-right-style: dashed;
  }
  .border\@xs-right-solid {
    border-right-style: solid;
  }
  .border\@xs-right-double {
    border-right-style: double;
  }
  .border\@xs-right-groove {
    border-right-style: groove;
  }
  .border\@xs-right-ridge {
    border-right-style: ridge;
  }
  .border\@xs-right-inset {
    border-right-style: inset;
  }
  .border\@xs-right-outset {
    border-right-style: outset;
  }
  .border\@xs-right-thin {
    border-right-width: thin;
  }
  .border\@xs-right-medium {
    border-right-width: medium;
  }
  .border\@xs-right-thick {
    border-right-width: thick;
  }
  .border\@xs {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-bottom-dark {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-bottom-none {
    border-bottom-style: none;
  }
  .border\@xs-bottom-dotted {
    border-bottom-style: dotted;
  }
  .border\@xs-bottom-dashed {
    border-bottom-style: dashed;
  }
  .border\@xs-bottom-solid {
    border-bottom-style: solid;
  }
  .border\@xs-bottom-double {
    border-bottom-style: double;
  }
  .border\@xs-bottom-groove {
    border-bottom-style: groove;
  }
  .border\@xs-bottom-ridge {
    border-bottom-style: ridge;
  }
  .border\@xs-bottom-inset {
    border-bottom-style: inset;
  }
  .border\@xs-bottom-outset {
    border-bottom-style: outset;
  }
  .border\@xs-bottom-thin {
    border-bottom-width: thin;
  }
  .border\@xs-bottom-medium {
    border-bottom-width: medium;
  }
  .border\@xs-bottom-thick {
    border-bottom-width: thick;
  }
  .border\@xs {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-left {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-left-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-left-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-left-none {
    border-left-style: none;
  }
  .border\@xs-left-dotted {
    border-left-style: dotted;
  }
  .border\@xs-left-dashed {
    border-left-style: dashed;
  }
  .border\@xs-left-solid {
    border-left-style: solid;
  }
  .border\@xs-left-double {
    border-left-style: double;
  }
  .border\@xs-left-groove {
    border-left-style: groove;
  }
  .border\@xs-left-ridge {
    border-left-style: ridge;
  }
  .border\@xs-left-inset {
    border-left-style: inset;
  }
  .border\@xs-left-outset {
    border-left-style: outset;
  }
  .border\@xs-left-thin {
    border-left-width: thin;
  }
  .border\@xs-left-medium {
    border-left-width: medium;
  }
  .border\@xs-left-thick {
    border-left-width: thick;
  }
  .border\@xs-y {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-y-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-y-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-x {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xs-x-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xs-x-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xs-radius {
    border-radius: 4px;
  }
  .border\@xs-radius-top-left {
    border-top-left-radius: 4px;
  }
  .border\@xs-radius-top-right {
    border-top-right-radius: 4px;
  }
  .border\@xs-radius-bottom-left {
    border-bottom-left-radius: 4px;
  }
  .border\@xs-radius-bottom-right {
    border-bottom-right-radius: 4px;
  }

  .font-style\@xs-oblique {
    font-style: oblique;
  }

  .font-style\@xs-italic {
    font-style: italic;
  }

  .font\@xs-ui {
    font-family: "Noto Sans", sans-serif !important;
  }

  .font\@xs-content {
    font-family: "Brill", "Georgia", serif !important;
  }

  .font\@xs-header {
    font-family: "Brill", "Georgia", serif !important;
  }

  .fw\@xs-1 {
    font-weight: 300 !important;
  }

  .fw\@xs-2 {
    font-weight: 400 !important;
  }

  .fw\@xs-3 {
    font-weight: 500 !important;
  }

  .fw\@xs-4 {
    font-weight: 600 !important;
  }

  .f\@xs-1 {
    font-size: 0.875rem !important;
  }

  .f\@xs-2 {
    font-size: 1rem !important;
  }

  .f\@xs-3 {
    font-size: 1.125rem !important;
  }

  .f\@xs-4 {
    font-size: 1.5rem !important;
  }

  .f\@xs-5 {
    font-size: 1.75rem !important;
  }

  .f\@xs-6 {
    font-size: 2.125rem !important;
  }

  .f\@xs-7 {
    font-size: 2.8125rem !important;
  }

  .f\@xs-8 {
    font-size: 1.125rem !important;
  }

  .f\@xs-9 {
    font-size: 3.5rem !important;
  }

  .f\@xs-10 {
    font-size: 5rem !important;
  }

  .ln\@xs-1 {
    line-height: 1.125rem !important;
  }

  .ln\@xs-2 {
    line-height: 1.25rem !important;
  }

  .ln\@xs-3 {
    line-height: 1.5rem !important;
  }

  .ln\@xs-4 {
    line-height: 1.75rem !important;
  }

  .ln\@xs-5 {
    line-height: 2rem !important;
  }

  .ln\@xs-6 {
    line-height: 2.125rem !important;
  }

  .ln\@xs-7 {
    line-height: 3rem !important;
  }

  .ln\@xs-8 {
    line-height: 4.5rem !important;
  }

  .ln\@xs-9 {
    line-height: 5.5rem !important;
  }

  .ln\@xs-10 {
    line-height: 6.5rem !important;
  }

  .text\@xs-left, .text-align\@xs-left {
    text-align: left;
  }
  .text\@xs-center, .text-align\@xs-center {
    text-align: center;
  }
  .text\@xs-right, .text-align\@xs-right {
    text-align: right;
  }
  .text\@xs-justify, .text-align\@xs-justify {
    text-align: justify;
  }
  .text\@xs-nowrap, .text-align\@xs-nowrap {
    white-space: nowrap;
  }
  .text\@xs-wrap, .text-align\@xs-wrap {
    white-space: wrap;
  }
  .text\@xs-pre, .text-align\@xs-pre {
    white-space: pre;
  }
  .text\@xs-pre-line, .text-align\@xs-pre-line {
    white-space: pre-line;
  }
  .text\@xs-pre-wrap, .text-align\@xs-pre-wrap {
    white-space: pre-wrap;
  }

  .text-transform\@xs-uppercase {
    text-transform: uppercase;
  }

  .text-transform\@xs-lowercase {
    text-transform: lowercase;
  }

  .text-transform\@xs-capitalize {
    text-transform: capitalize;
  }

  .text-transform\@xs-none {
    text-transform: none;
  }

  .display\@xs-none.display\@xs-none,
.hidden\@xs.hidden\@xs {
    display: none;
  }

  .display\@xs-inline.display\@xs-inline,
.inline\@xs.inline\@xs {
    display: inline;
  }

  .display\@xs-inline-block.display\@xs-inline-block, .inline-block\@xs.inline-block\@xs {
    display: inline-block;
  }

  .display\@xs-inline-flex.display\@xs-inline-flex {
    display: inline-flex;
  }

  .display\@xs-block.display\@xs-block,
.block\@xs.block\@xs {
    display: block;
  }

  .display\@xs-flex.display\@xs-flex {
    display: flex;
  }

  .display\@xs-table.display\@xs-table {
    display: table;
  }

  .display\@xs-contents.display\@xs-contents {
    display: contents;
  }

  .display\@xs-before-block.display\@xs-before-block:before,
.before-block\@xs.before-block\@xs:before {
    content: "";
    display: block;
  }

  .position\@xs-relative.position\@xs-relative {
    position: relative;
  }

  .position\@xs-fixed.position\@xs-fixed,
.display\@xs-fixed.display\@xs-fixed,
.fixed\@xs.fixed\@xs {
    position: fixed;
    visibility: visible;
    z-index: 99;
  }

  .position\@xs-absolute.position\@xs-absolute,
.display\@xs-absolute.display\@xs-absolute,
.absolute\@xs.absolute\@xs {
    position: absolute;
    visibility: visible;
  }

  .position\@xs-sticky.position\@xs-sticky,
.display\@xs-sticky.display\@xs-sticky,
.sticky\@xs.sticky\@xs {
    position: -webkit-sticky;
    position: sticky;
    visibility: visible;
  }

  .position\@xs-sticky-top.position\@xs-sticky-top,
.display\@xs-sticky-top.display\@xs-sticky-top,
.sticky-top\@xs.sticky-top\@xs {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    visibility: visible;
  }

  .position\@xs-sticky-bottom.position\@xs-sticky-bottom,
.display\@xs-sticky-bottom.display\@xs-sticky-bottom,
.sticky-bottom\@xs.sticky-bottom\@xs {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    visibility: visible;
  }

  .visibility\@xs-visible {
    visibility: visible;
  }

  .visibility\@xs-hidden {
    visibility: hidden;
  }

  .flex\@xs.flex\@xs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex\@xs-inline.flex\@xs-inline {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex\@xs-col.flex\@xs-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex\@xs-col-reverse.flex\@xs-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex\@xs-row.flex\@xs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex\@xs-row-reverse.flex\@xs-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex\@xs-wrap.flex\@xs-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex\@xs-nowrap.flex\@xs-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex\@xs-align-stretch.flex\@xs-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex\@xs-align-center.flex\@xs-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex\@xs-align-start.flex\@xs-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex\@xs-align-end.flex\@xs-align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex\@xs-align-self-stretch.flex\@xs-align-self-stretch {
    align-self: stretch;
  }
  .flex\@xs-align-self-center.flex\@xs-align-self-center {
    align-self: center;
  }
  .flex\@xs-align-self-start.flex\@xs-align-self-start {
    align-self: flex-start;
  }
  .flex\@xs-align-self-end.flex\@xs-align-self-end {
    align-self: flex-end;
  }
  .flex\@xs-justify-start.flex\@xs-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex\@xs-justify-end.flex\@xs-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex\@xs-justify-center.flex\@xs-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex\@xs-justify-btw.flex\@xs-justify-btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex\@xs-justify-around.flex\@xs-justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex\@xs-justify-self-start.flex\@xs-justify-self-start {
    justify-self: flex-start;
  }
  .flex\@xs-justify-self-end.flex\@xs-justify-self-end {
    justify-self: flex-end;
  }
  .flex\@xs-justify-self-center.flex\@xs-justify-self-center {
    justify-self: center;
  }
  .flex\@xs-justify-self-btw.flex\@xs-justify-self-btw {
    justify-self: space-between;
  }
  .flex\@xs-justify-self-around.flex\@xs-justify-self-around {
    justify-self: space-around;
  }
  .flex\@xs-1 {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex\@xs-order-1 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex\@xs-2 {
    min-width: 0;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .flex\@xs-order-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex\@xs-3 {
    min-width: 0;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
  }
  .flex\@xs-order-3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .flex\@xs-4 {
    min-width: 0;
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
  .flex\@xs-order-4 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .flex\@xs-5 {
    min-width: 0;
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
  }
  .flex\@xs-order-5 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .flex\@xs-6 {
    min-width: 0;
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
  .flex\@xs-order-6 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .flex\@xs-7 {
    min-width: 0;
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7;
  }
  .flex\@xs-order-7 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .flex\@xs-8 {
    min-width: 0;
    -webkit-box-flex: 8;
    -ms-flex: 8;
    flex: 8;
  }
  .flex\@xs-order-8 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .flex\@xs-9 {
    min-width: 0;
    -webkit-box-flex: 9;
    -ms-flex: 9;
    flex: 9;
  }
  .flex\@xs-order-9 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .flex\@xs-10 {
    min-width: 0;
    -webkit-box-flex: 10;
    -ms-flex: 10;
    flex: 10;
  }
  .flex\@xs-order-10 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .flex\@xs-11 {
    min-width: 0;
    -webkit-box-flex: 11;
    -ms-flex: 11;
    flex: 11;
  }
  .flex\@xs-order-11 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .flex\@xs-12 {
    min-width: 0;
    -webkit-box-flex: 12;
    -ms-flex: 12;
    flex: 12;
  }
  .flex\@xs-order-12 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media all and (min-width: 480px) and (-ms-high-contrast: none) {
  .flex\@xs-1 {
    flex: auto;
    flex-grow: 1;
  }
  .flex\@xs-2 {
    flex: auto;
    flex-grow: 2;
  }
  .flex\@xs-3 {
    flex: auto;
    flex-grow: 3;
  }
  .flex\@xs-4 {
    flex: auto;
    flex-grow: 4;
  }
  .flex\@xs-5 {
    flex: auto;
    flex-grow: 5;
  }
  .flex\@xs-6 {
    flex: auto;
    flex-grow: 6;
  }
  .flex\@xs-7 {
    flex: auto;
    flex-grow: 7;
  }
  .flex\@xs-8 {
    flex: auto;
    flex-grow: 8;
  }
  .flex\@xs-9 {
    flex: auto;
    flex-grow: 9;
  }
  .flex\@xs-10 {
    flex: auto;
    flex-grow: 10;
  }
  .flex\@xs-11 {
    flex: auto;
    flex-grow: 11;
  }
  .flex\@xs-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 480px) {
  .ie-11 .flex\@xs-1 {
    flex: auto;
    flex-grow: 1;
  }
  .ie-11 .flex\@xs-2 {
    flex: auto;
    flex-grow: 2;
  }
  .ie-11 .flex\@xs-3 {
    flex: auto;
    flex-grow: 3;
  }
  .ie-11 .flex\@xs-4 {
    flex: auto;
    flex-grow: 4;
  }
  .ie-11 .flex\@xs-5 {
    flex: auto;
    flex-grow: 5;
  }
  .ie-11 .flex\@xs-6 {
    flex: auto;
    flex-grow: 6;
  }
  .ie-11 .flex\@xs-7 {
    flex: auto;
    flex-grow: 7;
  }
  .ie-11 .flex\@xs-8 {
    flex: auto;
    flex-grow: 8;
  }
  .ie-11 .flex\@xs-9 {
    flex: auto;
    flex-grow: 9;
  }
  .ie-11 .flex\@xs-10 {
    flex: auto;
    flex-grow: 10;
  }
  .ie-11 .flex\@xs-11 {
    flex: auto;
    flex-grow: 11;
  }
  .ie-11 .flex\@xs-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 480px) {
  .list\@xs-style-none {
    list-style: none;
  }
}
@media (min-width: 480px) {
  .columns\@xs-0 {
    column-count: 0;
  }
  .columns\@xs-1 {
    column-count: 1;
  }
  .columns\@xs-2 {
    column-count: 2;
  }
  .columns\@xs-3 {
    column-count: 3;
  }
  .columns\@xs-4 {
    column-count: 4;
  }
  .columns\@xs-5 {
    column-count: 5;
  }
  .columns\@xs-6 {
    column-count: 6;
  }
  .columns\@xs-7 {
    column-count: 7;
  }
  .columns\@xs-8 {
    column-count: 8;
  }
  .columns\@xs-9 {
    column-count: 9;
  }
}
@media (min-width: 480px) {
  .overflow\@xs-auto {
    overflow: auto;
  }
  .overflow\@xs-y-auto {
    overflow-y: auto;
  }
  .overflow\@xs-x-auto {
    overflow-x: auto;
  }
  .overflow\@xs-hidden {
    overflow: hidden;
  }
  .overflow\@xs-y-hidden {
    overflow-y: hidden;
  }
  .overflow\@xs-x-hidden {
    overflow-x: hidden;
  }
  .overflow\@xs-visible {
    overflow: visible;
  }
  .overflow\@xs-y-visible {
    overflow-y: visible;
  }
  .overflow\@xs-x-visible {
    overflow-x: visible;
  }
  .overflow\@xs-scroll {
    overflow: scroll;
  }
  .overflow\@xs-y-scroll {
    overflow-y: scroll;
  }
  .overflow\@xs-x-scroll {
    overflow-x: scroll;
  }
  .overflow\@xs-overlay {
    overflow: overlay;
  }
  .overflow\@xs-y-overlay {
    overflow-y: overlay;
  }
  .overflow\@xs-x-overlay {
    overflow-x: overlay;
  }
}
@media (min-width: 480px) {
  .text-overflow\@xs-clip {
    text-overflow: clip;
  }
  .text-overflow\@xs-ellipsis {
    text-overflow: ellipsis;
  }
  .text-overflow\@xs-initial {
    text-overflow: initial;
  }
  .text-overflow\@xs-inherit {
    text-overflow: inherit;
  }
}
@media (min-width: 768px) {
  .w\@sm-auto {
    width: auto;
  }
  .w\@sm-1 {
    width: 100%;
  }
  .w\@sm-75 {
    width: 75%;
  }
  .w\@sm-50 {
    width: 50%;
  }
  .w\@sm-33 {
    width: 33.3333333333%;
  }
  .w\@sm-25 {
    width: 25%;
  }
  .w\@sm-12 {
    width: 12.5%;
  }

  .wMin\@sm-auto {
    min-width: auto;
  }
  .wMin\@sm-1 {
    min-width: 100%;
  }
  .wMin\@sm-75 {
    min-width: 75%;
  }
  .wMin\@sm-50 {
    min-width: 50%;
  }
  .wMin\@sm-33 {
    min-width: 33.3333333333%;
  }
  .wMin\@sm-25 {
    min-width: 25%;
  }
  .wMin\@sm-12 {
    min-width: 12.5%;
  }

  .wMax\@sm-auto {
    max-width: auto;
  }
  .wMax\@sm-1 {
    max-width: 100%;
  }
  .wMax\@sm-75 {
    max-width: 75%;
  }
  .wMax\@sm-50 {
    max-width: 50%;
  }
  .wMax\@sm-33 {
    max-width: 33.3333333333%;
  }
  .wMax\@sm-25 {
    max-width: 25%;
  }
  .wMax\@sm-12 {
    max-width: 12.5%;
  }

  .h\@sm-auto {
    height: auto;
  }
  .h\@sm-1 {
    height: 100%;
  }
  .h\@sm-75 {
    height: 75%;
  }
  .h\@sm-50 {
    height: 50%;
  }
  .h\@sm-33 {
    height: 33.3333333333%;
  }
  .h\@sm-25 {
    height: 25%;
  }
  .h\@sm-12 {
    height: 12.5%;
  }

  .hMin\@sm-auto {
    min-height: auto;
  }
  .hMin\@sm-1 {
    min-height: 100%;
  }
  .hMin\@sm-75 {
    min-height: 75%;
  }
  .hMin\@sm-50 {
    min-height: 50%;
  }
  .hMin\@sm-33 {
    min-height: 33.3333333333%;
  }
  .hMin\@sm-25 {
    min-height: 25%;
  }
  .hMin\@sm-12 {
    min-height: 12.5%;
  }

  .hMax\@sm-auto {
    max-height: auto;
  }
  .hMax\@sm-1 {
    max-height: 100%;
  }
  .hMax\@sm-75 {
    max-height: 75%;
  }
  .hMax\@sm-50 {
    max-height: 50%;
  }
  .hMax\@sm-33 {
    max-height: 33.3333333333%;
  }
  .hMax\@sm-25 {
    max-height: 25%;
  }
  .hMax\@sm-12 {
    max-height: 12.5%;
  }

  .m\@sm-0.m\@sm-0 {
    margin: 0px;
  }
  .m\@sm-auto.m\@sm-auto {
    margin: auto;
  }
  .mt\@sm-0.mt\@sm-0 {
    margin-top: 0px;
  }
  .mt\@sm-auto.mt\@sm-auto {
    margin-top: auto;
  }
  .mr\@sm-0.mr\@sm-0 {
    margin-right: 0px;
  }
  .mr\@sm-auto.mr\@sm-auto {
    margin-right: auto;
  }
  .mb\@sm-0.mb\@sm-0 {
    margin-bottom: 0px;
  }
  .mb\@sm-auto.mb\@sm-auto {
    margin-bottom: auto;
  }
  .ml\@sm-0.ml\@sm-0 {
    margin-left: 0px;
  }
  .ml\@sm-auto.ml\@sm-auto {
    margin-left: auto;
  }
  .my\@sm-0.my\@sm-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mx\@sm-0.mx\@sm-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .my\@sm-auto.my\@sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@sm-auto.mx\@sm-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@sm-1.m\@sm-1 {
    margin: 4px;
  }
  .m\@sm-auto.m\@sm-auto {
    margin: auto;
  }
  .mt\@sm-1.mt\@sm-1 {
    margin-top: 4px;
  }
  .mt\@sm-auto.mt\@sm-auto {
    margin-top: auto;
  }
  .mr\@sm-1.mr\@sm-1 {
    margin-right: 4px;
  }
  .mr\@sm-auto.mr\@sm-auto {
    margin-right: auto;
  }
  .mb\@sm-1.mb\@sm-1 {
    margin-bottom: 4px;
  }
  .mb\@sm-auto.mb\@sm-auto {
    margin-bottom: auto;
  }
  .ml\@sm-1.ml\@sm-1 {
    margin-left: 4px;
  }
  .ml\@sm-auto.ml\@sm-auto {
    margin-left: auto;
  }
  .my\@sm-1.my\@sm-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .mx\@sm-1.mx\@sm-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .my\@sm-auto.my\@sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@sm-auto.mx\@sm-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@sm-2.m\@sm-2 {
    margin: 8px;
  }
  .m\@sm-auto.m\@sm-auto {
    margin: auto;
  }
  .mt\@sm-2.mt\@sm-2 {
    margin-top: 8px;
  }
  .mt\@sm-auto.mt\@sm-auto {
    margin-top: auto;
  }
  .mr\@sm-2.mr\@sm-2 {
    margin-right: 8px;
  }
  .mr\@sm-auto.mr\@sm-auto {
    margin-right: auto;
  }
  .mb\@sm-2.mb\@sm-2 {
    margin-bottom: 8px;
  }
  .mb\@sm-auto.mb\@sm-auto {
    margin-bottom: auto;
  }
  .ml\@sm-2.ml\@sm-2 {
    margin-left: 8px;
  }
  .ml\@sm-auto.ml\@sm-auto {
    margin-left: auto;
  }
  .my\@sm-2.my\@sm-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx\@sm-2.mx\@sm-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .my\@sm-auto.my\@sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@sm-auto.mx\@sm-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@sm-3.m\@sm-3 {
    margin: 16px;
  }
  .m\@sm-auto.m\@sm-auto {
    margin: auto;
  }
  .mt\@sm-3.mt\@sm-3 {
    margin-top: 16px;
  }
  .mt\@sm-auto.mt\@sm-auto {
    margin-top: auto;
  }
  .mr\@sm-3.mr\@sm-3 {
    margin-right: 16px;
  }
  .mr\@sm-auto.mr\@sm-auto {
    margin-right: auto;
  }
  .mb\@sm-3.mb\@sm-3 {
    margin-bottom: 16px;
  }
  .mb\@sm-auto.mb\@sm-auto {
    margin-bottom: auto;
  }
  .ml\@sm-3.ml\@sm-3 {
    margin-left: 16px;
  }
  .ml\@sm-auto.ml\@sm-auto {
    margin-left: auto;
  }
  .my\@sm-3.my\@sm-3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx\@sm-3.mx\@sm-3 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .my\@sm-auto.my\@sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@sm-auto.mx\@sm-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@sm-4.m\@sm-4 {
    margin: 32px;
  }
  .m\@sm-auto.m\@sm-auto {
    margin: auto;
  }
  .mt\@sm-4.mt\@sm-4 {
    margin-top: 32px;
  }
  .mt\@sm-auto.mt\@sm-auto {
    margin-top: auto;
  }
  .mr\@sm-4.mr\@sm-4 {
    margin-right: 32px;
  }
  .mr\@sm-auto.mr\@sm-auto {
    margin-right: auto;
  }
  .mb\@sm-4.mb\@sm-4 {
    margin-bottom: 32px;
  }
  .mb\@sm-auto.mb\@sm-auto {
    margin-bottom: auto;
  }
  .ml\@sm-4.ml\@sm-4 {
    margin-left: 32px;
  }
  .ml\@sm-auto.ml\@sm-auto {
    margin-left: auto;
  }
  .my\@sm-4.my\@sm-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx\@sm-4.mx\@sm-4 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .my\@sm-auto.my\@sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@sm-auto.mx\@sm-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@sm-5.m\@sm-5 {
    margin: 64px;
  }
  .m\@sm-auto.m\@sm-auto {
    margin: auto;
  }
  .mt\@sm-5.mt\@sm-5 {
    margin-top: 64px;
  }
  .mt\@sm-auto.mt\@sm-auto {
    margin-top: auto;
  }
  .mr\@sm-5.mr\@sm-5 {
    margin-right: 64px;
  }
  .mr\@sm-auto.mr\@sm-auto {
    margin-right: auto;
  }
  .mb\@sm-5.mb\@sm-5 {
    margin-bottom: 64px;
  }
  .mb\@sm-auto.mb\@sm-auto {
    margin-bottom: auto;
  }
  .ml\@sm-5.ml\@sm-5 {
    margin-left: 64px;
  }
  .ml\@sm-auto.ml\@sm-auto {
    margin-left: auto;
  }
  .my\@sm-5.my\@sm-5 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx\@sm-5.mx\@sm-5 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .my\@sm-auto.my\@sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@sm-auto.mx\@sm-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@sm-6.m\@sm-6 {
    margin: 128px;
  }
  .m\@sm-auto.m\@sm-auto {
    margin: auto;
  }
  .mt\@sm-6.mt\@sm-6 {
    margin-top: 128px;
  }
  .mt\@sm-auto.mt\@sm-auto {
    margin-top: auto;
  }
  .mr\@sm-6.mr\@sm-6 {
    margin-right: 128px;
  }
  .mr\@sm-auto.mr\@sm-auto {
    margin-right: auto;
  }
  .mb\@sm-6.mb\@sm-6 {
    margin-bottom: 128px;
  }
  .mb\@sm-auto.mb\@sm-auto {
    margin-bottom: auto;
  }
  .ml\@sm-6.ml\@sm-6 {
    margin-left: 128px;
  }
  .ml\@sm-auto.ml\@sm-auto {
    margin-left: auto;
  }
  .my\@sm-6.my\@sm-6 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx\@sm-6.mx\@sm-6 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .my\@sm-auto.my\@sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@sm-auto.mx\@sm-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@sm-7.m\@sm-7 {
    margin: 256px;
  }
  .m\@sm-auto.m\@sm-auto {
    margin: auto;
  }
  .mt\@sm-7.mt\@sm-7 {
    margin-top: 256px;
  }
  .mt\@sm-auto.mt\@sm-auto {
    margin-top: auto;
  }
  .mr\@sm-7.mr\@sm-7 {
    margin-right: 256px;
  }
  .mr\@sm-auto.mr\@sm-auto {
    margin-right: auto;
  }
  .mb\@sm-7.mb\@sm-7 {
    margin-bottom: 256px;
  }
  .mb\@sm-auto.mb\@sm-auto {
    margin-bottom: auto;
  }
  .ml\@sm-7.ml\@sm-7 {
    margin-left: 256px;
  }
  .ml\@sm-auto.ml\@sm-auto {
    margin-left: auto;
  }
  .my\@sm-7.my\@sm-7 {
    margin-top: 256px;
    margin-bottom: 256px;
  }
  .mx\@sm-7.mx\@sm-7 {
    margin-right: 256px;
    margin-left: 256px;
  }
  .my\@sm-auto.my\@sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@sm-auto.mx\@sm-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .p\@sm-0.p\@sm-0 {
    padding: 0px;
  }
  .p\@sm-auto.p\@sm-auto {
    padding: auto;
  }
  .pt\@sm-0.pt\@sm-0 {
    padding-top: 0px;
  }
  .pt\@sm-auto.pt\@sm-auto {
    padding-top: auto;
  }
  .pr\@sm-0.pr\@sm-0 {
    padding-right: 0px;
  }
  .pr\@sm-auto.pr\@sm-auto {
    padding-right: auto;
  }
  .pb\@sm-0.pb\@sm-0 {
    padding-bottom: 0px;
  }
  .pb\@sm-auto.pb\@sm-auto {
    padding-bottom: auto;
  }
  .pl\@sm-0.pl\@sm-0 {
    padding-left: 0px;
  }
  .pl\@sm-auto.pl\@sm-auto {
    padding-left: auto;
  }
  .py\@sm-0.py\@sm-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .px\@sm-0.px\@sm-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .py\@sm-auto.py\@sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@sm-auto.px\@sm-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@sm-1.p\@sm-1 {
    padding: 4px;
  }
  .p\@sm-auto.p\@sm-auto {
    padding: auto;
  }
  .pt\@sm-1.pt\@sm-1 {
    padding-top: 4px;
  }
  .pt\@sm-auto.pt\@sm-auto {
    padding-top: auto;
  }
  .pr\@sm-1.pr\@sm-1 {
    padding-right: 4px;
  }
  .pr\@sm-auto.pr\@sm-auto {
    padding-right: auto;
  }
  .pb\@sm-1.pb\@sm-1 {
    padding-bottom: 4px;
  }
  .pb\@sm-auto.pb\@sm-auto {
    padding-bottom: auto;
  }
  .pl\@sm-1.pl\@sm-1 {
    padding-left: 4px;
  }
  .pl\@sm-auto.pl\@sm-auto {
    padding-left: auto;
  }
  .py\@sm-1.py\@sm-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .px\@sm-1.px\@sm-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .py\@sm-auto.py\@sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@sm-auto.px\@sm-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@sm-2.p\@sm-2 {
    padding: 8px;
  }
  .p\@sm-auto.p\@sm-auto {
    padding: auto;
  }
  .pt\@sm-2.pt\@sm-2 {
    padding-top: 8px;
  }
  .pt\@sm-auto.pt\@sm-auto {
    padding-top: auto;
  }
  .pr\@sm-2.pr\@sm-2 {
    padding-right: 8px;
  }
  .pr\@sm-auto.pr\@sm-auto {
    padding-right: auto;
  }
  .pb\@sm-2.pb\@sm-2 {
    padding-bottom: 8px;
  }
  .pb\@sm-auto.pb\@sm-auto {
    padding-bottom: auto;
  }
  .pl\@sm-2.pl\@sm-2 {
    padding-left: 8px;
  }
  .pl\@sm-auto.pl\@sm-auto {
    padding-left: auto;
  }
  .py\@sm-2.py\@sm-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px\@sm-2.px\@sm-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .py\@sm-auto.py\@sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@sm-auto.px\@sm-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@sm-3.p\@sm-3 {
    padding: 16px;
  }
  .p\@sm-auto.p\@sm-auto {
    padding: auto;
  }
  .pt\@sm-3.pt\@sm-3 {
    padding-top: 16px;
  }
  .pt\@sm-auto.pt\@sm-auto {
    padding-top: auto;
  }
  .pr\@sm-3.pr\@sm-3 {
    padding-right: 16px;
  }
  .pr\@sm-auto.pr\@sm-auto {
    padding-right: auto;
  }
  .pb\@sm-3.pb\@sm-3 {
    padding-bottom: 16px;
  }
  .pb\@sm-auto.pb\@sm-auto {
    padding-bottom: auto;
  }
  .pl\@sm-3.pl\@sm-3 {
    padding-left: 16px;
  }
  .pl\@sm-auto.pl\@sm-auto {
    padding-left: auto;
  }
  .py\@sm-3.py\@sm-3 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px\@sm-3.px\@sm-3 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .py\@sm-auto.py\@sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@sm-auto.px\@sm-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@sm-4.p\@sm-4 {
    padding: 32px;
  }
  .p\@sm-auto.p\@sm-auto {
    padding: auto;
  }
  .pt\@sm-4.pt\@sm-4 {
    padding-top: 32px;
  }
  .pt\@sm-auto.pt\@sm-auto {
    padding-top: auto;
  }
  .pr\@sm-4.pr\@sm-4 {
    padding-right: 32px;
  }
  .pr\@sm-auto.pr\@sm-auto {
    padding-right: auto;
  }
  .pb\@sm-4.pb\@sm-4 {
    padding-bottom: 32px;
  }
  .pb\@sm-auto.pb\@sm-auto {
    padding-bottom: auto;
  }
  .pl\@sm-4.pl\@sm-4 {
    padding-left: 32px;
  }
  .pl\@sm-auto.pl\@sm-auto {
    padding-left: auto;
  }
  .py\@sm-4.py\@sm-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px\@sm-4.px\@sm-4 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .py\@sm-auto.py\@sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@sm-auto.px\@sm-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@sm-5.p\@sm-5 {
    padding: 64px;
  }
  .p\@sm-auto.p\@sm-auto {
    padding: auto;
  }
  .pt\@sm-5.pt\@sm-5 {
    padding-top: 64px;
  }
  .pt\@sm-auto.pt\@sm-auto {
    padding-top: auto;
  }
  .pr\@sm-5.pr\@sm-5 {
    padding-right: 64px;
  }
  .pr\@sm-auto.pr\@sm-auto {
    padding-right: auto;
  }
  .pb\@sm-5.pb\@sm-5 {
    padding-bottom: 64px;
  }
  .pb\@sm-auto.pb\@sm-auto {
    padding-bottom: auto;
  }
  .pl\@sm-5.pl\@sm-5 {
    padding-left: 64px;
  }
  .pl\@sm-auto.pl\@sm-auto {
    padding-left: auto;
  }
  .py\@sm-5.py\@sm-5 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px\@sm-5.px\@sm-5 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .py\@sm-auto.py\@sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@sm-auto.px\@sm-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@sm-6.p\@sm-6 {
    padding: 128px;
  }
  .p\@sm-auto.p\@sm-auto {
    padding: auto;
  }
  .pt\@sm-6.pt\@sm-6 {
    padding-top: 128px;
  }
  .pt\@sm-auto.pt\@sm-auto {
    padding-top: auto;
  }
  .pr\@sm-6.pr\@sm-6 {
    padding-right: 128px;
  }
  .pr\@sm-auto.pr\@sm-auto {
    padding-right: auto;
  }
  .pb\@sm-6.pb\@sm-6 {
    padding-bottom: 128px;
  }
  .pb\@sm-auto.pb\@sm-auto {
    padding-bottom: auto;
  }
  .pl\@sm-6.pl\@sm-6 {
    padding-left: 128px;
  }
  .pl\@sm-auto.pl\@sm-auto {
    padding-left: auto;
  }
  .py\@sm-6.py\@sm-6 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px\@sm-6.px\@sm-6 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py\@sm-auto.py\@sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@sm-auto.px\@sm-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@sm-7.p\@sm-7 {
    padding: 256px;
  }
  .p\@sm-auto.p\@sm-auto {
    padding: auto;
  }
  .pt\@sm-7.pt\@sm-7 {
    padding-top: 256px;
  }
  .pt\@sm-auto.pt\@sm-auto {
    padding-top: auto;
  }
  .pr\@sm-7.pr\@sm-7 {
    padding-right: 256px;
  }
  .pr\@sm-auto.pr\@sm-auto {
    padding-right: auto;
  }
  .pb\@sm-7.pb\@sm-7 {
    padding-bottom: 256px;
  }
  .pb\@sm-auto.pb\@sm-auto {
    padding-bottom: auto;
  }
  .pl\@sm-7.pl\@sm-7 {
    padding-left: 256px;
  }
  .pl\@sm-auto.pl\@sm-auto {
    padding-left: auto;
  }
  .py\@sm-7.py\@sm-7 {
    padding-top: 256px;
    padding-bottom: 256px;
  }
  .px\@sm-7.px\@sm-7 {
    padding-right: 256px;
    padding-left: 256px;
  }
  .py\@sm-auto.py\@sm-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@sm-auto.px\@sm-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .border-none {
    border-style: none;
  }
  .border-dotted {
    border-style: dotted;
  }
  .border-dashed {
    border-style: dashed;
  }
  .border-solid {
    border-style: solid;
  }
  .border-double {
    border-style: double;
  }
  .border-groove {
    border-style: groove;
  }
  .border-ridge {
    border-style: ridge;
  }
  .border-inset {
    border-style: inset;
  }
  .border-outset {
    border-style: outset;
  }
  .border\@sm {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-top {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-top-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-top-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-top-none {
    border-top-style: none;
  }
  .border\@sm-top-dotted {
    border-top-style: dotted;
  }
  .border\@sm-top-dashed {
    border-top-style: dashed;
  }
  .border\@sm-top-solid {
    border-top-style: solid;
  }
  .border\@sm-top-double {
    border-top-style: double;
  }
  .border\@sm-top-groove {
    border-top-style: groove;
  }
  .border\@sm-top-ridge {
    border-top-style: ridge;
  }
  .border\@sm-top-inset {
    border-top-style: inset;
  }
  .border\@sm-top-outset {
    border-top-style: outset;
  }
  .border\@sm-top-thin {
    border-top-width: thin;
  }
  .border\@sm-top-medium {
    border-top-width: medium;
  }
  .border\@sm-top-thick {
    border-top-width: thick;
  }
  .border\@sm {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-right {
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-right-light {
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-right-dark {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-right-none {
    border-right-style: none;
  }
  .border\@sm-right-dotted {
    border-right-style: dotted;
  }
  .border\@sm-right-dashed {
    border-right-style: dashed;
  }
  .border\@sm-right-solid {
    border-right-style: solid;
  }
  .border\@sm-right-double {
    border-right-style: double;
  }
  .border\@sm-right-groove {
    border-right-style: groove;
  }
  .border\@sm-right-ridge {
    border-right-style: ridge;
  }
  .border\@sm-right-inset {
    border-right-style: inset;
  }
  .border\@sm-right-outset {
    border-right-style: outset;
  }
  .border\@sm-right-thin {
    border-right-width: thin;
  }
  .border\@sm-right-medium {
    border-right-width: medium;
  }
  .border\@sm-right-thick {
    border-right-width: thick;
  }
  .border\@sm {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-bottom-dark {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-bottom-none {
    border-bottom-style: none;
  }
  .border\@sm-bottom-dotted {
    border-bottom-style: dotted;
  }
  .border\@sm-bottom-dashed {
    border-bottom-style: dashed;
  }
  .border\@sm-bottom-solid {
    border-bottom-style: solid;
  }
  .border\@sm-bottom-double {
    border-bottom-style: double;
  }
  .border\@sm-bottom-groove {
    border-bottom-style: groove;
  }
  .border\@sm-bottom-ridge {
    border-bottom-style: ridge;
  }
  .border\@sm-bottom-inset {
    border-bottom-style: inset;
  }
  .border\@sm-bottom-outset {
    border-bottom-style: outset;
  }
  .border\@sm-bottom-thin {
    border-bottom-width: thin;
  }
  .border\@sm-bottom-medium {
    border-bottom-width: medium;
  }
  .border\@sm-bottom-thick {
    border-bottom-width: thick;
  }
  .border\@sm {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-left {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-left-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-left-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-left-none {
    border-left-style: none;
  }
  .border\@sm-left-dotted {
    border-left-style: dotted;
  }
  .border\@sm-left-dashed {
    border-left-style: dashed;
  }
  .border\@sm-left-solid {
    border-left-style: solid;
  }
  .border\@sm-left-double {
    border-left-style: double;
  }
  .border\@sm-left-groove {
    border-left-style: groove;
  }
  .border\@sm-left-ridge {
    border-left-style: ridge;
  }
  .border\@sm-left-inset {
    border-left-style: inset;
  }
  .border\@sm-left-outset {
    border-left-style: outset;
  }
  .border\@sm-left-thin {
    border-left-width: thin;
  }
  .border\@sm-left-medium {
    border-left-width: medium;
  }
  .border\@sm-left-thick {
    border-left-width: thick;
  }
  .border\@sm-y {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-y-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-y-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-x {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@sm-x-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@sm-x-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@sm-radius {
    border-radius: 4px;
  }
  .border\@sm-radius-top-left {
    border-top-left-radius: 4px;
  }
  .border\@sm-radius-top-right {
    border-top-right-radius: 4px;
  }
  .border\@sm-radius-bottom-left {
    border-bottom-left-radius: 4px;
  }
  .border\@sm-radius-bottom-right {
    border-bottom-right-radius: 4px;
  }

  .font-style\@sm-oblique {
    font-style: oblique;
  }

  .font-style\@sm-italic {
    font-style: italic;
  }

  .font\@sm-ui {
    font-family: "Noto Sans", sans-serif !important;
  }

  .font\@sm-content {
    font-family: "Brill", "Georgia", serif !important;
  }

  .font\@sm-header {
    font-family: "Brill", "Georgia", serif !important;
  }

  .fw\@sm-1 {
    font-weight: 300 !important;
  }

  .fw\@sm-2 {
    font-weight: 400 !important;
  }

  .fw\@sm-3 {
    font-weight: 500 !important;
  }

  .fw\@sm-4 {
    font-weight: 600 !important;
  }

  .f\@sm-1 {
    font-size: 0.875rem !important;
  }

  .f\@sm-2 {
    font-size: 1rem !important;
  }

  .f\@sm-3 {
    font-size: 1.125rem !important;
  }

  .f\@sm-4 {
    font-size: 1.5rem !important;
  }

  .f\@sm-5 {
    font-size: 1.75rem !important;
  }

  .f\@sm-6 {
    font-size: 2.125rem !important;
  }

  .f\@sm-7 {
    font-size: 2.8125rem !important;
  }

  .f\@sm-8 {
    font-size: 1.125rem !important;
  }

  .f\@sm-9 {
    font-size: 3.5rem !important;
  }

  .f\@sm-10 {
    font-size: 5rem !important;
  }

  .ln\@sm-1 {
    line-height: 1.125rem !important;
  }

  .ln\@sm-2 {
    line-height: 1.25rem !important;
  }

  .ln\@sm-3 {
    line-height: 1.5rem !important;
  }

  .ln\@sm-4 {
    line-height: 1.75rem !important;
  }

  .ln\@sm-5 {
    line-height: 2rem !important;
  }

  .ln\@sm-6 {
    line-height: 2.125rem !important;
  }

  .ln\@sm-7 {
    line-height: 3rem !important;
  }

  .ln\@sm-8 {
    line-height: 4.5rem !important;
  }

  .ln\@sm-9 {
    line-height: 5.5rem !important;
  }

  .ln\@sm-10 {
    line-height: 6.5rem !important;
  }

  .text\@sm-left, .text-align\@sm-left {
    text-align: left;
  }
  .text\@sm-center, .text-align\@sm-center {
    text-align: center;
  }
  .text\@sm-right, .text-align\@sm-right {
    text-align: right;
  }
  .text\@sm-justify, .text-align\@sm-justify {
    text-align: justify;
  }
  .text\@sm-nowrap, .text-align\@sm-nowrap {
    white-space: nowrap;
  }
  .text\@sm-wrap, .text-align\@sm-wrap {
    white-space: wrap;
  }
  .text\@sm-pre, .text-align\@sm-pre {
    white-space: pre;
  }
  .text\@sm-pre-line, .text-align\@sm-pre-line {
    white-space: pre-line;
  }
  .text\@sm-pre-wrap, .text-align\@sm-pre-wrap {
    white-space: pre-wrap;
  }

  .text-transform\@sm-uppercase {
    text-transform: uppercase;
  }

  .text-transform\@sm-lowercase {
    text-transform: lowercase;
  }

  .text-transform\@sm-capitalize {
    text-transform: capitalize;
  }

  .text-transform\@sm-none {
    text-transform: none;
  }

  .display\@sm-none.display\@sm-none,
.hidden\@sm.hidden\@sm {
    display: none;
  }

  .display\@sm-inline.display\@sm-inline,
.inline\@sm.inline\@sm {
    display: inline;
  }

  .display\@sm-inline-block.display\@sm-inline-block, .inline-block\@sm.inline-block\@sm {
    display: inline-block;
  }

  .display\@sm-inline-flex.display\@sm-inline-flex {
    display: inline-flex;
  }

  .display\@sm-block.display\@sm-block,
.block\@sm.block\@sm {
    display: block;
  }

  .display\@sm-flex.display\@sm-flex {
    display: flex;
  }

  .display\@sm-table.display\@sm-table {
    display: table;
  }

  .display\@sm-contents.display\@sm-contents {
    display: contents;
  }

  .display\@sm-before-block.display\@sm-before-block:before,
.before-block\@sm.before-block\@sm:before {
    content: "";
    display: block;
  }

  .position\@sm-relative.position\@sm-relative {
    position: relative;
  }

  .position\@sm-fixed.position\@sm-fixed,
.display\@sm-fixed.display\@sm-fixed,
.fixed\@sm.fixed\@sm {
    position: fixed;
    visibility: visible;
    z-index: 99;
  }

  .position\@sm-absolute.position\@sm-absolute,
.display\@sm-absolute.display\@sm-absolute,
.absolute\@sm.absolute\@sm {
    position: absolute;
    visibility: visible;
  }

  .position\@sm-sticky.position\@sm-sticky,
.display\@sm-sticky.display\@sm-sticky,
.sticky\@sm.sticky\@sm {
    position: -webkit-sticky;
    position: sticky;
    visibility: visible;
  }

  .position\@sm-sticky-top.position\@sm-sticky-top,
.display\@sm-sticky-top.display\@sm-sticky-top,
.sticky-top\@sm.sticky-top\@sm {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    visibility: visible;
  }

  .position\@sm-sticky-bottom.position\@sm-sticky-bottom,
.display\@sm-sticky-bottom.display\@sm-sticky-bottom,
.sticky-bottom\@sm.sticky-bottom\@sm {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    visibility: visible;
  }

  .visibility\@sm-visible {
    visibility: visible;
  }

  .visibility\@sm-hidden {
    visibility: hidden;
  }

  .flex\@sm.flex\@sm {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex\@sm-inline.flex\@sm-inline {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex\@sm-col.flex\@sm-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex\@sm-col-reverse.flex\@sm-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex\@sm-row.flex\@sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex\@sm-row-reverse.flex\@sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex\@sm-wrap.flex\@sm-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex\@sm-nowrap.flex\@sm-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex\@sm-align-stretch.flex\@sm-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex\@sm-align-center.flex\@sm-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex\@sm-align-start.flex\@sm-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex\@sm-align-end.flex\@sm-align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex\@sm-align-self-stretch.flex\@sm-align-self-stretch {
    align-self: stretch;
  }
  .flex\@sm-align-self-center.flex\@sm-align-self-center {
    align-self: center;
  }
  .flex\@sm-align-self-start.flex\@sm-align-self-start {
    align-self: flex-start;
  }
  .flex\@sm-align-self-end.flex\@sm-align-self-end {
    align-self: flex-end;
  }
  .flex\@sm-justify-start.flex\@sm-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex\@sm-justify-end.flex\@sm-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex\@sm-justify-center.flex\@sm-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex\@sm-justify-btw.flex\@sm-justify-btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex\@sm-justify-around.flex\@sm-justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex\@sm-justify-self-start.flex\@sm-justify-self-start {
    justify-self: flex-start;
  }
  .flex\@sm-justify-self-end.flex\@sm-justify-self-end {
    justify-self: flex-end;
  }
  .flex\@sm-justify-self-center.flex\@sm-justify-self-center {
    justify-self: center;
  }
  .flex\@sm-justify-self-btw.flex\@sm-justify-self-btw {
    justify-self: space-between;
  }
  .flex\@sm-justify-self-around.flex\@sm-justify-self-around {
    justify-self: space-around;
  }
  .flex\@sm-1 {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex\@sm-order-1 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex\@sm-2 {
    min-width: 0;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .flex\@sm-order-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex\@sm-3 {
    min-width: 0;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
  }
  .flex\@sm-order-3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .flex\@sm-4 {
    min-width: 0;
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
  .flex\@sm-order-4 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .flex\@sm-5 {
    min-width: 0;
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
  }
  .flex\@sm-order-5 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .flex\@sm-6 {
    min-width: 0;
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
  .flex\@sm-order-6 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .flex\@sm-7 {
    min-width: 0;
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7;
  }
  .flex\@sm-order-7 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .flex\@sm-8 {
    min-width: 0;
    -webkit-box-flex: 8;
    -ms-flex: 8;
    flex: 8;
  }
  .flex\@sm-order-8 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .flex\@sm-9 {
    min-width: 0;
    -webkit-box-flex: 9;
    -ms-flex: 9;
    flex: 9;
  }
  .flex\@sm-order-9 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .flex\@sm-10 {
    min-width: 0;
    -webkit-box-flex: 10;
    -ms-flex: 10;
    flex: 10;
  }
  .flex\@sm-order-10 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .flex\@sm-11 {
    min-width: 0;
    -webkit-box-flex: 11;
    -ms-flex: 11;
    flex: 11;
  }
  .flex\@sm-order-11 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .flex\@sm-12 {
    min-width: 0;
    -webkit-box-flex: 12;
    -ms-flex: 12;
    flex: 12;
  }
  .flex\@sm-order-12 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none) {
  .flex\@sm-1 {
    flex: auto;
    flex-grow: 1;
  }
  .flex\@sm-2 {
    flex: auto;
    flex-grow: 2;
  }
  .flex\@sm-3 {
    flex: auto;
    flex-grow: 3;
  }
  .flex\@sm-4 {
    flex: auto;
    flex-grow: 4;
  }
  .flex\@sm-5 {
    flex: auto;
    flex-grow: 5;
  }
  .flex\@sm-6 {
    flex: auto;
    flex-grow: 6;
  }
  .flex\@sm-7 {
    flex: auto;
    flex-grow: 7;
  }
  .flex\@sm-8 {
    flex: auto;
    flex-grow: 8;
  }
  .flex\@sm-9 {
    flex: auto;
    flex-grow: 9;
  }
  .flex\@sm-10 {
    flex: auto;
    flex-grow: 10;
  }
  .flex\@sm-11 {
    flex: auto;
    flex-grow: 11;
  }
  .flex\@sm-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 768px) {
  .ie-11 .flex\@sm-1 {
    flex: auto;
    flex-grow: 1;
  }
  .ie-11 .flex\@sm-2 {
    flex: auto;
    flex-grow: 2;
  }
  .ie-11 .flex\@sm-3 {
    flex: auto;
    flex-grow: 3;
  }
  .ie-11 .flex\@sm-4 {
    flex: auto;
    flex-grow: 4;
  }
  .ie-11 .flex\@sm-5 {
    flex: auto;
    flex-grow: 5;
  }
  .ie-11 .flex\@sm-6 {
    flex: auto;
    flex-grow: 6;
  }
  .ie-11 .flex\@sm-7 {
    flex: auto;
    flex-grow: 7;
  }
  .ie-11 .flex\@sm-8 {
    flex: auto;
    flex-grow: 8;
  }
  .ie-11 .flex\@sm-9 {
    flex: auto;
    flex-grow: 9;
  }
  .ie-11 .flex\@sm-10 {
    flex: auto;
    flex-grow: 10;
  }
  .ie-11 .flex\@sm-11 {
    flex: auto;
    flex-grow: 11;
  }
  .ie-11 .flex\@sm-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 768px) {
  .list\@sm-style-none {
    list-style: none;
  }
}
@media (min-width: 768px) {
  .columns\@sm-0 {
    column-count: 0;
  }
  .columns\@sm-1 {
    column-count: 1;
  }
  .columns\@sm-2 {
    column-count: 2;
  }
  .columns\@sm-3 {
    column-count: 3;
  }
  .columns\@sm-4 {
    column-count: 4;
  }
  .columns\@sm-5 {
    column-count: 5;
  }
  .columns\@sm-6 {
    column-count: 6;
  }
  .columns\@sm-7 {
    column-count: 7;
  }
  .columns\@sm-8 {
    column-count: 8;
  }
  .columns\@sm-9 {
    column-count: 9;
  }
}
@media (min-width: 768px) {
  .overflow\@sm-auto {
    overflow: auto;
  }
  .overflow\@sm-y-auto {
    overflow-y: auto;
  }
  .overflow\@sm-x-auto {
    overflow-x: auto;
  }
  .overflow\@sm-hidden {
    overflow: hidden;
  }
  .overflow\@sm-y-hidden {
    overflow-y: hidden;
  }
  .overflow\@sm-x-hidden {
    overflow-x: hidden;
  }
  .overflow\@sm-visible {
    overflow: visible;
  }
  .overflow\@sm-y-visible {
    overflow-y: visible;
  }
  .overflow\@sm-x-visible {
    overflow-x: visible;
  }
  .overflow\@sm-scroll {
    overflow: scroll;
  }
  .overflow\@sm-y-scroll {
    overflow-y: scroll;
  }
  .overflow\@sm-x-scroll {
    overflow-x: scroll;
  }
  .overflow\@sm-overlay {
    overflow: overlay;
  }
  .overflow\@sm-y-overlay {
    overflow-y: overlay;
  }
  .overflow\@sm-x-overlay {
    overflow-x: overlay;
  }
}
@media (min-width: 768px) {
  .text-overflow\@sm-clip {
    text-overflow: clip;
  }
  .text-overflow\@sm-ellipsis {
    text-overflow: ellipsis;
  }
  .text-overflow\@sm-initial {
    text-overflow: initial;
  }
  .text-overflow\@sm-inherit {
    text-overflow: inherit;
  }
}
@media (min-width: 1152px) {
  .w\@md-auto {
    width: auto;
  }
  .w\@md-1 {
    width: 100%;
  }
  .w\@md-75 {
    width: 75%;
  }
  .w\@md-50 {
    width: 50%;
  }
  .w\@md-33 {
    width: 33.3333333333%;
  }
  .w\@md-25 {
    width: 25%;
  }
  .w\@md-12 {
    width: 12.5%;
  }

  .wMin\@md-auto {
    min-width: auto;
  }
  .wMin\@md-1 {
    min-width: 100%;
  }
  .wMin\@md-75 {
    min-width: 75%;
  }
  .wMin\@md-50 {
    min-width: 50%;
  }
  .wMin\@md-33 {
    min-width: 33.3333333333%;
  }
  .wMin\@md-25 {
    min-width: 25%;
  }
  .wMin\@md-12 {
    min-width: 12.5%;
  }

  .wMax\@md-auto {
    max-width: auto;
  }
  .wMax\@md-1 {
    max-width: 100%;
  }
  .wMax\@md-75 {
    max-width: 75%;
  }
  .wMax\@md-50 {
    max-width: 50%;
  }
  .wMax\@md-33 {
    max-width: 33.3333333333%;
  }
  .wMax\@md-25 {
    max-width: 25%;
  }
  .wMax\@md-12 {
    max-width: 12.5%;
  }

  .h\@md-auto {
    height: auto;
  }
  .h\@md-1 {
    height: 100%;
  }
  .h\@md-75 {
    height: 75%;
  }
  .h\@md-50 {
    height: 50%;
  }
  .h\@md-33 {
    height: 33.3333333333%;
  }
  .h\@md-25 {
    height: 25%;
  }
  .h\@md-12 {
    height: 12.5%;
  }

  .hMin\@md-auto {
    min-height: auto;
  }
  .hMin\@md-1 {
    min-height: 100%;
  }
  .hMin\@md-75 {
    min-height: 75%;
  }
  .hMin\@md-50 {
    min-height: 50%;
  }
  .hMin\@md-33 {
    min-height: 33.3333333333%;
  }
  .hMin\@md-25 {
    min-height: 25%;
  }
  .hMin\@md-12 {
    min-height: 12.5%;
  }

  .hMax\@md-auto {
    max-height: auto;
  }
  .hMax\@md-1 {
    max-height: 100%;
  }
  .hMax\@md-75 {
    max-height: 75%;
  }
  .hMax\@md-50 {
    max-height: 50%;
  }
  .hMax\@md-33 {
    max-height: 33.3333333333%;
  }
  .hMax\@md-25 {
    max-height: 25%;
  }
  .hMax\@md-12 {
    max-height: 12.5%;
  }

  .m\@md-0.m\@md-0 {
    margin: 0px;
  }
  .m\@md-auto.m\@md-auto {
    margin: auto;
  }
  .mt\@md-0.mt\@md-0 {
    margin-top: 0px;
  }
  .mt\@md-auto.mt\@md-auto {
    margin-top: auto;
  }
  .mr\@md-0.mr\@md-0 {
    margin-right: 0px;
  }
  .mr\@md-auto.mr\@md-auto {
    margin-right: auto;
  }
  .mb\@md-0.mb\@md-0 {
    margin-bottom: 0px;
  }
  .mb\@md-auto.mb\@md-auto {
    margin-bottom: auto;
  }
  .ml\@md-0.ml\@md-0 {
    margin-left: 0px;
  }
  .ml\@md-auto.ml\@md-auto {
    margin-left: auto;
  }
  .my\@md-0.my\@md-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mx\@md-0.mx\@md-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .my\@md-auto.my\@md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@md-auto.mx\@md-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@md-1.m\@md-1 {
    margin: 4px;
  }
  .m\@md-auto.m\@md-auto {
    margin: auto;
  }
  .mt\@md-1.mt\@md-1 {
    margin-top: 4px;
  }
  .mt\@md-auto.mt\@md-auto {
    margin-top: auto;
  }
  .mr\@md-1.mr\@md-1 {
    margin-right: 4px;
  }
  .mr\@md-auto.mr\@md-auto {
    margin-right: auto;
  }
  .mb\@md-1.mb\@md-1 {
    margin-bottom: 4px;
  }
  .mb\@md-auto.mb\@md-auto {
    margin-bottom: auto;
  }
  .ml\@md-1.ml\@md-1 {
    margin-left: 4px;
  }
  .ml\@md-auto.ml\@md-auto {
    margin-left: auto;
  }
  .my\@md-1.my\@md-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .mx\@md-1.mx\@md-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .my\@md-auto.my\@md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@md-auto.mx\@md-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@md-2.m\@md-2 {
    margin: 8px;
  }
  .m\@md-auto.m\@md-auto {
    margin: auto;
  }
  .mt\@md-2.mt\@md-2 {
    margin-top: 8px;
  }
  .mt\@md-auto.mt\@md-auto {
    margin-top: auto;
  }
  .mr\@md-2.mr\@md-2 {
    margin-right: 8px;
  }
  .mr\@md-auto.mr\@md-auto {
    margin-right: auto;
  }
  .mb\@md-2.mb\@md-2 {
    margin-bottom: 8px;
  }
  .mb\@md-auto.mb\@md-auto {
    margin-bottom: auto;
  }
  .ml\@md-2.ml\@md-2 {
    margin-left: 8px;
  }
  .ml\@md-auto.ml\@md-auto {
    margin-left: auto;
  }
  .my\@md-2.my\@md-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx\@md-2.mx\@md-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .my\@md-auto.my\@md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@md-auto.mx\@md-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@md-3.m\@md-3 {
    margin: 16px;
  }
  .m\@md-auto.m\@md-auto {
    margin: auto;
  }
  .mt\@md-3.mt\@md-3 {
    margin-top: 16px;
  }
  .mt\@md-auto.mt\@md-auto {
    margin-top: auto;
  }
  .mr\@md-3.mr\@md-3 {
    margin-right: 16px;
  }
  .mr\@md-auto.mr\@md-auto {
    margin-right: auto;
  }
  .mb\@md-3.mb\@md-3 {
    margin-bottom: 16px;
  }
  .mb\@md-auto.mb\@md-auto {
    margin-bottom: auto;
  }
  .ml\@md-3.ml\@md-3 {
    margin-left: 16px;
  }
  .ml\@md-auto.ml\@md-auto {
    margin-left: auto;
  }
  .my\@md-3.my\@md-3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx\@md-3.mx\@md-3 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .my\@md-auto.my\@md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@md-auto.mx\@md-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@md-4.m\@md-4 {
    margin: 32px;
  }
  .m\@md-auto.m\@md-auto {
    margin: auto;
  }
  .mt\@md-4.mt\@md-4 {
    margin-top: 32px;
  }
  .mt\@md-auto.mt\@md-auto {
    margin-top: auto;
  }
  .mr\@md-4.mr\@md-4 {
    margin-right: 32px;
  }
  .mr\@md-auto.mr\@md-auto {
    margin-right: auto;
  }
  .mb\@md-4.mb\@md-4 {
    margin-bottom: 32px;
  }
  .mb\@md-auto.mb\@md-auto {
    margin-bottom: auto;
  }
  .ml\@md-4.ml\@md-4 {
    margin-left: 32px;
  }
  .ml\@md-auto.ml\@md-auto {
    margin-left: auto;
  }
  .my\@md-4.my\@md-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx\@md-4.mx\@md-4 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .my\@md-auto.my\@md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@md-auto.mx\@md-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@md-5.m\@md-5 {
    margin: 64px;
  }
  .m\@md-auto.m\@md-auto {
    margin: auto;
  }
  .mt\@md-5.mt\@md-5 {
    margin-top: 64px;
  }
  .mt\@md-auto.mt\@md-auto {
    margin-top: auto;
  }
  .mr\@md-5.mr\@md-5 {
    margin-right: 64px;
  }
  .mr\@md-auto.mr\@md-auto {
    margin-right: auto;
  }
  .mb\@md-5.mb\@md-5 {
    margin-bottom: 64px;
  }
  .mb\@md-auto.mb\@md-auto {
    margin-bottom: auto;
  }
  .ml\@md-5.ml\@md-5 {
    margin-left: 64px;
  }
  .ml\@md-auto.ml\@md-auto {
    margin-left: auto;
  }
  .my\@md-5.my\@md-5 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx\@md-5.mx\@md-5 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .my\@md-auto.my\@md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@md-auto.mx\@md-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@md-6.m\@md-6 {
    margin: 128px;
  }
  .m\@md-auto.m\@md-auto {
    margin: auto;
  }
  .mt\@md-6.mt\@md-6 {
    margin-top: 128px;
  }
  .mt\@md-auto.mt\@md-auto {
    margin-top: auto;
  }
  .mr\@md-6.mr\@md-6 {
    margin-right: 128px;
  }
  .mr\@md-auto.mr\@md-auto {
    margin-right: auto;
  }
  .mb\@md-6.mb\@md-6 {
    margin-bottom: 128px;
  }
  .mb\@md-auto.mb\@md-auto {
    margin-bottom: auto;
  }
  .ml\@md-6.ml\@md-6 {
    margin-left: 128px;
  }
  .ml\@md-auto.ml\@md-auto {
    margin-left: auto;
  }
  .my\@md-6.my\@md-6 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx\@md-6.mx\@md-6 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .my\@md-auto.my\@md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@md-auto.mx\@md-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@md-7.m\@md-7 {
    margin: 256px;
  }
  .m\@md-auto.m\@md-auto {
    margin: auto;
  }
  .mt\@md-7.mt\@md-7 {
    margin-top: 256px;
  }
  .mt\@md-auto.mt\@md-auto {
    margin-top: auto;
  }
  .mr\@md-7.mr\@md-7 {
    margin-right: 256px;
  }
  .mr\@md-auto.mr\@md-auto {
    margin-right: auto;
  }
  .mb\@md-7.mb\@md-7 {
    margin-bottom: 256px;
  }
  .mb\@md-auto.mb\@md-auto {
    margin-bottom: auto;
  }
  .ml\@md-7.ml\@md-7 {
    margin-left: 256px;
  }
  .ml\@md-auto.ml\@md-auto {
    margin-left: auto;
  }
  .my\@md-7.my\@md-7 {
    margin-top: 256px;
    margin-bottom: 256px;
  }
  .mx\@md-7.mx\@md-7 {
    margin-right: 256px;
    margin-left: 256px;
  }
  .my\@md-auto.my\@md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@md-auto.mx\@md-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .p\@md-0.p\@md-0 {
    padding: 0px;
  }
  .p\@md-auto.p\@md-auto {
    padding: auto;
  }
  .pt\@md-0.pt\@md-0 {
    padding-top: 0px;
  }
  .pt\@md-auto.pt\@md-auto {
    padding-top: auto;
  }
  .pr\@md-0.pr\@md-0 {
    padding-right: 0px;
  }
  .pr\@md-auto.pr\@md-auto {
    padding-right: auto;
  }
  .pb\@md-0.pb\@md-0 {
    padding-bottom: 0px;
  }
  .pb\@md-auto.pb\@md-auto {
    padding-bottom: auto;
  }
  .pl\@md-0.pl\@md-0 {
    padding-left: 0px;
  }
  .pl\@md-auto.pl\@md-auto {
    padding-left: auto;
  }
  .py\@md-0.py\@md-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .px\@md-0.px\@md-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .py\@md-auto.py\@md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@md-auto.px\@md-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@md-1.p\@md-1 {
    padding: 4px;
  }
  .p\@md-auto.p\@md-auto {
    padding: auto;
  }
  .pt\@md-1.pt\@md-1 {
    padding-top: 4px;
  }
  .pt\@md-auto.pt\@md-auto {
    padding-top: auto;
  }
  .pr\@md-1.pr\@md-1 {
    padding-right: 4px;
  }
  .pr\@md-auto.pr\@md-auto {
    padding-right: auto;
  }
  .pb\@md-1.pb\@md-1 {
    padding-bottom: 4px;
  }
  .pb\@md-auto.pb\@md-auto {
    padding-bottom: auto;
  }
  .pl\@md-1.pl\@md-1 {
    padding-left: 4px;
  }
  .pl\@md-auto.pl\@md-auto {
    padding-left: auto;
  }
  .py\@md-1.py\@md-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .px\@md-1.px\@md-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .py\@md-auto.py\@md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@md-auto.px\@md-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@md-2.p\@md-2 {
    padding: 8px;
  }
  .p\@md-auto.p\@md-auto {
    padding: auto;
  }
  .pt\@md-2.pt\@md-2 {
    padding-top: 8px;
  }
  .pt\@md-auto.pt\@md-auto {
    padding-top: auto;
  }
  .pr\@md-2.pr\@md-2 {
    padding-right: 8px;
  }
  .pr\@md-auto.pr\@md-auto {
    padding-right: auto;
  }
  .pb\@md-2.pb\@md-2 {
    padding-bottom: 8px;
  }
  .pb\@md-auto.pb\@md-auto {
    padding-bottom: auto;
  }
  .pl\@md-2.pl\@md-2 {
    padding-left: 8px;
  }
  .pl\@md-auto.pl\@md-auto {
    padding-left: auto;
  }
  .py\@md-2.py\@md-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px\@md-2.px\@md-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .py\@md-auto.py\@md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@md-auto.px\@md-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@md-3.p\@md-3 {
    padding: 16px;
  }
  .p\@md-auto.p\@md-auto {
    padding: auto;
  }
  .pt\@md-3.pt\@md-3 {
    padding-top: 16px;
  }
  .pt\@md-auto.pt\@md-auto {
    padding-top: auto;
  }
  .pr\@md-3.pr\@md-3 {
    padding-right: 16px;
  }
  .pr\@md-auto.pr\@md-auto {
    padding-right: auto;
  }
  .pb\@md-3.pb\@md-3 {
    padding-bottom: 16px;
  }
  .pb\@md-auto.pb\@md-auto {
    padding-bottom: auto;
  }
  .pl\@md-3.pl\@md-3 {
    padding-left: 16px;
  }
  .pl\@md-auto.pl\@md-auto {
    padding-left: auto;
  }
  .py\@md-3.py\@md-3 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px\@md-3.px\@md-3 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .py\@md-auto.py\@md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@md-auto.px\@md-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@md-4.p\@md-4 {
    padding: 32px;
  }
  .p\@md-auto.p\@md-auto {
    padding: auto;
  }
  .pt\@md-4.pt\@md-4 {
    padding-top: 32px;
  }
  .pt\@md-auto.pt\@md-auto {
    padding-top: auto;
  }
  .pr\@md-4.pr\@md-4 {
    padding-right: 32px;
  }
  .pr\@md-auto.pr\@md-auto {
    padding-right: auto;
  }
  .pb\@md-4.pb\@md-4 {
    padding-bottom: 32px;
  }
  .pb\@md-auto.pb\@md-auto {
    padding-bottom: auto;
  }
  .pl\@md-4.pl\@md-4 {
    padding-left: 32px;
  }
  .pl\@md-auto.pl\@md-auto {
    padding-left: auto;
  }
  .py\@md-4.py\@md-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px\@md-4.px\@md-4 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .py\@md-auto.py\@md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@md-auto.px\@md-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@md-5.p\@md-5 {
    padding: 64px;
  }
  .p\@md-auto.p\@md-auto {
    padding: auto;
  }
  .pt\@md-5.pt\@md-5 {
    padding-top: 64px;
  }
  .pt\@md-auto.pt\@md-auto {
    padding-top: auto;
  }
  .pr\@md-5.pr\@md-5 {
    padding-right: 64px;
  }
  .pr\@md-auto.pr\@md-auto {
    padding-right: auto;
  }
  .pb\@md-5.pb\@md-5 {
    padding-bottom: 64px;
  }
  .pb\@md-auto.pb\@md-auto {
    padding-bottom: auto;
  }
  .pl\@md-5.pl\@md-5 {
    padding-left: 64px;
  }
  .pl\@md-auto.pl\@md-auto {
    padding-left: auto;
  }
  .py\@md-5.py\@md-5 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px\@md-5.px\@md-5 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .py\@md-auto.py\@md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@md-auto.px\@md-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@md-6.p\@md-6 {
    padding: 128px;
  }
  .p\@md-auto.p\@md-auto {
    padding: auto;
  }
  .pt\@md-6.pt\@md-6 {
    padding-top: 128px;
  }
  .pt\@md-auto.pt\@md-auto {
    padding-top: auto;
  }
  .pr\@md-6.pr\@md-6 {
    padding-right: 128px;
  }
  .pr\@md-auto.pr\@md-auto {
    padding-right: auto;
  }
  .pb\@md-6.pb\@md-6 {
    padding-bottom: 128px;
  }
  .pb\@md-auto.pb\@md-auto {
    padding-bottom: auto;
  }
  .pl\@md-6.pl\@md-6 {
    padding-left: 128px;
  }
  .pl\@md-auto.pl\@md-auto {
    padding-left: auto;
  }
  .py\@md-6.py\@md-6 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px\@md-6.px\@md-6 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py\@md-auto.py\@md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@md-auto.px\@md-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@md-7.p\@md-7 {
    padding: 256px;
  }
  .p\@md-auto.p\@md-auto {
    padding: auto;
  }
  .pt\@md-7.pt\@md-7 {
    padding-top: 256px;
  }
  .pt\@md-auto.pt\@md-auto {
    padding-top: auto;
  }
  .pr\@md-7.pr\@md-7 {
    padding-right: 256px;
  }
  .pr\@md-auto.pr\@md-auto {
    padding-right: auto;
  }
  .pb\@md-7.pb\@md-7 {
    padding-bottom: 256px;
  }
  .pb\@md-auto.pb\@md-auto {
    padding-bottom: auto;
  }
  .pl\@md-7.pl\@md-7 {
    padding-left: 256px;
  }
  .pl\@md-auto.pl\@md-auto {
    padding-left: auto;
  }
  .py\@md-7.py\@md-7 {
    padding-top: 256px;
    padding-bottom: 256px;
  }
  .px\@md-7.px\@md-7 {
    padding-right: 256px;
    padding-left: 256px;
  }
  .py\@md-auto.py\@md-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@md-auto.px\@md-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .border-none {
    border-style: none;
  }
  .border-dotted {
    border-style: dotted;
  }
  .border-dashed {
    border-style: dashed;
  }
  .border-solid {
    border-style: solid;
  }
  .border-double {
    border-style: double;
  }
  .border-groove {
    border-style: groove;
  }
  .border-ridge {
    border-style: ridge;
  }
  .border-inset {
    border-style: inset;
  }
  .border-outset {
    border-style: outset;
  }
  .border\@md {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-top {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-top-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-top-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-top-none {
    border-top-style: none;
  }
  .border\@md-top-dotted {
    border-top-style: dotted;
  }
  .border\@md-top-dashed {
    border-top-style: dashed;
  }
  .border\@md-top-solid {
    border-top-style: solid;
  }
  .border\@md-top-double {
    border-top-style: double;
  }
  .border\@md-top-groove {
    border-top-style: groove;
  }
  .border\@md-top-ridge {
    border-top-style: ridge;
  }
  .border\@md-top-inset {
    border-top-style: inset;
  }
  .border\@md-top-outset {
    border-top-style: outset;
  }
  .border\@md-top-thin {
    border-top-width: thin;
  }
  .border\@md-top-medium {
    border-top-width: medium;
  }
  .border\@md-top-thick {
    border-top-width: thick;
  }
  .border\@md {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-right {
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-right-light {
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-right-dark {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-right-none {
    border-right-style: none;
  }
  .border\@md-right-dotted {
    border-right-style: dotted;
  }
  .border\@md-right-dashed {
    border-right-style: dashed;
  }
  .border\@md-right-solid {
    border-right-style: solid;
  }
  .border\@md-right-double {
    border-right-style: double;
  }
  .border\@md-right-groove {
    border-right-style: groove;
  }
  .border\@md-right-ridge {
    border-right-style: ridge;
  }
  .border\@md-right-inset {
    border-right-style: inset;
  }
  .border\@md-right-outset {
    border-right-style: outset;
  }
  .border\@md-right-thin {
    border-right-width: thin;
  }
  .border\@md-right-medium {
    border-right-width: medium;
  }
  .border\@md-right-thick {
    border-right-width: thick;
  }
  .border\@md {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-bottom-dark {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-bottom-none {
    border-bottom-style: none;
  }
  .border\@md-bottom-dotted {
    border-bottom-style: dotted;
  }
  .border\@md-bottom-dashed {
    border-bottom-style: dashed;
  }
  .border\@md-bottom-solid {
    border-bottom-style: solid;
  }
  .border\@md-bottom-double {
    border-bottom-style: double;
  }
  .border\@md-bottom-groove {
    border-bottom-style: groove;
  }
  .border\@md-bottom-ridge {
    border-bottom-style: ridge;
  }
  .border\@md-bottom-inset {
    border-bottom-style: inset;
  }
  .border\@md-bottom-outset {
    border-bottom-style: outset;
  }
  .border\@md-bottom-thin {
    border-bottom-width: thin;
  }
  .border\@md-bottom-medium {
    border-bottom-width: medium;
  }
  .border\@md-bottom-thick {
    border-bottom-width: thick;
  }
  .border\@md {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-left {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-left-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-left-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-left-none {
    border-left-style: none;
  }
  .border\@md-left-dotted {
    border-left-style: dotted;
  }
  .border\@md-left-dashed {
    border-left-style: dashed;
  }
  .border\@md-left-solid {
    border-left-style: solid;
  }
  .border\@md-left-double {
    border-left-style: double;
  }
  .border\@md-left-groove {
    border-left-style: groove;
  }
  .border\@md-left-ridge {
    border-left-style: ridge;
  }
  .border\@md-left-inset {
    border-left-style: inset;
  }
  .border\@md-left-outset {
    border-left-style: outset;
  }
  .border\@md-left-thin {
    border-left-width: thin;
  }
  .border\@md-left-medium {
    border-left-width: medium;
  }
  .border\@md-left-thick {
    border-left-width: thick;
  }
  .border\@md-y {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-y-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-y-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-x {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@md-x-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@md-x-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@md-radius {
    border-radius: 4px;
  }
  .border\@md-radius-top-left {
    border-top-left-radius: 4px;
  }
  .border\@md-radius-top-right {
    border-top-right-radius: 4px;
  }
  .border\@md-radius-bottom-left {
    border-bottom-left-radius: 4px;
  }
  .border\@md-radius-bottom-right {
    border-bottom-right-radius: 4px;
  }

  .font-style\@md-oblique {
    font-style: oblique;
  }

  .font-style\@md-italic {
    font-style: italic;
  }

  .font\@md-ui {
    font-family: "Noto Sans", sans-serif !important;
  }

  .font\@md-content {
    font-family: "Brill", "Georgia", serif !important;
  }

  .font\@md-header {
    font-family: "Brill", "Georgia", serif !important;
  }

  .fw\@md-1 {
    font-weight: 300 !important;
  }

  .fw\@md-2 {
    font-weight: 400 !important;
  }

  .fw\@md-3 {
    font-weight: 500 !important;
  }

  .fw\@md-4 {
    font-weight: 600 !important;
  }

  .f\@md-1 {
    font-size: 0.875rem !important;
  }

  .f\@md-2 {
    font-size: 1rem !important;
  }

  .f\@md-3 {
    font-size: 1.125rem !important;
  }

  .f\@md-4 {
    font-size: 1.5rem !important;
  }

  .f\@md-5 {
    font-size: 1.75rem !important;
  }

  .f\@md-6 {
    font-size: 2.125rem !important;
  }

  .f\@md-7 {
    font-size: 2.8125rem !important;
  }

  .f\@md-8 {
    font-size: 1.125rem !important;
  }

  .f\@md-9 {
    font-size: 3.5rem !important;
  }

  .f\@md-10 {
    font-size: 5rem !important;
  }

  .ln\@md-1 {
    line-height: 1.125rem !important;
  }

  .ln\@md-2 {
    line-height: 1.25rem !important;
  }

  .ln\@md-3 {
    line-height: 1.5rem !important;
  }

  .ln\@md-4 {
    line-height: 1.75rem !important;
  }

  .ln\@md-5 {
    line-height: 2rem !important;
  }

  .ln\@md-6 {
    line-height: 2.125rem !important;
  }

  .ln\@md-7 {
    line-height: 3rem !important;
  }

  .ln\@md-8 {
    line-height: 4.5rem !important;
  }

  .ln\@md-9 {
    line-height: 5.5rem !important;
  }

  .ln\@md-10 {
    line-height: 6.5rem !important;
  }

  .text\@md-left, .text-align\@md-left {
    text-align: left;
  }
  .text\@md-center, .text-align\@md-center {
    text-align: center;
  }
  .text\@md-right, .text-align\@md-right {
    text-align: right;
  }
  .text\@md-justify, .text-align\@md-justify {
    text-align: justify;
  }
  .text\@md-nowrap, .text-align\@md-nowrap {
    white-space: nowrap;
  }
  .text\@md-wrap, .text-align\@md-wrap {
    white-space: wrap;
  }
  .text\@md-pre, .text-align\@md-pre {
    white-space: pre;
  }
  .text\@md-pre-line, .text-align\@md-pre-line {
    white-space: pre-line;
  }
  .text\@md-pre-wrap, .text-align\@md-pre-wrap {
    white-space: pre-wrap;
  }

  .text-transform\@md-uppercase {
    text-transform: uppercase;
  }

  .text-transform\@md-lowercase {
    text-transform: lowercase;
  }

  .text-transform\@md-capitalize {
    text-transform: capitalize;
  }

  .text-transform\@md-none {
    text-transform: none;
  }

  .display\@md-none.display\@md-none,
.hidden\@md.hidden\@md {
    display: none;
  }

  .display\@md-inline.display\@md-inline,
.inline\@md.inline\@md {
    display: inline;
  }

  .display\@md-inline-block.display\@md-inline-block, .inline-block\@md.inline-block\@md {
    display: inline-block;
  }

  .display\@md-inline-flex.display\@md-inline-flex {
    display: inline-flex;
  }

  .display\@md-block.display\@md-block,
.block\@md.block\@md {
    display: block;
  }

  .display\@md-flex.display\@md-flex {
    display: flex;
  }

  .display\@md-table.display\@md-table {
    display: table;
  }

  .display\@md-contents.display\@md-contents {
    display: contents;
  }

  .display\@md-before-block.display\@md-before-block:before,
.before-block\@md.before-block\@md:before {
    content: "";
    display: block;
  }

  .position\@md-relative.position\@md-relative {
    position: relative;
  }

  .position\@md-fixed.position\@md-fixed,
.display\@md-fixed.display\@md-fixed,
.fixed\@md.fixed\@md {
    position: fixed;
    visibility: visible;
    z-index: 99;
  }

  .position\@md-absolute.position\@md-absolute,
.display\@md-absolute.display\@md-absolute,
.absolute\@md.absolute\@md {
    position: absolute;
    visibility: visible;
  }

  .position\@md-sticky.position\@md-sticky,
.display\@md-sticky.display\@md-sticky,
.sticky\@md.sticky\@md {
    position: -webkit-sticky;
    position: sticky;
    visibility: visible;
  }

  .position\@md-sticky-top.position\@md-sticky-top,
.display\@md-sticky-top.display\@md-sticky-top,
.sticky-top\@md.sticky-top\@md {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    visibility: visible;
  }

  .position\@md-sticky-bottom.position\@md-sticky-bottom,
.display\@md-sticky-bottom.display\@md-sticky-bottom,
.sticky-bottom\@md.sticky-bottom\@md {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    visibility: visible;
  }

  .visibility\@md-visible {
    visibility: visible;
  }

  .visibility\@md-hidden {
    visibility: hidden;
  }

  .flex\@md.flex\@md {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex\@md-inline.flex\@md-inline {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex\@md-col.flex\@md-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex\@md-col-reverse.flex\@md-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex\@md-row.flex\@md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex\@md-row-reverse.flex\@md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex\@md-wrap.flex\@md-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex\@md-nowrap.flex\@md-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex\@md-align-stretch.flex\@md-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex\@md-align-center.flex\@md-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex\@md-align-start.flex\@md-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex\@md-align-end.flex\@md-align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex\@md-align-self-stretch.flex\@md-align-self-stretch {
    align-self: stretch;
  }
  .flex\@md-align-self-center.flex\@md-align-self-center {
    align-self: center;
  }
  .flex\@md-align-self-start.flex\@md-align-self-start {
    align-self: flex-start;
  }
  .flex\@md-align-self-end.flex\@md-align-self-end {
    align-self: flex-end;
  }
  .flex\@md-justify-start.flex\@md-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex\@md-justify-end.flex\@md-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex\@md-justify-center.flex\@md-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex\@md-justify-btw.flex\@md-justify-btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex\@md-justify-around.flex\@md-justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex\@md-justify-self-start.flex\@md-justify-self-start {
    justify-self: flex-start;
  }
  .flex\@md-justify-self-end.flex\@md-justify-self-end {
    justify-self: flex-end;
  }
  .flex\@md-justify-self-center.flex\@md-justify-self-center {
    justify-self: center;
  }
  .flex\@md-justify-self-btw.flex\@md-justify-self-btw {
    justify-self: space-between;
  }
  .flex\@md-justify-self-around.flex\@md-justify-self-around {
    justify-self: space-around;
  }
  .flex\@md-1 {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex\@md-order-1 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex\@md-2 {
    min-width: 0;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .flex\@md-order-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex\@md-3 {
    min-width: 0;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
  }
  .flex\@md-order-3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .flex\@md-4 {
    min-width: 0;
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
  .flex\@md-order-4 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .flex\@md-5 {
    min-width: 0;
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
  }
  .flex\@md-order-5 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .flex\@md-6 {
    min-width: 0;
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
  .flex\@md-order-6 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .flex\@md-7 {
    min-width: 0;
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7;
  }
  .flex\@md-order-7 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .flex\@md-8 {
    min-width: 0;
    -webkit-box-flex: 8;
    -ms-flex: 8;
    flex: 8;
  }
  .flex\@md-order-8 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .flex\@md-9 {
    min-width: 0;
    -webkit-box-flex: 9;
    -ms-flex: 9;
    flex: 9;
  }
  .flex\@md-order-9 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .flex\@md-10 {
    min-width: 0;
    -webkit-box-flex: 10;
    -ms-flex: 10;
    flex: 10;
  }
  .flex\@md-order-10 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .flex\@md-11 {
    min-width: 0;
    -webkit-box-flex: 11;
    -ms-flex: 11;
    flex: 11;
  }
  .flex\@md-order-11 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .flex\@md-12 {
    min-width: 0;
    -webkit-box-flex: 12;
    -ms-flex: 12;
    flex: 12;
  }
  .flex\@md-order-12 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media all and (min-width: 1152px) and (-ms-high-contrast: none) {
  .flex\@md-1 {
    flex: auto;
    flex-grow: 1;
  }
  .flex\@md-2 {
    flex: auto;
    flex-grow: 2;
  }
  .flex\@md-3 {
    flex: auto;
    flex-grow: 3;
  }
  .flex\@md-4 {
    flex: auto;
    flex-grow: 4;
  }
  .flex\@md-5 {
    flex: auto;
    flex-grow: 5;
  }
  .flex\@md-6 {
    flex: auto;
    flex-grow: 6;
  }
  .flex\@md-7 {
    flex: auto;
    flex-grow: 7;
  }
  .flex\@md-8 {
    flex: auto;
    flex-grow: 8;
  }
  .flex\@md-9 {
    flex: auto;
    flex-grow: 9;
  }
  .flex\@md-10 {
    flex: auto;
    flex-grow: 10;
  }
  .flex\@md-11 {
    flex: auto;
    flex-grow: 11;
  }
  .flex\@md-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 1152px) {
  .ie-11 .flex\@md-1 {
    flex: auto;
    flex-grow: 1;
  }
  .ie-11 .flex\@md-2 {
    flex: auto;
    flex-grow: 2;
  }
  .ie-11 .flex\@md-3 {
    flex: auto;
    flex-grow: 3;
  }
  .ie-11 .flex\@md-4 {
    flex: auto;
    flex-grow: 4;
  }
  .ie-11 .flex\@md-5 {
    flex: auto;
    flex-grow: 5;
  }
  .ie-11 .flex\@md-6 {
    flex: auto;
    flex-grow: 6;
  }
  .ie-11 .flex\@md-7 {
    flex: auto;
    flex-grow: 7;
  }
  .ie-11 .flex\@md-8 {
    flex: auto;
    flex-grow: 8;
  }
  .ie-11 .flex\@md-9 {
    flex: auto;
    flex-grow: 9;
  }
  .ie-11 .flex\@md-10 {
    flex: auto;
    flex-grow: 10;
  }
  .ie-11 .flex\@md-11 {
    flex: auto;
    flex-grow: 11;
  }
  .ie-11 .flex\@md-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 1152px) {
  .list\@md-style-none {
    list-style: none;
  }
}
@media (min-width: 1152px) {
  .columns\@md-0 {
    column-count: 0;
  }
  .columns\@md-1 {
    column-count: 1;
  }
  .columns\@md-2 {
    column-count: 2;
  }
  .columns\@md-3 {
    column-count: 3;
  }
  .columns\@md-4 {
    column-count: 4;
  }
  .columns\@md-5 {
    column-count: 5;
  }
  .columns\@md-6 {
    column-count: 6;
  }
  .columns\@md-7 {
    column-count: 7;
  }
  .columns\@md-8 {
    column-count: 8;
  }
  .columns\@md-9 {
    column-count: 9;
  }
}
@media (min-width: 1152px) {
  .overflow\@md-auto {
    overflow: auto;
  }
  .overflow\@md-y-auto {
    overflow-y: auto;
  }
  .overflow\@md-x-auto {
    overflow-x: auto;
  }
  .overflow\@md-hidden {
    overflow: hidden;
  }
  .overflow\@md-y-hidden {
    overflow-y: hidden;
  }
  .overflow\@md-x-hidden {
    overflow-x: hidden;
  }
  .overflow\@md-visible {
    overflow: visible;
  }
  .overflow\@md-y-visible {
    overflow-y: visible;
  }
  .overflow\@md-x-visible {
    overflow-x: visible;
  }
  .overflow\@md-scroll {
    overflow: scroll;
  }
  .overflow\@md-y-scroll {
    overflow-y: scroll;
  }
  .overflow\@md-x-scroll {
    overflow-x: scroll;
  }
  .overflow\@md-overlay {
    overflow: overlay;
  }
  .overflow\@md-y-overlay {
    overflow-y: overlay;
  }
  .overflow\@md-x-overlay {
    overflow-x: overlay;
  }
}
@media (min-width: 1152px) {
  .text-overflow\@md-clip {
    text-overflow: clip;
  }
  .text-overflow\@md-ellipsis {
    text-overflow: ellipsis;
  }
  .text-overflow\@md-initial {
    text-overflow: initial;
  }
  .text-overflow\@md-inherit {
    text-overflow: inherit;
  }
}
@media (min-width: 1300px) {
  .w\@lg-auto {
    width: auto;
  }
  .w\@lg-1 {
    width: 100%;
  }
  .w\@lg-75 {
    width: 75%;
  }
  .w\@lg-50 {
    width: 50%;
  }
  .w\@lg-33 {
    width: 33.3333333333%;
  }
  .w\@lg-25 {
    width: 25%;
  }
  .w\@lg-12 {
    width: 12.5%;
  }

  .wMin\@lg-auto {
    min-width: auto;
  }
  .wMin\@lg-1 {
    min-width: 100%;
  }
  .wMin\@lg-75 {
    min-width: 75%;
  }
  .wMin\@lg-50 {
    min-width: 50%;
  }
  .wMin\@lg-33 {
    min-width: 33.3333333333%;
  }
  .wMin\@lg-25 {
    min-width: 25%;
  }
  .wMin\@lg-12 {
    min-width: 12.5%;
  }

  .wMax\@lg-auto {
    max-width: auto;
  }
  .wMax\@lg-1 {
    max-width: 100%;
  }
  .wMax\@lg-75 {
    max-width: 75%;
  }
  .wMax\@lg-50 {
    max-width: 50%;
  }
  .wMax\@lg-33 {
    max-width: 33.3333333333%;
  }
  .wMax\@lg-25 {
    max-width: 25%;
  }
  .wMax\@lg-12 {
    max-width: 12.5%;
  }

  .h\@lg-auto {
    height: auto;
  }
  .h\@lg-1 {
    height: 100%;
  }
  .h\@lg-75 {
    height: 75%;
  }
  .h\@lg-50 {
    height: 50%;
  }
  .h\@lg-33 {
    height: 33.3333333333%;
  }
  .h\@lg-25 {
    height: 25%;
  }
  .h\@lg-12 {
    height: 12.5%;
  }

  .hMin\@lg-auto {
    min-height: auto;
  }
  .hMin\@lg-1 {
    min-height: 100%;
  }
  .hMin\@lg-75 {
    min-height: 75%;
  }
  .hMin\@lg-50 {
    min-height: 50%;
  }
  .hMin\@lg-33 {
    min-height: 33.3333333333%;
  }
  .hMin\@lg-25 {
    min-height: 25%;
  }
  .hMin\@lg-12 {
    min-height: 12.5%;
  }

  .hMax\@lg-auto {
    max-height: auto;
  }
  .hMax\@lg-1 {
    max-height: 100%;
  }
  .hMax\@lg-75 {
    max-height: 75%;
  }
  .hMax\@lg-50 {
    max-height: 50%;
  }
  .hMax\@lg-33 {
    max-height: 33.3333333333%;
  }
  .hMax\@lg-25 {
    max-height: 25%;
  }
  .hMax\@lg-12 {
    max-height: 12.5%;
  }

  .m\@lg-0.m\@lg-0 {
    margin: 0px;
  }
  .m\@lg-auto.m\@lg-auto {
    margin: auto;
  }
  .mt\@lg-0.mt\@lg-0 {
    margin-top: 0px;
  }
  .mt\@lg-auto.mt\@lg-auto {
    margin-top: auto;
  }
  .mr\@lg-0.mr\@lg-0 {
    margin-right: 0px;
  }
  .mr\@lg-auto.mr\@lg-auto {
    margin-right: auto;
  }
  .mb\@lg-0.mb\@lg-0 {
    margin-bottom: 0px;
  }
  .mb\@lg-auto.mb\@lg-auto {
    margin-bottom: auto;
  }
  .ml\@lg-0.ml\@lg-0 {
    margin-left: 0px;
  }
  .ml\@lg-auto.ml\@lg-auto {
    margin-left: auto;
  }
  .my\@lg-0.my\@lg-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mx\@lg-0.mx\@lg-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .my\@lg-auto.my\@lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@lg-auto.mx\@lg-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@lg-1.m\@lg-1 {
    margin: 4px;
  }
  .m\@lg-auto.m\@lg-auto {
    margin: auto;
  }
  .mt\@lg-1.mt\@lg-1 {
    margin-top: 4px;
  }
  .mt\@lg-auto.mt\@lg-auto {
    margin-top: auto;
  }
  .mr\@lg-1.mr\@lg-1 {
    margin-right: 4px;
  }
  .mr\@lg-auto.mr\@lg-auto {
    margin-right: auto;
  }
  .mb\@lg-1.mb\@lg-1 {
    margin-bottom: 4px;
  }
  .mb\@lg-auto.mb\@lg-auto {
    margin-bottom: auto;
  }
  .ml\@lg-1.ml\@lg-1 {
    margin-left: 4px;
  }
  .ml\@lg-auto.ml\@lg-auto {
    margin-left: auto;
  }
  .my\@lg-1.my\@lg-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .mx\@lg-1.mx\@lg-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .my\@lg-auto.my\@lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@lg-auto.mx\@lg-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@lg-2.m\@lg-2 {
    margin: 8px;
  }
  .m\@lg-auto.m\@lg-auto {
    margin: auto;
  }
  .mt\@lg-2.mt\@lg-2 {
    margin-top: 8px;
  }
  .mt\@lg-auto.mt\@lg-auto {
    margin-top: auto;
  }
  .mr\@lg-2.mr\@lg-2 {
    margin-right: 8px;
  }
  .mr\@lg-auto.mr\@lg-auto {
    margin-right: auto;
  }
  .mb\@lg-2.mb\@lg-2 {
    margin-bottom: 8px;
  }
  .mb\@lg-auto.mb\@lg-auto {
    margin-bottom: auto;
  }
  .ml\@lg-2.ml\@lg-2 {
    margin-left: 8px;
  }
  .ml\@lg-auto.ml\@lg-auto {
    margin-left: auto;
  }
  .my\@lg-2.my\@lg-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx\@lg-2.mx\@lg-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .my\@lg-auto.my\@lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@lg-auto.mx\@lg-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@lg-3.m\@lg-3 {
    margin: 16px;
  }
  .m\@lg-auto.m\@lg-auto {
    margin: auto;
  }
  .mt\@lg-3.mt\@lg-3 {
    margin-top: 16px;
  }
  .mt\@lg-auto.mt\@lg-auto {
    margin-top: auto;
  }
  .mr\@lg-3.mr\@lg-3 {
    margin-right: 16px;
  }
  .mr\@lg-auto.mr\@lg-auto {
    margin-right: auto;
  }
  .mb\@lg-3.mb\@lg-3 {
    margin-bottom: 16px;
  }
  .mb\@lg-auto.mb\@lg-auto {
    margin-bottom: auto;
  }
  .ml\@lg-3.ml\@lg-3 {
    margin-left: 16px;
  }
  .ml\@lg-auto.ml\@lg-auto {
    margin-left: auto;
  }
  .my\@lg-3.my\@lg-3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx\@lg-3.mx\@lg-3 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .my\@lg-auto.my\@lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@lg-auto.mx\@lg-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@lg-4.m\@lg-4 {
    margin: 32px;
  }
  .m\@lg-auto.m\@lg-auto {
    margin: auto;
  }
  .mt\@lg-4.mt\@lg-4 {
    margin-top: 32px;
  }
  .mt\@lg-auto.mt\@lg-auto {
    margin-top: auto;
  }
  .mr\@lg-4.mr\@lg-4 {
    margin-right: 32px;
  }
  .mr\@lg-auto.mr\@lg-auto {
    margin-right: auto;
  }
  .mb\@lg-4.mb\@lg-4 {
    margin-bottom: 32px;
  }
  .mb\@lg-auto.mb\@lg-auto {
    margin-bottom: auto;
  }
  .ml\@lg-4.ml\@lg-4 {
    margin-left: 32px;
  }
  .ml\@lg-auto.ml\@lg-auto {
    margin-left: auto;
  }
  .my\@lg-4.my\@lg-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx\@lg-4.mx\@lg-4 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .my\@lg-auto.my\@lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@lg-auto.mx\@lg-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@lg-5.m\@lg-5 {
    margin: 64px;
  }
  .m\@lg-auto.m\@lg-auto {
    margin: auto;
  }
  .mt\@lg-5.mt\@lg-5 {
    margin-top: 64px;
  }
  .mt\@lg-auto.mt\@lg-auto {
    margin-top: auto;
  }
  .mr\@lg-5.mr\@lg-5 {
    margin-right: 64px;
  }
  .mr\@lg-auto.mr\@lg-auto {
    margin-right: auto;
  }
  .mb\@lg-5.mb\@lg-5 {
    margin-bottom: 64px;
  }
  .mb\@lg-auto.mb\@lg-auto {
    margin-bottom: auto;
  }
  .ml\@lg-5.ml\@lg-5 {
    margin-left: 64px;
  }
  .ml\@lg-auto.ml\@lg-auto {
    margin-left: auto;
  }
  .my\@lg-5.my\@lg-5 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx\@lg-5.mx\@lg-5 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .my\@lg-auto.my\@lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@lg-auto.mx\@lg-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@lg-6.m\@lg-6 {
    margin: 128px;
  }
  .m\@lg-auto.m\@lg-auto {
    margin: auto;
  }
  .mt\@lg-6.mt\@lg-6 {
    margin-top: 128px;
  }
  .mt\@lg-auto.mt\@lg-auto {
    margin-top: auto;
  }
  .mr\@lg-6.mr\@lg-6 {
    margin-right: 128px;
  }
  .mr\@lg-auto.mr\@lg-auto {
    margin-right: auto;
  }
  .mb\@lg-6.mb\@lg-6 {
    margin-bottom: 128px;
  }
  .mb\@lg-auto.mb\@lg-auto {
    margin-bottom: auto;
  }
  .ml\@lg-6.ml\@lg-6 {
    margin-left: 128px;
  }
  .ml\@lg-auto.ml\@lg-auto {
    margin-left: auto;
  }
  .my\@lg-6.my\@lg-6 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx\@lg-6.mx\@lg-6 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .my\@lg-auto.my\@lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@lg-auto.mx\@lg-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@lg-7.m\@lg-7 {
    margin: 256px;
  }
  .m\@lg-auto.m\@lg-auto {
    margin: auto;
  }
  .mt\@lg-7.mt\@lg-7 {
    margin-top: 256px;
  }
  .mt\@lg-auto.mt\@lg-auto {
    margin-top: auto;
  }
  .mr\@lg-7.mr\@lg-7 {
    margin-right: 256px;
  }
  .mr\@lg-auto.mr\@lg-auto {
    margin-right: auto;
  }
  .mb\@lg-7.mb\@lg-7 {
    margin-bottom: 256px;
  }
  .mb\@lg-auto.mb\@lg-auto {
    margin-bottom: auto;
  }
  .ml\@lg-7.ml\@lg-7 {
    margin-left: 256px;
  }
  .ml\@lg-auto.ml\@lg-auto {
    margin-left: auto;
  }
  .my\@lg-7.my\@lg-7 {
    margin-top: 256px;
    margin-bottom: 256px;
  }
  .mx\@lg-7.mx\@lg-7 {
    margin-right: 256px;
    margin-left: 256px;
  }
  .my\@lg-auto.my\@lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@lg-auto.mx\@lg-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .p\@lg-0.p\@lg-0 {
    padding: 0px;
  }
  .p\@lg-auto.p\@lg-auto {
    padding: auto;
  }
  .pt\@lg-0.pt\@lg-0 {
    padding-top: 0px;
  }
  .pt\@lg-auto.pt\@lg-auto {
    padding-top: auto;
  }
  .pr\@lg-0.pr\@lg-0 {
    padding-right: 0px;
  }
  .pr\@lg-auto.pr\@lg-auto {
    padding-right: auto;
  }
  .pb\@lg-0.pb\@lg-0 {
    padding-bottom: 0px;
  }
  .pb\@lg-auto.pb\@lg-auto {
    padding-bottom: auto;
  }
  .pl\@lg-0.pl\@lg-0 {
    padding-left: 0px;
  }
  .pl\@lg-auto.pl\@lg-auto {
    padding-left: auto;
  }
  .py\@lg-0.py\@lg-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .px\@lg-0.px\@lg-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .py\@lg-auto.py\@lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@lg-auto.px\@lg-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@lg-1.p\@lg-1 {
    padding: 4px;
  }
  .p\@lg-auto.p\@lg-auto {
    padding: auto;
  }
  .pt\@lg-1.pt\@lg-1 {
    padding-top: 4px;
  }
  .pt\@lg-auto.pt\@lg-auto {
    padding-top: auto;
  }
  .pr\@lg-1.pr\@lg-1 {
    padding-right: 4px;
  }
  .pr\@lg-auto.pr\@lg-auto {
    padding-right: auto;
  }
  .pb\@lg-1.pb\@lg-1 {
    padding-bottom: 4px;
  }
  .pb\@lg-auto.pb\@lg-auto {
    padding-bottom: auto;
  }
  .pl\@lg-1.pl\@lg-1 {
    padding-left: 4px;
  }
  .pl\@lg-auto.pl\@lg-auto {
    padding-left: auto;
  }
  .py\@lg-1.py\@lg-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .px\@lg-1.px\@lg-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .py\@lg-auto.py\@lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@lg-auto.px\@lg-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@lg-2.p\@lg-2 {
    padding: 8px;
  }
  .p\@lg-auto.p\@lg-auto {
    padding: auto;
  }
  .pt\@lg-2.pt\@lg-2 {
    padding-top: 8px;
  }
  .pt\@lg-auto.pt\@lg-auto {
    padding-top: auto;
  }
  .pr\@lg-2.pr\@lg-2 {
    padding-right: 8px;
  }
  .pr\@lg-auto.pr\@lg-auto {
    padding-right: auto;
  }
  .pb\@lg-2.pb\@lg-2 {
    padding-bottom: 8px;
  }
  .pb\@lg-auto.pb\@lg-auto {
    padding-bottom: auto;
  }
  .pl\@lg-2.pl\@lg-2 {
    padding-left: 8px;
  }
  .pl\@lg-auto.pl\@lg-auto {
    padding-left: auto;
  }
  .py\@lg-2.py\@lg-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px\@lg-2.px\@lg-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .py\@lg-auto.py\@lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@lg-auto.px\@lg-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@lg-3.p\@lg-3 {
    padding: 16px;
  }
  .p\@lg-auto.p\@lg-auto {
    padding: auto;
  }
  .pt\@lg-3.pt\@lg-3 {
    padding-top: 16px;
  }
  .pt\@lg-auto.pt\@lg-auto {
    padding-top: auto;
  }
  .pr\@lg-3.pr\@lg-3 {
    padding-right: 16px;
  }
  .pr\@lg-auto.pr\@lg-auto {
    padding-right: auto;
  }
  .pb\@lg-3.pb\@lg-3 {
    padding-bottom: 16px;
  }
  .pb\@lg-auto.pb\@lg-auto {
    padding-bottom: auto;
  }
  .pl\@lg-3.pl\@lg-3 {
    padding-left: 16px;
  }
  .pl\@lg-auto.pl\@lg-auto {
    padding-left: auto;
  }
  .py\@lg-3.py\@lg-3 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px\@lg-3.px\@lg-3 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .py\@lg-auto.py\@lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@lg-auto.px\@lg-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@lg-4.p\@lg-4 {
    padding: 32px;
  }
  .p\@lg-auto.p\@lg-auto {
    padding: auto;
  }
  .pt\@lg-4.pt\@lg-4 {
    padding-top: 32px;
  }
  .pt\@lg-auto.pt\@lg-auto {
    padding-top: auto;
  }
  .pr\@lg-4.pr\@lg-4 {
    padding-right: 32px;
  }
  .pr\@lg-auto.pr\@lg-auto {
    padding-right: auto;
  }
  .pb\@lg-4.pb\@lg-4 {
    padding-bottom: 32px;
  }
  .pb\@lg-auto.pb\@lg-auto {
    padding-bottom: auto;
  }
  .pl\@lg-4.pl\@lg-4 {
    padding-left: 32px;
  }
  .pl\@lg-auto.pl\@lg-auto {
    padding-left: auto;
  }
  .py\@lg-4.py\@lg-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px\@lg-4.px\@lg-4 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .py\@lg-auto.py\@lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@lg-auto.px\@lg-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@lg-5.p\@lg-5 {
    padding: 64px;
  }
  .p\@lg-auto.p\@lg-auto {
    padding: auto;
  }
  .pt\@lg-5.pt\@lg-5 {
    padding-top: 64px;
  }
  .pt\@lg-auto.pt\@lg-auto {
    padding-top: auto;
  }
  .pr\@lg-5.pr\@lg-5 {
    padding-right: 64px;
  }
  .pr\@lg-auto.pr\@lg-auto {
    padding-right: auto;
  }
  .pb\@lg-5.pb\@lg-5 {
    padding-bottom: 64px;
  }
  .pb\@lg-auto.pb\@lg-auto {
    padding-bottom: auto;
  }
  .pl\@lg-5.pl\@lg-5 {
    padding-left: 64px;
  }
  .pl\@lg-auto.pl\@lg-auto {
    padding-left: auto;
  }
  .py\@lg-5.py\@lg-5 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px\@lg-5.px\@lg-5 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .py\@lg-auto.py\@lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@lg-auto.px\@lg-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@lg-6.p\@lg-6 {
    padding: 128px;
  }
  .p\@lg-auto.p\@lg-auto {
    padding: auto;
  }
  .pt\@lg-6.pt\@lg-6 {
    padding-top: 128px;
  }
  .pt\@lg-auto.pt\@lg-auto {
    padding-top: auto;
  }
  .pr\@lg-6.pr\@lg-6 {
    padding-right: 128px;
  }
  .pr\@lg-auto.pr\@lg-auto {
    padding-right: auto;
  }
  .pb\@lg-6.pb\@lg-6 {
    padding-bottom: 128px;
  }
  .pb\@lg-auto.pb\@lg-auto {
    padding-bottom: auto;
  }
  .pl\@lg-6.pl\@lg-6 {
    padding-left: 128px;
  }
  .pl\@lg-auto.pl\@lg-auto {
    padding-left: auto;
  }
  .py\@lg-6.py\@lg-6 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px\@lg-6.px\@lg-6 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py\@lg-auto.py\@lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@lg-auto.px\@lg-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@lg-7.p\@lg-7 {
    padding: 256px;
  }
  .p\@lg-auto.p\@lg-auto {
    padding: auto;
  }
  .pt\@lg-7.pt\@lg-7 {
    padding-top: 256px;
  }
  .pt\@lg-auto.pt\@lg-auto {
    padding-top: auto;
  }
  .pr\@lg-7.pr\@lg-7 {
    padding-right: 256px;
  }
  .pr\@lg-auto.pr\@lg-auto {
    padding-right: auto;
  }
  .pb\@lg-7.pb\@lg-7 {
    padding-bottom: 256px;
  }
  .pb\@lg-auto.pb\@lg-auto {
    padding-bottom: auto;
  }
  .pl\@lg-7.pl\@lg-7 {
    padding-left: 256px;
  }
  .pl\@lg-auto.pl\@lg-auto {
    padding-left: auto;
  }
  .py\@lg-7.py\@lg-7 {
    padding-top: 256px;
    padding-bottom: 256px;
  }
  .px\@lg-7.px\@lg-7 {
    padding-right: 256px;
    padding-left: 256px;
  }
  .py\@lg-auto.py\@lg-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@lg-auto.px\@lg-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .border-none {
    border-style: none;
  }
  .border-dotted {
    border-style: dotted;
  }
  .border-dashed {
    border-style: dashed;
  }
  .border-solid {
    border-style: solid;
  }
  .border-double {
    border-style: double;
  }
  .border-groove {
    border-style: groove;
  }
  .border-ridge {
    border-style: ridge;
  }
  .border-inset {
    border-style: inset;
  }
  .border-outset {
    border-style: outset;
  }
  .border\@lg {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-top {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-top-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-top-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-top-none {
    border-top-style: none;
  }
  .border\@lg-top-dotted {
    border-top-style: dotted;
  }
  .border\@lg-top-dashed {
    border-top-style: dashed;
  }
  .border\@lg-top-solid {
    border-top-style: solid;
  }
  .border\@lg-top-double {
    border-top-style: double;
  }
  .border\@lg-top-groove {
    border-top-style: groove;
  }
  .border\@lg-top-ridge {
    border-top-style: ridge;
  }
  .border\@lg-top-inset {
    border-top-style: inset;
  }
  .border\@lg-top-outset {
    border-top-style: outset;
  }
  .border\@lg-top-thin {
    border-top-width: thin;
  }
  .border\@lg-top-medium {
    border-top-width: medium;
  }
  .border\@lg-top-thick {
    border-top-width: thick;
  }
  .border\@lg {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-right {
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-right-light {
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-right-dark {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-right-none {
    border-right-style: none;
  }
  .border\@lg-right-dotted {
    border-right-style: dotted;
  }
  .border\@lg-right-dashed {
    border-right-style: dashed;
  }
  .border\@lg-right-solid {
    border-right-style: solid;
  }
  .border\@lg-right-double {
    border-right-style: double;
  }
  .border\@lg-right-groove {
    border-right-style: groove;
  }
  .border\@lg-right-ridge {
    border-right-style: ridge;
  }
  .border\@lg-right-inset {
    border-right-style: inset;
  }
  .border\@lg-right-outset {
    border-right-style: outset;
  }
  .border\@lg-right-thin {
    border-right-width: thin;
  }
  .border\@lg-right-medium {
    border-right-width: medium;
  }
  .border\@lg-right-thick {
    border-right-width: thick;
  }
  .border\@lg {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-bottom-dark {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-bottom-none {
    border-bottom-style: none;
  }
  .border\@lg-bottom-dotted {
    border-bottom-style: dotted;
  }
  .border\@lg-bottom-dashed {
    border-bottom-style: dashed;
  }
  .border\@lg-bottom-solid {
    border-bottom-style: solid;
  }
  .border\@lg-bottom-double {
    border-bottom-style: double;
  }
  .border\@lg-bottom-groove {
    border-bottom-style: groove;
  }
  .border\@lg-bottom-ridge {
    border-bottom-style: ridge;
  }
  .border\@lg-bottom-inset {
    border-bottom-style: inset;
  }
  .border\@lg-bottom-outset {
    border-bottom-style: outset;
  }
  .border\@lg-bottom-thin {
    border-bottom-width: thin;
  }
  .border\@lg-bottom-medium {
    border-bottom-width: medium;
  }
  .border\@lg-bottom-thick {
    border-bottom-width: thick;
  }
  .border\@lg {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-left {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-left-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-left-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-left-none {
    border-left-style: none;
  }
  .border\@lg-left-dotted {
    border-left-style: dotted;
  }
  .border\@lg-left-dashed {
    border-left-style: dashed;
  }
  .border\@lg-left-solid {
    border-left-style: solid;
  }
  .border\@lg-left-double {
    border-left-style: double;
  }
  .border\@lg-left-groove {
    border-left-style: groove;
  }
  .border\@lg-left-ridge {
    border-left-style: ridge;
  }
  .border\@lg-left-inset {
    border-left-style: inset;
  }
  .border\@lg-left-outset {
    border-left-style: outset;
  }
  .border\@lg-left-thin {
    border-left-width: thin;
  }
  .border\@lg-left-medium {
    border-left-width: medium;
  }
  .border\@lg-left-thick {
    border-left-width: thick;
  }
  .border\@lg-y {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-y-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-y-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-x {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@lg-x-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@lg-x-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@lg-radius {
    border-radius: 4px;
  }
  .border\@lg-radius-top-left {
    border-top-left-radius: 4px;
  }
  .border\@lg-radius-top-right {
    border-top-right-radius: 4px;
  }
  .border\@lg-radius-bottom-left {
    border-bottom-left-radius: 4px;
  }
  .border\@lg-radius-bottom-right {
    border-bottom-right-radius: 4px;
  }

  .font-style\@lg-oblique {
    font-style: oblique;
  }

  .font-style\@lg-italic {
    font-style: italic;
  }

  .font\@lg-ui {
    font-family: "Noto Sans", sans-serif !important;
  }

  .font\@lg-content {
    font-family: "Brill", "Georgia", serif !important;
  }

  .font\@lg-header {
    font-family: "Brill", "Georgia", serif !important;
  }

  .fw\@lg-1 {
    font-weight: 300 !important;
  }

  .fw\@lg-2 {
    font-weight: 400 !important;
  }

  .fw\@lg-3 {
    font-weight: 500 !important;
  }

  .fw\@lg-4 {
    font-weight: 600 !important;
  }

  .f\@lg-1 {
    font-size: 0.875rem !important;
  }

  .f\@lg-2 {
    font-size: 1rem !important;
  }

  .f\@lg-3 {
    font-size: 1.125rem !important;
  }

  .f\@lg-4 {
    font-size: 1.5rem !important;
  }

  .f\@lg-5 {
    font-size: 1.75rem !important;
  }

  .f\@lg-6 {
    font-size: 2.125rem !important;
  }

  .f\@lg-7 {
    font-size: 2.8125rem !important;
  }

  .f\@lg-8 {
    font-size: 1.125rem !important;
  }

  .f\@lg-9 {
    font-size: 3.5rem !important;
  }

  .f\@lg-10 {
    font-size: 5rem !important;
  }

  .ln\@lg-1 {
    line-height: 1.125rem !important;
  }

  .ln\@lg-2 {
    line-height: 1.25rem !important;
  }

  .ln\@lg-3 {
    line-height: 1.5rem !important;
  }

  .ln\@lg-4 {
    line-height: 1.75rem !important;
  }

  .ln\@lg-5 {
    line-height: 2rem !important;
  }

  .ln\@lg-6 {
    line-height: 2.125rem !important;
  }

  .ln\@lg-7 {
    line-height: 3rem !important;
  }

  .ln\@lg-8 {
    line-height: 4.5rem !important;
  }

  .ln\@lg-9 {
    line-height: 5.5rem !important;
  }

  .ln\@lg-10 {
    line-height: 6.5rem !important;
  }

  .text\@lg-left, .text-align\@lg-left {
    text-align: left;
  }
  .text\@lg-center, .text-align\@lg-center {
    text-align: center;
  }
  .text\@lg-right, .text-align\@lg-right {
    text-align: right;
  }
  .text\@lg-justify, .text-align\@lg-justify {
    text-align: justify;
  }
  .text\@lg-nowrap, .text-align\@lg-nowrap {
    white-space: nowrap;
  }
  .text\@lg-wrap, .text-align\@lg-wrap {
    white-space: wrap;
  }
  .text\@lg-pre, .text-align\@lg-pre {
    white-space: pre;
  }
  .text\@lg-pre-line, .text-align\@lg-pre-line {
    white-space: pre-line;
  }
  .text\@lg-pre-wrap, .text-align\@lg-pre-wrap {
    white-space: pre-wrap;
  }

  .text-transform\@lg-uppercase {
    text-transform: uppercase;
  }

  .text-transform\@lg-lowercase {
    text-transform: lowercase;
  }

  .text-transform\@lg-capitalize {
    text-transform: capitalize;
  }

  .text-transform\@lg-none {
    text-transform: none;
  }

  .display\@lg-none.display\@lg-none,
.hidden\@lg.hidden\@lg {
    display: none;
  }

  .display\@lg-inline.display\@lg-inline,
.inline\@lg.inline\@lg {
    display: inline;
  }

  .display\@lg-inline-block.display\@lg-inline-block, .inline-block\@lg.inline-block\@lg {
    display: inline-block;
  }

  .display\@lg-inline-flex.display\@lg-inline-flex {
    display: inline-flex;
  }

  .display\@lg-block.display\@lg-block,
.block\@lg.block\@lg {
    display: block;
  }

  .display\@lg-flex.display\@lg-flex {
    display: flex;
  }

  .display\@lg-table.display\@lg-table {
    display: table;
  }

  .display\@lg-contents.display\@lg-contents {
    display: contents;
  }

  .display\@lg-before-block.display\@lg-before-block:before,
.before-block\@lg.before-block\@lg:before {
    content: "";
    display: block;
  }

  .position\@lg-relative.position\@lg-relative {
    position: relative;
  }

  .position\@lg-fixed.position\@lg-fixed,
.display\@lg-fixed.display\@lg-fixed,
.fixed\@lg.fixed\@lg {
    position: fixed;
    visibility: visible;
    z-index: 99;
  }

  .position\@lg-absolute.position\@lg-absolute,
.display\@lg-absolute.display\@lg-absolute,
.absolute\@lg.absolute\@lg {
    position: absolute;
    visibility: visible;
  }

  .position\@lg-sticky.position\@lg-sticky,
.display\@lg-sticky.display\@lg-sticky,
.sticky\@lg.sticky\@lg {
    position: -webkit-sticky;
    position: sticky;
    visibility: visible;
  }

  .position\@lg-sticky-top.position\@lg-sticky-top,
.display\@lg-sticky-top.display\@lg-sticky-top,
.sticky-top\@lg.sticky-top\@lg {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    visibility: visible;
  }

  .position\@lg-sticky-bottom.position\@lg-sticky-bottom,
.display\@lg-sticky-bottom.display\@lg-sticky-bottom,
.sticky-bottom\@lg.sticky-bottom\@lg {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    visibility: visible;
  }

  .visibility\@lg-visible {
    visibility: visible;
  }

  .visibility\@lg-hidden {
    visibility: hidden;
  }

  .flex\@lg.flex\@lg {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex\@lg-inline.flex\@lg-inline {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex\@lg-col.flex\@lg-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex\@lg-col-reverse.flex\@lg-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex\@lg-row.flex\@lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex\@lg-row-reverse.flex\@lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex\@lg-wrap.flex\@lg-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex\@lg-nowrap.flex\@lg-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex\@lg-align-stretch.flex\@lg-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex\@lg-align-center.flex\@lg-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex\@lg-align-start.flex\@lg-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex\@lg-align-end.flex\@lg-align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex\@lg-align-self-stretch.flex\@lg-align-self-stretch {
    align-self: stretch;
  }
  .flex\@lg-align-self-center.flex\@lg-align-self-center {
    align-self: center;
  }
  .flex\@lg-align-self-start.flex\@lg-align-self-start {
    align-self: flex-start;
  }
  .flex\@lg-align-self-end.flex\@lg-align-self-end {
    align-self: flex-end;
  }
  .flex\@lg-justify-start.flex\@lg-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex\@lg-justify-end.flex\@lg-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex\@lg-justify-center.flex\@lg-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex\@lg-justify-btw.flex\@lg-justify-btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex\@lg-justify-around.flex\@lg-justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex\@lg-justify-self-start.flex\@lg-justify-self-start {
    justify-self: flex-start;
  }
  .flex\@lg-justify-self-end.flex\@lg-justify-self-end {
    justify-self: flex-end;
  }
  .flex\@lg-justify-self-center.flex\@lg-justify-self-center {
    justify-self: center;
  }
  .flex\@lg-justify-self-btw.flex\@lg-justify-self-btw {
    justify-self: space-between;
  }
  .flex\@lg-justify-self-around.flex\@lg-justify-self-around {
    justify-self: space-around;
  }
  .flex\@lg-1 {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex\@lg-order-1 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex\@lg-2 {
    min-width: 0;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .flex\@lg-order-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex\@lg-3 {
    min-width: 0;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
  }
  .flex\@lg-order-3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .flex\@lg-4 {
    min-width: 0;
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
  .flex\@lg-order-4 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .flex\@lg-5 {
    min-width: 0;
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
  }
  .flex\@lg-order-5 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .flex\@lg-6 {
    min-width: 0;
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
  .flex\@lg-order-6 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .flex\@lg-7 {
    min-width: 0;
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7;
  }
  .flex\@lg-order-7 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .flex\@lg-8 {
    min-width: 0;
    -webkit-box-flex: 8;
    -ms-flex: 8;
    flex: 8;
  }
  .flex\@lg-order-8 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .flex\@lg-9 {
    min-width: 0;
    -webkit-box-flex: 9;
    -ms-flex: 9;
    flex: 9;
  }
  .flex\@lg-order-9 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .flex\@lg-10 {
    min-width: 0;
    -webkit-box-flex: 10;
    -ms-flex: 10;
    flex: 10;
  }
  .flex\@lg-order-10 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .flex\@lg-11 {
    min-width: 0;
    -webkit-box-flex: 11;
    -ms-flex: 11;
    flex: 11;
  }
  .flex\@lg-order-11 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .flex\@lg-12 {
    min-width: 0;
    -webkit-box-flex: 12;
    -ms-flex: 12;
    flex: 12;
  }
  .flex\@lg-order-12 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media all and (min-width: 1300px) and (-ms-high-contrast: none) {
  .flex\@lg-1 {
    flex: auto;
    flex-grow: 1;
  }
  .flex\@lg-2 {
    flex: auto;
    flex-grow: 2;
  }
  .flex\@lg-3 {
    flex: auto;
    flex-grow: 3;
  }
  .flex\@lg-4 {
    flex: auto;
    flex-grow: 4;
  }
  .flex\@lg-5 {
    flex: auto;
    flex-grow: 5;
  }
  .flex\@lg-6 {
    flex: auto;
    flex-grow: 6;
  }
  .flex\@lg-7 {
    flex: auto;
    flex-grow: 7;
  }
  .flex\@lg-8 {
    flex: auto;
    flex-grow: 8;
  }
  .flex\@lg-9 {
    flex: auto;
    flex-grow: 9;
  }
  .flex\@lg-10 {
    flex: auto;
    flex-grow: 10;
  }
  .flex\@lg-11 {
    flex: auto;
    flex-grow: 11;
  }
  .flex\@lg-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 1300px) {
  .ie-11 .flex\@lg-1 {
    flex: auto;
    flex-grow: 1;
  }
  .ie-11 .flex\@lg-2 {
    flex: auto;
    flex-grow: 2;
  }
  .ie-11 .flex\@lg-3 {
    flex: auto;
    flex-grow: 3;
  }
  .ie-11 .flex\@lg-4 {
    flex: auto;
    flex-grow: 4;
  }
  .ie-11 .flex\@lg-5 {
    flex: auto;
    flex-grow: 5;
  }
  .ie-11 .flex\@lg-6 {
    flex: auto;
    flex-grow: 6;
  }
  .ie-11 .flex\@lg-7 {
    flex: auto;
    flex-grow: 7;
  }
  .ie-11 .flex\@lg-8 {
    flex: auto;
    flex-grow: 8;
  }
  .ie-11 .flex\@lg-9 {
    flex: auto;
    flex-grow: 9;
  }
  .ie-11 .flex\@lg-10 {
    flex: auto;
    flex-grow: 10;
  }
  .ie-11 .flex\@lg-11 {
    flex: auto;
    flex-grow: 11;
  }
  .ie-11 .flex\@lg-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 1300px) {
  .list\@lg-style-none {
    list-style: none;
  }
}
@media (min-width: 1300px) {
  .columns\@lg-0 {
    column-count: 0;
  }
  .columns\@lg-1 {
    column-count: 1;
  }
  .columns\@lg-2 {
    column-count: 2;
  }
  .columns\@lg-3 {
    column-count: 3;
  }
  .columns\@lg-4 {
    column-count: 4;
  }
  .columns\@lg-5 {
    column-count: 5;
  }
  .columns\@lg-6 {
    column-count: 6;
  }
  .columns\@lg-7 {
    column-count: 7;
  }
  .columns\@lg-8 {
    column-count: 8;
  }
  .columns\@lg-9 {
    column-count: 9;
  }
}
@media (min-width: 1300px) {
  .overflow\@lg-auto {
    overflow: auto;
  }
  .overflow\@lg-y-auto {
    overflow-y: auto;
  }
  .overflow\@lg-x-auto {
    overflow-x: auto;
  }
  .overflow\@lg-hidden {
    overflow: hidden;
  }
  .overflow\@lg-y-hidden {
    overflow-y: hidden;
  }
  .overflow\@lg-x-hidden {
    overflow-x: hidden;
  }
  .overflow\@lg-visible {
    overflow: visible;
  }
  .overflow\@lg-y-visible {
    overflow-y: visible;
  }
  .overflow\@lg-x-visible {
    overflow-x: visible;
  }
  .overflow\@lg-scroll {
    overflow: scroll;
  }
  .overflow\@lg-y-scroll {
    overflow-y: scroll;
  }
  .overflow\@lg-x-scroll {
    overflow-x: scroll;
  }
  .overflow\@lg-overlay {
    overflow: overlay;
  }
  .overflow\@lg-y-overlay {
    overflow-y: overlay;
  }
  .overflow\@lg-x-overlay {
    overflow-x: overlay;
  }
}
@media (min-width: 1300px) {
  .text-overflow\@lg-clip {
    text-overflow: clip;
  }
  .text-overflow\@lg-ellipsis {
    text-overflow: ellipsis;
  }
  .text-overflow\@lg-initial {
    text-overflow: initial;
  }
  .text-overflow\@lg-inherit {
    text-overflow: inherit;
  }
}
@media (min-width: 1600px) {
  .w\@xl-auto {
    width: auto;
  }
  .w\@xl-1 {
    width: 100%;
  }
  .w\@xl-75 {
    width: 75%;
  }
  .w\@xl-50 {
    width: 50%;
  }
  .w\@xl-33 {
    width: 33.3333333333%;
  }
  .w\@xl-25 {
    width: 25%;
  }
  .w\@xl-12 {
    width: 12.5%;
  }

  .wMin\@xl-auto {
    min-width: auto;
  }
  .wMin\@xl-1 {
    min-width: 100%;
  }
  .wMin\@xl-75 {
    min-width: 75%;
  }
  .wMin\@xl-50 {
    min-width: 50%;
  }
  .wMin\@xl-33 {
    min-width: 33.3333333333%;
  }
  .wMin\@xl-25 {
    min-width: 25%;
  }
  .wMin\@xl-12 {
    min-width: 12.5%;
  }

  .wMax\@xl-auto {
    max-width: auto;
  }
  .wMax\@xl-1 {
    max-width: 100%;
  }
  .wMax\@xl-75 {
    max-width: 75%;
  }
  .wMax\@xl-50 {
    max-width: 50%;
  }
  .wMax\@xl-33 {
    max-width: 33.3333333333%;
  }
  .wMax\@xl-25 {
    max-width: 25%;
  }
  .wMax\@xl-12 {
    max-width: 12.5%;
  }

  .h\@xl-auto {
    height: auto;
  }
  .h\@xl-1 {
    height: 100%;
  }
  .h\@xl-75 {
    height: 75%;
  }
  .h\@xl-50 {
    height: 50%;
  }
  .h\@xl-33 {
    height: 33.3333333333%;
  }
  .h\@xl-25 {
    height: 25%;
  }
  .h\@xl-12 {
    height: 12.5%;
  }

  .hMin\@xl-auto {
    min-height: auto;
  }
  .hMin\@xl-1 {
    min-height: 100%;
  }
  .hMin\@xl-75 {
    min-height: 75%;
  }
  .hMin\@xl-50 {
    min-height: 50%;
  }
  .hMin\@xl-33 {
    min-height: 33.3333333333%;
  }
  .hMin\@xl-25 {
    min-height: 25%;
  }
  .hMin\@xl-12 {
    min-height: 12.5%;
  }

  .hMax\@xl-auto {
    max-height: auto;
  }
  .hMax\@xl-1 {
    max-height: 100%;
  }
  .hMax\@xl-75 {
    max-height: 75%;
  }
  .hMax\@xl-50 {
    max-height: 50%;
  }
  .hMax\@xl-33 {
    max-height: 33.3333333333%;
  }
  .hMax\@xl-25 {
    max-height: 25%;
  }
  .hMax\@xl-12 {
    max-height: 12.5%;
  }

  .m\@xl-0.m\@xl-0 {
    margin: 0px;
  }
  .m\@xl-auto.m\@xl-auto {
    margin: auto;
  }
  .mt\@xl-0.mt\@xl-0 {
    margin-top: 0px;
  }
  .mt\@xl-auto.mt\@xl-auto {
    margin-top: auto;
  }
  .mr\@xl-0.mr\@xl-0 {
    margin-right: 0px;
  }
  .mr\@xl-auto.mr\@xl-auto {
    margin-right: auto;
  }
  .mb\@xl-0.mb\@xl-0 {
    margin-bottom: 0px;
  }
  .mb\@xl-auto.mb\@xl-auto {
    margin-bottom: auto;
  }
  .ml\@xl-0.ml\@xl-0 {
    margin-left: 0px;
  }
  .ml\@xl-auto.ml\@xl-auto {
    margin-left: auto;
  }
  .my\@xl-0.my\@xl-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mx\@xl-0.mx\@xl-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .my\@xl-auto.my\@xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xl-auto.mx\@xl-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xl-1.m\@xl-1 {
    margin: 4px;
  }
  .m\@xl-auto.m\@xl-auto {
    margin: auto;
  }
  .mt\@xl-1.mt\@xl-1 {
    margin-top: 4px;
  }
  .mt\@xl-auto.mt\@xl-auto {
    margin-top: auto;
  }
  .mr\@xl-1.mr\@xl-1 {
    margin-right: 4px;
  }
  .mr\@xl-auto.mr\@xl-auto {
    margin-right: auto;
  }
  .mb\@xl-1.mb\@xl-1 {
    margin-bottom: 4px;
  }
  .mb\@xl-auto.mb\@xl-auto {
    margin-bottom: auto;
  }
  .ml\@xl-1.ml\@xl-1 {
    margin-left: 4px;
  }
  .ml\@xl-auto.ml\@xl-auto {
    margin-left: auto;
  }
  .my\@xl-1.my\@xl-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .mx\@xl-1.mx\@xl-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .my\@xl-auto.my\@xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xl-auto.mx\@xl-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xl-2.m\@xl-2 {
    margin: 8px;
  }
  .m\@xl-auto.m\@xl-auto {
    margin: auto;
  }
  .mt\@xl-2.mt\@xl-2 {
    margin-top: 8px;
  }
  .mt\@xl-auto.mt\@xl-auto {
    margin-top: auto;
  }
  .mr\@xl-2.mr\@xl-2 {
    margin-right: 8px;
  }
  .mr\@xl-auto.mr\@xl-auto {
    margin-right: auto;
  }
  .mb\@xl-2.mb\@xl-2 {
    margin-bottom: 8px;
  }
  .mb\@xl-auto.mb\@xl-auto {
    margin-bottom: auto;
  }
  .ml\@xl-2.ml\@xl-2 {
    margin-left: 8px;
  }
  .ml\@xl-auto.ml\@xl-auto {
    margin-left: auto;
  }
  .my\@xl-2.my\@xl-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx\@xl-2.mx\@xl-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .my\@xl-auto.my\@xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xl-auto.mx\@xl-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xl-3.m\@xl-3 {
    margin: 16px;
  }
  .m\@xl-auto.m\@xl-auto {
    margin: auto;
  }
  .mt\@xl-3.mt\@xl-3 {
    margin-top: 16px;
  }
  .mt\@xl-auto.mt\@xl-auto {
    margin-top: auto;
  }
  .mr\@xl-3.mr\@xl-3 {
    margin-right: 16px;
  }
  .mr\@xl-auto.mr\@xl-auto {
    margin-right: auto;
  }
  .mb\@xl-3.mb\@xl-3 {
    margin-bottom: 16px;
  }
  .mb\@xl-auto.mb\@xl-auto {
    margin-bottom: auto;
  }
  .ml\@xl-3.ml\@xl-3 {
    margin-left: 16px;
  }
  .ml\@xl-auto.ml\@xl-auto {
    margin-left: auto;
  }
  .my\@xl-3.my\@xl-3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx\@xl-3.mx\@xl-3 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .my\@xl-auto.my\@xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xl-auto.mx\@xl-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xl-4.m\@xl-4 {
    margin: 32px;
  }
  .m\@xl-auto.m\@xl-auto {
    margin: auto;
  }
  .mt\@xl-4.mt\@xl-4 {
    margin-top: 32px;
  }
  .mt\@xl-auto.mt\@xl-auto {
    margin-top: auto;
  }
  .mr\@xl-4.mr\@xl-4 {
    margin-right: 32px;
  }
  .mr\@xl-auto.mr\@xl-auto {
    margin-right: auto;
  }
  .mb\@xl-4.mb\@xl-4 {
    margin-bottom: 32px;
  }
  .mb\@xl-auto.mb\@xl-auto {
    margin-bottom: auto;
  }
  .ml\@xl-4.ml\@xl-4 {
    margin-left: 32px;
  }
  .ml\@xl-auto.ml\@xl-auto {
    margin-left: auto;
  }
  .my\@xl-4.my\@xl-4 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx\@xl-4.mx\@xl-4 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .my\@xl-auto.my\@xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xl-auto.mx\@xl-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xl-5.m\@xl-5 {
    margin: 64px;
  }
  .m\@xl-auto.m\@xl-auto {
    margin: auto;
  }
  .mt\@xl-5.mt\@xl-5 {
    margin-top: 64px;
  }
  .mt\@xl-auto.mt\@xl-auto {
    margin-top: auto;
  }
  .mr\@xl-5.mr\@xl-5 {
    margin-right: 64px;
  }
  .mr\@xl-auto.mr\@xl-auto {
    margin-right: auto;
  }
  .mb\@xl-5.mb\@xl-5 {
    margin-bottom: 64px;
  }
  .mb\@xl-auto.mb\@xl-auto {
    margin-bottom: auto;
  }
  .ml\@xl-5.ml\@xl-5 {
    margin-left: 64px;
  }
  .ml\@xl-auto.ml\@xl-auto {
    margin-left: auto;
  }
  .my\@xl-5.my\@xl-5 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx\@xl-5.mx\@xl-5 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .my\@xl-auto.my\@xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xl-auto.mx\@xl-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xl-6.m\@xl-6 {
    margin: 128px;
  }
  .m\@xl-auto.m\@xl-auto {
    margin: auto;
  }
  .mt\@xl-6.mt\@xl-6 {
    margin-top: 128px;
  }
  .mt\@xl-auto.mt\@xl-auto {
    margin-top: auto;
  }
  .mr\@xl-6.mr\@xl-6 {
    margin-right: 128px;
  }
  .mr\@xl-auto.mr\@xl-auto {
    margin-right: auto;
  }
  .mb\@xl-6.mb\@xl-6 {
    margin-bottom: 128px;
  }
  .mb\@xl-auto.mb\@xl-auto {
    margin-bottom: auto;
  }
  .ml\@xl-6.ml\@xl-6 {
    margin-left: 128px;
  }
  .ml\@xl-auto.ml\@xl-auto {
    margin-left: auto;
  }
  .my\@xl-6.my\@xl-6 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx\@xl-6.mx\@xl-6 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .my\@xl-auto.my\@xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xl-auto.mx\@xl-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .m\@xl-7.m\@xl-7 {
    margin: 256px;
  }
  .m\@xl-auto.m\@xl-auto {
    margin: auto;
  }
  .mt\@xl-7.mt\@xl-7 {
    margin-top: 256px;
  }
  .mt\@xl-auto.mt\@xl-auto {
    margin-top: auto;
  }
  .mr\@xl-7.mr\@xl-7 {
    margin-right: 256px;
  }
  .mr\@xl-auto.mr\@xl-auto {
    margin-right: auto;
  }
  .mb\@xl-7.mb\@xl-7 {
    margin-bottom: 256px;
  }
  .mb\@xl-auto.mb\@xl-auto {
    margin-bottom: auto;
  }
  .ml\@xl-7.ml\@xl-7 {
    margin-left: 256px;
  }
  .ml\@xl-auto.ml\@xl-auto {
    margin-left: auto;
  }
  .my\@xl-7.my\@xl-7 {
    margin-top: 256px;
    margin-bottom: 256px;
  }
  .mx\@xl-7.mx\@xl-7 {
    margin-right: 256px;
    margin-left: 256px;
  }
  .my\@xl-auto.my\@xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mx\@xl-auto.mx\@xl-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .p\@xl-0.p\@xl-0 {
    padding: 0px;
  }
  .p\@xl-auto.p\@xl-auto {
    padding: auto;
  }
  .pt\@xl-0.pt\@xl-0 {
    padding-top: 0px;
  }
  .pt\@xl-auto.pt\@xl-auto {
    padding-top: auto;
  }
  .pr\@xl-0.pr\@xl-0 {
    padding-right: 0px;
  }
  .pr\@xl-auto.pr\@xl-auto {
    padding-right: auto;
  }
  .pb\@xl-0.pb\@xl-0 {
    padding-bottom: 0px;
  }
  .pb\@xl-auto.pb\@xl-auto {
    padding-bottom: auto;
  }
  .pl\@xl-0.pl\@xl-0 {
    padding-left: 0px;
  }
  .pl\@xl-auto.pl\@xl-auto {
    padding-left: auto;
  }
  .py\@xl-0.py\@xl-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .px\@xl-0.px\@xl-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .py\@xl-auto.py\@xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xl-auto.px\@xl-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xl-1.p\@xl-1 {
    padding: 4px;
  }
  .p\@xl-auto.p\@xl-auto {
    padding: auto;
  }
  .pt\@xl-1.pt\@xl-1 {
    padding-top: 4px;
  }
  .pt\@xl-auto.pt\@xl-auto {
    padding-top: auto;
  }
  .pr\@xl-1.pr\@xl-1 {
    padding-right: 4px;
  }
  .pr\@xl-auto.pr\@xl-auto {
    padding-right: auto;
  }
  .pb\@xl-1.pb\@xl-1 {
    padding-bottom: 4px;
  }
  .pb\@xl-auto.pb\@xl-auto {
    padding-bottom: auto;
  }
  .pl\@xl-1.pl\@xl-1 {
    padding-left: 4px;
  }
  .pl\@xl-auto.pl\@xl-auto {
    padding-left: auto;
  }
  .py\@xl-1.py\@xl-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .px\@xl-1.px\@xl-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .py\@xl-auto.py\@xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xl-auto.px\@xl-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xl-2.p\@xl-2 {
    padding: 8px;
  }
  .p\@xl-auto.p\@xl-auto {
    padding: auto;
  }
  .pt\@xl-2.pt\@xl-2 {
    padding-top: 8px;
  }
  .pt\@xl-auto.pt\@xl-auto {
    padding-top: auto;
  }
  .pr\@xl-2.pr\@xl-2 {
    padding-right: 8px;
  }
  .pr\@xl-auto.pr\@xl-auto {
    padding-right: auto;
  }
  .pb\@xl-2.pb\@xl-2 {
    padding-bottom: 8px;
  }
  .pb\@xl-auto.pb\@xl-auto {
    padding-bottom: auto;
  }
  .pl\@xl-2.pl\@xl-2 {
    padding-left: 8px;
  }
  .pl\@xl-auto.pl\@xl-auto {
    padding-left: auto;
  }
  .py\@xl-2.py\@xl-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px\@xl-2.px\@xl-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .py\@xl-auto.py\@xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xl-auto.px\@xl-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xl-3.p\@xl-3 {
    padding: 16px;
  }
  .p\@xl-auto.p\@xl-auto {
    padding: auto;
  }
  .pt\@xl-3.pt\@xl-3 {
    padding-top: 16px;
  }
  .pt\@xl-auto.pt\@xl-auto {
    padding-top: auto;
  }
  .pr\@xl-3.pr\@xl-3 {
    padding-right: 16px;
  }
  .pr\@xl-auto.pr\@xl-auto {
    padding-right: auto;
  }
  .pb\@xl-3.pb\@xl-3 {
    padding-bottom: 16px;
  }
  .pb\@xl-auto.pb\@xl-auto {
    padding-bottom: auto;
  }
  .pl\@xl-3.pl\@xl-3 {
    padding-left: 16px;
  }
  .pl\@xl-auto.pl\@xl-auto {
    padding-left: auto;
  }
  .py\@xl-3.py\@xl-3 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px\@xl-3.px\@xl-3 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .py\@xl-auto.py\@xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xl-auto.px\@xl-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xl-4.p\@xl-4 {
    padding: 32px;
  }
  .p\@xl-auto.p\@xl-auto {
    padding: auto;
  }
  .pt\@xl-4.pt\@xl-4 {
    padding-top: 32px;
  }
  .pt\@xl-auto.pt\@xl-auto {
    padding-top: auto;
  }
  .pr\@xl-4.pr\@xl-4 {
    padding-right: 32px;
  }
  .pr\@xl-auto.pr\@xl-auto {
    padding-right: auto;
  }
  .pb\@xl-4.pb\@xl-4 {
    padding-bottom: 32px;
  }
  .pb\@xl-auto.pb\@xl-auto {
    padding-bottom: auto;
  }
  .pl\@xl-4.pl\@xl-4 {
    padding-left: 32px;
  }
  .pl\@xl-auto.pl\@xl-auto {
    padding-left: auto;
  }
  .py\@xl-4.py\@xl-4 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px\@xl-4.px\@xl-4 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .py\@xl-auto.py\@xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xl-auto.px\@xl-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xl-5.p\@xl-5 {
    padding: 64px;
  }
  .p\@xl-auto.p\@xl-auto {
    padding: auto;
  }
  .pt\@xl-5.pt\@xl-5 {
    padding-top: 64px;
  }
  .pt\@xl-auto.pt\@xl-auto {
    padding-top: auto;
  }
  .pr\@xl-5.pr\@xl-5 {
    padding-right: 64px;
  }
  .pr\@xl-auto.pr\@xl-auto {
    padding-right: auto;
  }
  .pb\@xl-5.pb\@xl-5 {
    padding-bottom: 64px;
  }
  .pb\@xl-auto.pb\@xl-auto {
    padding-bottom: auto;
  }
  .pl\@xl-5.pl\@xl-5 {
    padding-left: 64px;
  }
  .pl\@xl-auto.pl\@xl-auto {
    padding-left: auto;
  }
  .py\@xl-5.py\@xl-5 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px\@xl-5.px\@xl-5 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .py\@xl-auto.py\@xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xl-auto.px\@xl-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xl-6.p\@xl-6 {
    padding: 128px;
  }
  .p\@xl-auto.p\@xl-auto {
    padding: auto;
  }
  .pt\@xl-6.pt\@xl-6 {
    padding-top: 128px;
  }
  .pt\@xl-auto.pt\@xl-auto {
    padding-top: auto;
  }
  .pr\@xl-6.pr\@xl-6 {
    padding-right: 128px;
  }
  .pr\@xl-auto.pr\@xl-auto {
    padding-right: auto;
  }
  .pb\@xl-6.pb\@xl-6 {
    padding-bottom: 128px;
  }
  .pb\@xl-auto.pb\@xl-auto {
    padding-bottom: auto;
  }
  .pl\@xl-6.pl\@xl-6 {
    padding-left: 128px;
  }
  .pl\@xl-auto.pl\@xl-auto {
    padding-left: auto;
  }
  .py\@xl-6.py\@xl-6 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px\@xl-6.px\@xl-6 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py\@xl-auto.py\@xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xl-auto.px\@xl-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .p\@xl-7.p\@xl-7 {
    padding: 256px;
  }
  .p\@xl-auto.p\@xl-auto {
    padding: auto;
  }
  .pt\@xl-7.pt\@xl-7 {
    padding-top: 256px;
  }
  .pt\@xl-auto.pt\@xl-auto {
    padding-top: auto;
  }
  .pr\@xl-7.pr\@xl-7 {
    padding-right: 256px;
  }
  .pr\@xl-auto.pr\@xl-auto {
    padding-right: auto;
  }
  .pb\@xl-7.pb\@xl-7 {
    padding-bottom: 256px;
  }
  .pb\@xl-auto.pb\@xl-auto {
    padding-bottom: auto;
  }
  .pl\@xl-7.pl\@xl-7 {
    padding-left: 256px;
  }
  .pl\@xl-auto.pl\@xl-auto {
    padding-left: auto;
  }
  .py\@xl-7.py\@xl-7 {
    padding-top: 256px;
    padding-bottom: 256px;
  }
  .px\@xl-7.px\@xl-7 {
    padding-right: 256px;
    padding-left: 256px;
  }
  .py\@xl-auto.py\@xl-auto {
    padding-top: auto;
    padding-bottom: auto;
  }
  .px\@xl-auto.px\@xl-auto {
    padding-right: auto;
    padding-left: auto;
  }

  .border-none {
    border-style: none;
  }
  .border-dotted {
    border-style: dotted;
  }
  .border-dashed {
    border-style: dashed;
  }
  .border-solid {
    border-style: solid;
  }
  .border-double {
    border-style: double;
  }
  .border-groove {
    border-style: groove;
  }
  .border-ridge {
    border-style: ridge;
  }
  .border-inset {
    border-style: inset;
  }
  .border-outset {
    border-style: outset;
  }
  .border\@xl {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-top {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-top-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-top-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-top-none {
    border-top-style: none;
  }
  .border\@xl-top-dotted {
    border-top-style: dotted;
  }
  .border\@xl-top-dashed {
    border-top-style: dashed;
  }
  .border\@xl-top-solid {
    border-top-style: solid;
  }
  .border\@xl-top-double {
    border-top-style: double;
  }
  .border\@xl-top-groove {
    border-top-style: groove;
  }
  .border\@xl-top-ridge {
    border-top-style: ridge;
  }
  .border\@xl-top-inset {
    border-top-style: inset;
  }
  .border\@xl-top-outset {
    border-top-style: outset;
  }
  .border\@xl-top-thin {
    border-top-width: thin;
  }
  .border\@xl-top-medium {
    border-top-width: medium;
  }
  .border\@xl-top-thick {
    border-top-width: thick;
  }
  .border\@xl {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-right {
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-right-light {
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-right-dark {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-right-none {
    border-right-style: none;
  }
  .border\@xl-right-dotted {
    border-right-style: dotted;
  }
  .border\@xl-right-dashed {
    border-right-style: dashed;
  }
  .border\@xl-right-solid {
    border-right-style: solid;
  }
  .border\@xl-right-double {
    border-right-style: double;
  }
  .border\@xl-right-groove {
    border-right-style: groove;
  }
  .border\@xl-right-ridge {
    border-right-style: ridge;
  }
  .border\@xl-right-inset {
    border-right-style: inset;
  }
  .border\@xl-right-outset {
    border-right-style: outset;
  }
  .border\@xl-right-thin {
    border-right-width: thin;
  }
  .border\@xl-right-medium {
    border-right-width: medium;
  }
  .border\@xl-right-thick {
    border-right-width: thick;
  }
  .border\@xl {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-bottom-dark {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-bottom-none {
    border-bottom-style: none;
  }
  .border\@xl-bottom-dotted {
    border-bottom-style: dotted;
  }
  .border\@xl-bottom-dashed {
    border-bottom-style: dashed;
  }
  .border\@xl-bottom-solid {
    border-bottom-style: solid;
  }
  .border\@xl-bottom-double {
    border-bottom-style: double;
  }
  .border\@xl-bottom-groove {
    border-bottom-style: groove;
  }
  .border\@xl-bottom-ridge {
    border-bottom-style: ridge;
  }
  .border\@xl-bottom-inset {
    border-bottom-style: inset;
  }
  .border\@xl-bottom-outset {
    border-bottom-style: outset;
  }
  .border\@xl-bottom-thin {
    border-bottom-width: thin;
  }
  .border\@xl-bottom-medium {
    border-bottom-width: medium;
  }
  .border\@xl-bottom-thick {
    border-bottom-width: thick;
  }
  .border\@xl {
    border: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-light {
    border: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-dark {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-left {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-left-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-left-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-left-none {
    border-left-style: none;
  }
  .border\@xl-left-dotted {
    border-left-style: dotted;
  }
  .border\@xl-left-dashed {
    border-left-style: dashed;
  }
  .border\@xl-left-solid {
    border-left-style: solid;
  }
  .border\@xl-left-double {
    border-left-style: double;
  }
  .border\@xl-left-groove {
    border-left-style: groove;
  }
  .border\@xl-left-ridge {
    border-left-style: ridge;
  }
  .border\@xl-left-inset {
    border-left-style: inset;
  }
  .border\@xl-left-outset {
    border-left-style: outset;
  }
  .border\@xl-left-thin {
    border-left-width: thin;
  }
  .border\@xl-left-medium {
    border-left-width: medium;
  }
  .border\@xl-left-thick {
    border-left-width: thick;
  }
  .border\@xl-y {
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-y-light {
    border-top: 1px solid rgba(0, 0, 0, 0.045);
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-y-dark {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-x {
    border-left: 1px solid rgba(0, 0, 0, 0.075);
    border-right: 1px solid rgba(0, 0, 0, 0.075);
  }
  .border\@xl-x-light {
    border-left: 1px solid rgba(0, 0, 0, 0.045);
    border-right: 1px solid rgba(0, 0, 0, 0.045);
  }
  .border\@xl-x-dark {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border\@xl-radius {
    border-radius: 4px;
  }
  .border\@xl-radius-top-left {
    border-top-left-radius: 4px;
  }
  .border\@xl-radius-top-right {
    border-top-right-radius: 4px;
  }
  .border\@xl-radius-bottom-left {
    border-bottom-left-radius: 4px;
  }
  .border\@xl-radius-bottom-right {
    border-bottom-right-radius: 4px;
  }

  .font-style\@xl-oblique {
    font-style: oblique;
  }

  .font-style\@xl-italic {
    font-style: italic;
  }

  .font\@xl-ui {
    font-family: "Noto Sans", sans-serif !important;
  }

  .font\@xl-content {
    font-family: "Brill", "Georgia", serif !important;
  }

  .font\@xl-header {
    font-family: "Brill", "Georgia", serif !important;
  }

  .fw\@xl-1 {
    font-weight: 300 !important;
  }

  .fw\@xl-2 {
    font-weight: 400 !important;
  }

  .fw\@xl-3 {
    font-weight: 500 !important;
  }

  .fw\@xl-4 {
    font-weight: 600 !important;
  }

  .f\@xl-1 {
    font-size: 0.875rem !important;
  }

  .f\@xl-2 {
    font-size: 1rem !important;
  }

  .f\@xl-3 {
    font-size: 1.125rem !important;
  }

  .f\@xl-4 {
    font-size: 1.5rem !important;
  }

  .f\@xl-5 {
    font-size: 1.75rem !important;
  }

  .f\@xl-6 {
    font-size: 2.125rem !important;
  }

  .f\@xl-7 {
    font-size: 2.8125rem !important;
  }

  .f\@xl-8 {
    font-size: 1.125rem !important;
  }

  .f\@xl-9 {
    font-size: 3.5rem !important;
  }

  .f\@xl-10 {
    font-size: 5rem !important;
  }

  .ln\@xl-1 {
    line-height: 1.125rem !important;
  }

  .ln\@xl-2 {
    line-height: 1.25rem !important;
  }

  .ln\@xl-3 {
    line-height: 1.5rem !important;
  }

  .ln\@xl-4 {
    line-height: 1.75rem !important;
  }

  .ln\@xl-5 {
    line-height: 2rem !important;
  }

  .ln\@xl-6 {
    line-height: 2.125rem !important;
  }

  .ln\@xl-7 {
    line-height: 3rem !important;
  }

  .ln\@xl-8 {
    line-height: 4.5rem !important;
  }

  .ln\@xl-9 {
    line-height: 5.5rem !important;
  }

  .ln\@xl-10 {
    line-height: 6.5rem !important;
  }

  .text\@xl-left, .text-align\@xl-left {
    text-align: left;
  }
  .text\@xl-center, .text-align\@xl-center {
    text-align: center;
  }
  .text\@xl-right, .text-align\@xl-right {
    text-align: right;
  }
  .text\@xl-justify, .text-align\@xl-justify {
    text-align: justify;
  }
  .text\@xl-nowrap, .text-align\@xl-nowrap {
    white-space: nowrap;
  }
  .text\@xl-wrap, .text-align\@xl-wrap {
    white-space: wrap;
  }
  .text\@xl-pre, .text-align\@xl-pre {
    white-space: pre;
  }
  .text\@xl-pre-line, .text-align\@xl-pre-line {
    white-space: pre-line;
  }
  .text\@xl-pre-wrap, .text-align\@xl-pre-wrap {
    white-space: pre-wrap;
  }

  .text-transform\@xl-uppercase {
    text-transform: uppercase;
  }

  .text-transform\@xl-lowercase {
    text-transform: lowercase;
  }

  .text-transform\@xl-capitalize {
    text-transform: capitalize;
  }

  .text-transform\@xl-none {
    text-transform: none;
  }

  .display\@xl-none.display\@xl-none,
.hidden\@xl.hidden\@xl {
    display: none;
  }

  .display\@xl-inline.display\@xl-inline,
.inline\@xl.inline\@xl {
    display: inline;
  }

  .display\@xl-inline-block.display\@xl-inline-block, .inline-block\@xl.inline-block\@xl {
    display: inline-block;
  }

  .display\@xl-inline-flex.display\@xl-inline-flex {
    display: inline-flex;
  }

  .display\@xl-block.display\@xl-block,
.block\@xl.block\@xl {
    display: block;
  }

  .display\@xl-flex.display\@xl-flex {
    display: flex;
  }

  .display\@xl-table.display\@xl-table {
    display: table;
  }

  .display\@xl-contents.display\@xl-contents {
    display: contents;
  }

  .display\@xl-before-block.display\@xl-before-block:before,
.before-block\@xl.before-block\@xl:before {
    content: "";
    display: block;
  }

  .position\@xl-relative.position\@xl-relative {
    position: relative;
  }

  .position\@xl-fixed.position\@xl-fixed,
.display\@xl-fixed.display\@xl-fixed,
.fixed\@xl.fixed\@xl {
    position: fixed;
    visibility: visible;
    z-index: 99;
  }

  .position\@xl-absolute.position\@xl-absolute,
.display\@xl-absolute.display\@xl-absolute,
.absolute\@xl.absolute\@xl {
    position: absolute;
    visibility: visible;
  }

  .position\@xl-sticky.position\@xl-sticky,
.display\@xl-sticky.display\@xl-sticky,
.sticky\@xl.sticky\@xl {
    position: -webkit-sticky;
    position: sticky;
    visibility: visible;
  }

  .position\@xl-sticky-top.position\@xl-sticky-top,
.display\@xl-sticky-top.display\@xl-sticky-top,
.sticky-top\@xl.sticky-top\@xl {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    visibility: visible;
  }

  .position\@xl-sticky-bottom.position\@xl-sticky-bottom,
.display\@xl-sticky-bottom.display\@xl-sticky-bottom,
.sticky-bottom\@xl.sticky-bottom\@xl {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    visibility: visible;
  }

  .visibility\@xl-visible {
    visibility: visible;
  }

  .visibility\@xl-hidden {
    visibility: hidden;
  }

  .flex\@xl.flex\@xl {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex\@xl-inline.flex\@xl-inline {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .flex\@xl-col.flex\@xl-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex\@xl-col-reverse.flex\@xl-col-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex\@xl-row.flex\@xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex\@xl-row-reverse.flex\@xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex\@xl-wrap.flex\@xl-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex\@xl-nowrap.flex\@xl-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex\@xl-align-stretch.flex\@xl-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex\@xl-align-center.flex\@xl-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex\@xl-align-start.flex\@xl-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex\@xl-align-end.flex\@xl-align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex\@xl-align-self-stretch.flex\@xl-align-self-stretch {
    align-self: stretch;
  }
  .flex\@xl-align-self-center.flex\@xl-align-self-center {
    align-self: center;
  }
  .flex\@xl-align-self-start.flex\@xl-align-self-start {
    align-self: flex-start;
  }
  .flex\@xl-align-self-end.flex\@xl-align-self-end {
    align-self: flex-end;
  }
  .flex\@xl-justify-start.flex\@xl-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex\@xl-justify-end.flex\@xl-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex\@xl-justify-center.flex\@xl-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex\@xl-justify-btw.flex\@xl-justify-btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex\@xl-justify-around.flex\@xl-justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex\@xl-justify-self-start.flex\@xl-justify-self-start {
    justify-self: flex-start;
  }
  .flex\@xl-justify-self-end.flex\@xl-justify-self-end {
    justify-self: flex-end;
  }
  .flex\@xl-justify-self-center.flex\@xl-justify-self-center {
    justify-self: center;
  }
  .flex\@xl-justify-self-btw.flex\@xl-justify-self-btw {
    justify-self: space-between;
  }
  .flex\@xl-justify-self-around.flex\@xl-justify-self-around {
    justify-self: space-around;
  }
  .flex\@xl-1 {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex\@xl-order-1 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex\@xl-2 {
    min-width: 0;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .flex\@xl-order-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex\@xl-3 {
    min-width: 0;
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
  }
  .flex\@xl-order-3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .flex\@xl-4 {
    min-width: 0;
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
  .flex\@xl-order-4 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .flex\@xl-5 {
    min-width: 0;
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
  }
  .flex\@xl-order-5 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .flex\@xl-6 {
    min-width: 0;
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
  .flex\@xl-order-6 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .flex\@xl-7 {
    min-width: 0;
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7;
  }
  .flex\@xl-order-7 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .flex\@xl-8 {
    min-width: 0;
    -webkit-box-flex: 8;
    -ms-flex: 8;
    flex: 8;
  }
  .flex\@xl-order-8 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .flex\@xl-9 {
    min-width: 0;
    -webkit-box-flex: 9;
    -ms-flex: 9;
    flex: 9;
  }
  .flex\@xl-order-9 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .flex\@xl-10 {
    min-width: 0;
    -webkit-box-flex: 10;
    -ms-flex: 10;
    flex: 10;
  }
  .flex\@xl-order-10 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .flex\@xl-11 {
    min-width: 0;
    -webkit-box-flex: 11;
    -ms-flex: 11;
    flex: 11;
  }
  .flex\@xl-order-11 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .flex\@xl-12 {
    min-width: 0;
    -webkit-box-flex: 12;
    -ms-flex: 12;
    flex: 12;
  }
  .flex\@xl-order-12 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media all and (min-width: 1600px) and (-ms-high-contrast: none) {
  .flex\@xl-1 {
    flex: auto;
    flex-grow: 1;
  }
  .flex\@xl-2 {
    flex: auto;
    flex-grow: 2;
  }
  .flex\@xl-3 {
    flex: auto;
    flex-grow: 3;
  }
  .flex\@xl-4 {
    flex: auto;
    flex-grow: 4;
  }
  .flex\@xl-5 {
    flex: auto;
    flex-grow: 5;
  }
  .flex\@xl-6 {
    flex: auto;
    flex-grow: 6;
  }
  .flex\@xl-7 {
    flex: auto;
    flex-grow: 7;
  }
  .flex\@xl-8 {
    flex: auto;
    flex-grow: 8;
  }
  .flex\@xl-9 {
    flex: auto;
    flex-grow: 9;
  }
  .flex\@xl-10 {
    flex: auto;
    flex-grow: 10;
  }
  .flex\@xl-11 {
    flex: auto;
    flex-grow: 11;
  }
  .flex\@xl-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 1600px) {
  .ie-11 .flex\@xl-1 {
    flex: auto;
    flex-grow: 1;
  }
  .ie-11 .flex\@xl-2 {
    flex: auto;
    flex-grow: 2;
  }
  .ie-11 .flex\@xl-3 {
    flex: auto;
    flex-grow: 3;
  }
  .ie-11 .flex\@xl-4 {
    flex: auto;
    flex-grow: 4;
  }
  .ie-11 .flex\@xl-5 {
    flex: auto;
    flex-grow: 5;
  }
  .ie-11 .flex\@xl-6 {
    flex: auto;
    flex-grow: 6;
  }
  .ie-11 .flex\@xl-7 {
    flex: auto;
    flex-grow: 7;
  }
  .ie-11 .flex\@xl-8 {
    flex: auto;
    flex-grow: 8;
  }
  .ie-11 .flex\@xl-9 {
    flex: auto;
    flex-grow: 9;
  }
  .ie-11 .flex\@xl-10 {
    flex: auto;
    flex-grow: 10;
  }
  .ie-11 .flex\@xl-11 {
    flex: auto;
    flex-grow: 11;
  }
  .ie-11 .flex\@xl-12 {
    flex: auto;
    flex-grow: 12;
  }
}
@media (min-width: 1600px) {
  .list\@xl-style-none {
    list-style: none;
  }
}
@media (min-width: 1600px) {
  .columns\@xl-0 {
    column-count: 0;
  }
  .columns\@xl-1 {
    column-count: 1;
  }
  .columns\@xl-2 {
    column-count: 2;
  }
  .columns\@xl-3 {
    column-count: 3;
  }
  .columns\@xl-4 {
    column-count: 4;
  }
  .columns\@xl-5 {
    column-count: 5;
  }
  .columns\@xl-6 {
    column-count: 6;
  }
  .columns\@xl-7 {
    column-count: 7;
  }
  .columns\@xl-8 {
    column-count: 8;
  }
  .columns\@xl-9 {
    column-count: 9;
  }
}
@media (min-width: 1600px) {
  .overflow\@xl-auto {
    overflow: auto;
  }
  .overflow\@xl-y-auto {
    overflow-y: auto;
  }
  .overflow\@xl-x-auto {
    overflow-x: auto;
  }
  .overflow\@xl-hidden {
    overflow: hidden;
  }
  .overflow\@xl-y-hidden {
    overflow-y: hidden;
  }
  .overflow\@xl-x-hidden {
    overflow-x: hidden;
  }
  .overflow\@xl-visible {
    overflow: visible;
  }
  .overflow\@xl-y-visible {
    overflow-y: visible;
  }
  .overflow\@xl-x-visible {
    overflow-x: visible;
  }
  .overflow\@xl-scroll {
    overflow: scroll;
  }
  .overflow\@xl-y-scroll {
    overflow-y: scroll;
  }
  .overflow\@xl-x-scroll {
    overflow-x: scroll;
  }
  .overflow\@xl-overlay {
    overflow: overlay;
  }
  .overflow\@xl-y-overlay {
    overflow-y: overlay;
  }
  .overflow\@xl-x-overlay {
    overflow-x: overlay;
  }
}
@media (min-width: 1600px) {
  .text-overflow\@xl-clip {
    text-overflow: clip;
  }
  .text-overflow\@xl-ellipsis {
    text-overflow: ellipsis;
  }
  .text-overflow\@xl-initial {
    text-overflow: initial;
  }
  .text-overflow\@xl-inherit {
    text-overflow: inherit;
  }
}
.color-primary, .color-primary:before, .color-primary:after {
  color: #0f356c !important;
}
.color-primary-dark, .color-primary-dark:before, .color-primary-dark:after {
  color: #00093c !important;
}
.color-primary-light, .color-primary-light:before, .color-primary-light:after {
  color: #232176 !important;
}
.color-secondary, .color-secondary:before, .color-secondary:after {
  color: #f0f0f0 !important;
}
.color-secondary-dark, .color-secondary-dark:before, .color-secondary-dark:after {
  color: #d7d7d7 !important;
}
.color-secondary-light, .color-secondary-light:before, .color-secondary-light:after {
  color: #fcfcfc !important;
}
.color-tertiary, .color-tertiary:before, .color-tertiary:after {
  color: #00abc5 !important;
}
.color-tertiary-dark, .color-tertiary-dark:before, .color-tertiary-dark:after {
  color: #508a3c !important;
}
.color-tertiary-light, .color-tertiary-light:before, .color-tertiary-light:after {
  color: #7ece62 !important;
}
.color-error, .color-error:before, .color-error:after {
  color: #f44336 !important;
}
.color-error-dark, .color-error-dark:before, .color-error-dark:after {
  color: #d32f2f !important;
}
.color-error-light, .color-error-light:before, .color-error-light:after {
  color: #e57373 !important;
}
.color-warning, .color-warning:before, .color-warning:after {
  color: #ffc107 !important;
}
.color-warning-dark, .color-warning-dark:before, .color-warning-dark:after {
  color: #bf9107 !important;
}
.color-warning-light, .color-warning-light:before, .color-warning-light:after {
  color: #ffe9a7 !important;
}
.color-success, .color-success:before, .color-success:after {
  color: #2db04f !important;
}
.color-success-dark, .color-success-dark:before, .color-success-dark:after {
  color: #1e7b36 !important;
}
.color-success-light, .color-success-light:before, .color-success-light:after {
  color: #a1eab4 !important;
}
.color-info, .color-info:before, .color-info:after {
  color: #17acc0 !important;
}
.color-info-dark, .color-info-dark:before, .color-info-dark:after {
  color: #127886 !important;
}
.color-info-light, .color-info-light:before, .color-info-light:after {
  color: #93d9e2 !important;
}
.color-access-partial, .color-access-partial:before, .color-access-partial:after {
  color: #ffc107;
}
.color-access-restricted, .color-access-restricted:before, .color-access-restricted:after {
  color: #f44336;
}
.color-access-authorized, .color-access-authorized:before, .color-access-authorized:after {
  color: #2db04f;
}
.color-access-free, .color-access-free:before, .color-access-free:after {
  color: #2db04f;
}
.color-access-open, .color-access-open:before, .color-access-open:after {
  color: #FFD80A;
}
.color-grey, .color-grey:before, .color-grey:after {
  color: grey;
}
.color-grey-light, .color-grey-light:before, .color-grey-light:after {
  color: #c3c3c3;
}
.color-grey-dark, .color-grey-dark:before, .color-grey-dark:after {
  color: #757575;
}
.color-white, .color-white:before, .color-white:after {
  color: white !important;
}
.color-black, .color-black:before, .color-black:after {
  color: black !important;
}
.color-text, .color-text:before, .color-text:after, .color-text-primary, .color-text-primary:before, .color-text-primary:after {
  color: black !important;
}
.color-text-contrast, .color-text-contrast:before, .color-text-contrast:after, .color-text-primary-contrast, .color-text-primary-contrast:before, .color-text-primary-contrast:after {
  color: white !important;
}
.color-text-secondary, .color-text-secondary:before, .color-text-secondary:after {
  color: #414141 !important;
}
.color-text-secondary-contrast, .color-text-secondary-contrast:before, .color-text-secondary-contrast:after {
  color: rgba(255, 255, 255, 0.5) !important;
}
.color-text-strong, .color-text-strong:before, .color-text-strong:after {
  color: black !important;
}
.color-text-strong-contrast, .color-text-strong-contrast:before, .color-text-strong-contrast:after {
  color: #007f92 !important;
}
.color-text-light, .color-text-light:before, .color-text-light:after {
  color: black !important;
}
.color-text-light-contrast, .color-text-light-contrast:before, .color-text-light-contrast:after {
  color: rgba(255, 255, 255, 0.38) !important;
}
.color-divider, .color-divider:before, .color-divider:after {
  color: rgba(0, 0, 0, 0.075) !important;
}
.color-divider-contrast, .color-divider-contrast:before, .color-divider-contrast:after {
  color: rgba(255, 255, 255, 0.09) !important;
}
.color-divider-light, .color-divider-light:before, .color-divider-light:after {
  color: rgba(0, 0, 0, 0.045) !important;
}
.color-divider-light-contrast, .color-divider-light-contrast:before, .color-divider-light-contrast:after {
  color: rgba(255, 255, 255, 0.075) !important;
}
.color-divider-dark, .color-divider-dark:before, .color-divider-dark:after {
  color: rgba(0, 0, 0, 0.1) !important;
}
.color-divider-dark-contrast, .color-divider-dark-contrast:before, .color-divider-dark-contrast:after {
  color: rgba(255, 255, 255, 0.1) !important;
}

.bg-primary, .bg-primary:before, .bg-primary:after {
  background-color: #0f356c !important;
}
.bg-primary-dark, .bg-primary-dark:before, .bg-primary-dark:after {
  background-color: #00093c !important;
}
.bg-primary-light, .bg-primary-light:before, .bg-primary-light:after {
  background-color: #232176 !important;
}
.bg-secondary, .bg-secondary:before, .bg-secondary:after {
  background-color: #f0f0f0 !important;
}
.bg-secondary-dark, .bg-secondary-dark:before, .bg-secondary-dark:after {
  background-color: #d7d7d7 !important;
}
.bg-secondary-light, .bg-secondary-light:before, .bg-secondary-light:after {
  background-color: #fcfcfc !important;
}
.bg-tertiary, .bg-tertiary:before, .bg-tertiary:after {
  background-color: #00abc5 !important;
}
.bg-tertiary-dark, .bg-tertiary-dark:before, .bg-tertiary-dark:after {
  background-color: #508a3c !important;
}
.bg-tertiary-light, .bg-tertiary-light:before, .bg-tertiary-light:after {
  background-color: #7ece62 !important;
}
.bg-error, .bg-error:before, .bg-error:after {
  background-color: #f44336 !important;
}
.bg-error-dark, .bg-error-dark:before, .bg-error-dark:after {
  background-color: #d32f2f !important;
}
.bg-error-light, .bg-error-light:before, .bg-error-light:after {
  background-color: #e57373 !important;
}
.bg-warning, .bg-warning:before, .bg-warning:after {
  background-color: #ffc107 !important;
}
.bg-warning-dark, .bg-warning-dark:before, .bg-warning-dark:after {
  background-color: #bf9107 !important;
}
.bg-warning-light, .bg-warning-light:before, .bg-warning-light:after {
  background-color: #ffe9a7 !important;
}
.bg-success, .bg-success:before, .bg-success:after {
  background-color: #2db04f !important;
}
.bg-success-dark, .bg-success-dark:before, .bg-success-dark:after {
  background-color: #1e7b36 !important;
}
.bg-success-light, .bg-success-light:before, .bg-success-light:after {
  background-color: #a1eab4 !important;
}
.bg-info, .bg-info:before, .bg-info:after {
  background-color: #17acc0 !important;
}
.bg-info-dark, .bg-info-dark:before, .bg-info-dark:after {
  background-color: #127886 !important;
}
.bg-info-light, .bg-info-light:before, .bg-info-light:after {
  background-color: #93d9e2 !important;
}
.bg-access-partial, .bg-access-partial:before, .bg-access-partial:after {
  background-color: #ffc107;
}
.bg-access-restricted, .bg-access-restricted:before, .bg-access-restricted:after {
  background-color: #f44336;
}
.bg-access-authorized, .bg-access-authorized:before, .bg-access-authorized:after {
  background-color: #2db04f;
}
.bg-access-free, .bg-access-free:before, .bg-access-free:after {
  background-color: #2db04f;
}
.bg-access-open, .bg-access-open:before, .bg-access-open:after {
  background-color: #FFD80A;
}
.bg-grey, .bg-grey:before, .bg-grey:after {
  background-color: grey;
}
.bg-grey-light, .bg-grey-light:before, .bg-grey-light:after {
  background-color: #c3c3c3;
}
.bg-grey-dark, .bg-grey-dark:before, .bg-grey-dark:after {
  background-color: #757575;
}
.bg-white, .bg-white:before, .bg-white:after {
  background-color: white !important;
}
.bg-black, .bg-black:before, .bg-black:after {
  background-color: black !important;
}
.bg-text, .bg-text:before, .bg-text:after, .bg-text-primary, .bg-text-primary:before, .bg-text-primary:after {
  background-color: black !important;
}
.bg-text-contrast, .bg-text-contrast:before, .bg-text-contrast:after, .bg-text-primary-contrast, .bg-text-primary-contrast:before, .bg-text-primary-contrast:after {
  background-color: white !important;
}
.bg-text-secondary, .bg-text-secondary:before, .bg-text-secondary:after {
  background-color: #414141 !important;
}
.bg-text-secondary-contrast, .bg-text-secondary-contrast:before, .bg-text-secondary-contrast:after {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
.bg-text-strong, .bg-text-strong:before, .bg-text-strong:after {
  background-color: black !important;
}
.bg-text-strong-contrast, .bg-text-strong-contrast:before, .bg-text-strong-contrast:after {
  background-color: #007f92 !important;
}
.bg-text-light, .bg-text-light:before, .bg-text-light:after {
  background-color: black !important;
}
.bg-text-light-contrast, .bg-text-light-contrast:before, .bg-text-light-contrast:after {
  background-color: rgba(255, 255, 255, 0.38) !important;
}
.bg-divider, .bg-divider:before, .bg-divider:after {
  background-color: rgba(0, 0, 0, 0.075) !important;
}
.bg-divider-contrast, .bg-divider-contrast:before, .bg-divider-contrast:after {
  background-color: rgba(255, 255, 255, 0.09) !important;
}
.bg-divider-light, .bg-divider-light:before, .bg-divider-light:after {
  background-color: rgba(0, 0, 0, 0.045) !important;
}
.bg-divider-light-contrast, .bg-divider-light-contrast:before, .bg-divider-light-contrast:after {
  background-color: rgba(255, 255, 255, 0.075) !important;
}
.bg-divider-dark, .bg-divider-dark:before, .bg-divider-dark:after {
  background-color: rgba(0, 0, 0, 0.1) !important;
}
.bg-divider-dark-contrast, .bg-divider-dark-contrast:before, .bg-divider-dark-contrast:after {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-default {
  background-color: white !important;
}

.bg-repeat-repeat {
  background-repeat: repeat;
}
.bg-repeat-repeat-x {
  background-repeat: repeat-x;
}
.bg-repeat-repeat-y {
  background-repeat: repeat-y;
}
.bg-repeat-no-repeat {
  background-repeat: no-repeat;
}
.bg-repeat-space {
  background-repeat: space;
}
.bg-repeat-round {
  background-repeat: round;
}
.bg-repeat-initial {
  background-repeat: initial;
}
.bg-repeat-inherit {
  background-repeat: inherit;
}
.bg-origin-padding-box {
  background-origin: padding-box;
}
.bg-origin-border-box {
  background-origin: border-box;
}
.bg-origin-content-box {
  background-origin: content-box;
}
.bg-origin-initial {
  background-origin: initial;
}
.bg-origin-inherit {
  background-origin: inherit;
}
.bg-clip-padding-box {
  background-clip: padding-box;
}
.bg-clip-border-box {
  background-clip: border-box;
}
.bg-clip-content-box {
  background-clip: content-box;
}
.bg-clip-initial {
  background-clip: initial;
}
.bg-clip-inherit {
  background-clip: inherit;
}
.bg-attachment-scroll {
  background-attachment: scroll;
}
.bg-attachment-fixed {
  background-attachment: fixed;
}
.bg-attachment-local {
  background-attachment: local;
}
.bg-attachment-initial {
  background-attachment: initial;
}
.bg-attachment-inherit {
  background-attachment: inherit;
}

.vertical-align-baseline.vertical-align-baseline {
  vertical-align: baseline;
}
.vertical-align-sub.vertical-align-sub {
  vertical-align: sub;
}
.vertical-align-super.vertical-align-super {
  vertical-align: super;
}
.vertical-align-text-top.vertical-align-text-top {
  vertical-align: text-top;
}
.vertical-align-text-bottom.vertical-align-text-bottom {
  vertical-align: text-bottom;
}
.vertical-align-middle.vertical-align-middle {
  vertical-align: middle;
}
.vertical-align-top.vertical-align-top {
  vertical-align: top;
}
.vertical-align-bottom.vertical-align-bottom {
  vertical-align: bottom;
}

#pageBody > .configurable-layout {
  overflow: hidden;
  width: 100% !important;
  float: none !important;
}

.c-App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
}

body.page-login .c-App_header ~ .column-wrapper, body.page-login .c-App__header ~ .column-wrapper, body.page-login .c-App .c-Appbar ~ .column-wrapper, body.page-signup .c-App_header ~ .column-wrapper, body.page-signup .c-App__header ~ .column-wrapper, body.page-signup .c-App .c-Appbar ~ .column-wrapper, body.page-page .c-App_header ~ .column-wrapper, body.page-page .c-App__header ~ .column-wrapper, body.page-page .c-App .c-Appbar ~ .column-wrapper, body.page-forgotpassword .c-App_header ~ .column-wrapper, body.page-forgotpassword .c-App__header ~ .column-wrapper, body.page-forgotpassword .c-App .c-Appbar ~ .column-wrapper, body.page-resetpassword .c-App_header ~ .column-wrapper, body.page-resetpassword .c-App__header ~ .column-wrapper, body.page-resetpassword .c-App .c-Appbar ~ .column-wrapper {
  display: flex;
  justify-content: center;
  flex: 1;
}
body.page-page .c-App_header ~ .column-wrapper #pageBody, body.page-page .c-App__header ~ .column-wrapper #pageBody, body.page-page .c-App .c-Appbar ~ .column-wrapper #pageBody {
  flex: 1;
}
body.page-login .c-App_header ~ .column-wrapper, body.page-login .c-App__header ~ .column-wrapper, body.page-login .c-App .c-Appbar ~ .column-wrapper, body.page-signup .c-App_header ~ .column-wrapper, body.page-signup .c-App__header ~ .column-wrapper, body.page-signup .c-App .c-Appbar ~ .column-wrapper, body.page-forgotpassword .c-App_header ~ .column-wrapper, body.page-forgotpassword .c-App__header ~ .column-wrapper, body.page-forgotpassword .c-App .c-Appbar ~ .column-wrapper, body.page-resetpassword .c-App_header ~ .column-wrapper, body.page-resetpassword .c-App__header ~ .column-wrapper, body.page-resetpassword .c-App .c-Appbar ~ .column-wrapper {
  align-items: center;
}

.ie-11 body.page-login .c-App_header ~ .column-wrapper, .ie-11 body.page-login .c-App__header ~ .column-wrapper, .ie-11 body.page-login .c-App .c-Appbar ~ .column-wrapper, .ie-11 body.page-signup .c-App_header ~ .column-wrapper, .ie-11 body.page-signup .c-App__header ~ .column-wrapper, .ie-11 body.page-signup .c-App .c-Appbar ~ .column-wrapper, .ie-11 body.page-page .c-App_header ~ .column-wrapper, .ie-11 body.page-page .c-App__header ~ .column-wrapper, .ie-11 body.page-page .c-App .c-Appbar ~ .column-wrapper, .ie-11 body.page-forgotpassword .c-App_header ~ .column-wrapper, .ie-11 body.page-forgotpassword .c-App__header ~ .column-wrapper, .ie-11 body.page-forgotpassword .c-App .c-Appbar ~ .column-wrapper, .ie-11 body.page-resetpassword .c-App_header ~ .column-wrapper, .ie-11 body.page-resetpassword .c-App__header ~ .column-wrapper, .ie-11 body.page-resetpassword .c-App .c-Appbar ~ .column-wrapper {
  flex: auto;
  flex-grow: 1;
}
.ie-11 body.page-page .c-App_header ~ .column-wrapper #pageBody, .ie-11 body.page-page .c-App__header ~ .column-wrapper #pageBody, .ie-11 body.page-page .c-App .c-Appbar ~ .column-wrapper #pageBody {
  flex: auto;
  flex-grow: 1;
}

#pageBody > .configurable-layout > .layout > .column-group .beforeColumns {
  width: 100%;
}

.type-content-view {
  position: relative;
  height: 100%;
  display: flex;
}
.type-content-view > .column-group {
  width: 100%;
}

.c-Accordion--tab:hover {
  background-color: rgba(15, 53, 108, 0.1);
}
.c-Accordion--content {
  transition: height 0.5s;
  overflow: hidden;
}
.c-Accordion--content a {
  text-decoration: none;
}
.c-Accordion--content a .label.c-Button--link, .c-Accordion--content a .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a.label:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) .c-Accordion--content a a.label:not(.truncate-show-more), .c-Accordion--content a .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.label.taxonomyNode, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .c-Accordion--content a .level-2:not(.leaf-node) > a.label.taxonomyNode, .c-Accordion--content a [data-rhoton-links-visible=true] .label[data-rhoton], [data-rhoton-links-visible=true] .c-Accordion--content a .label[data-rhoton], .c-Accordion--content a [class^=content-contributor-] .contributor-line a.label, [class^=content-contributor-] .contributor-line .c-Accordion--content a a.label, .c-Accordion--content a .component-content-summary :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle), .component-content-summary .c-Accordion--content a :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.c-Accordion--content a .component-content-html :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.component-content-html .c-Accordion--content a :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.c-Accordion--content a .page-page #pageContent :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.page-page #pageContent .c-Accordion--content a :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.c-Accordion--content a .page-form #mainContent :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.page-form #mainContent .c-Accordion--content a :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.c-Accordion--content a .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .c-Accordion--content a :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.c-Accordion--content a .component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body .c-Accordion--content a :not(.t-data-grid-pager) > a.label:not(.pdf-download):not(.toggle) {
  text-align: left;
}

.text-caption {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}

.text-body1, .Menu .ListItem {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}

.text-body2 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}

.text-subheading {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  font-style: normal;
}

.text-title {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

.text-headline {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

.text-display1 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 2.125rem;
  line-height: 2.125rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

.text-display2 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 2.125rem;
  line-height: 2.125rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

.text-display3 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 4.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

.text-display4 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 3.5rem;
  line-height: 5.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.text-button {
  font-family: "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: black;
}

.component-content-summary h1,
.component-content-html h1,
.page-page #pageContent h1,
.page-page #pageContent h1,
.page-form #mainContent h1,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item h1,
.component-editorial-content h1,
.page-sruhelp .content-style h1,
.content-page .popover-body h1 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 4.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.component-content-summary h2,
.component-content-html h2,
.page-page #pageContent h2,
.page-page #pageContent h2,
.page-form #mainContent h2,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item h2,
.component-editorial-content h2,
.page-sruhelp .content-style h2,
.content-page .popover-body h2 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 2.125rem;
  line-height: 2.125rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.component-content-summary h3,
.component-content-html h3,
.page-page #pageContent h3,
.page-page #pageContent h3,
.page-form #mainContent h3,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item h3,
.component-editorial-content h3,
.page-sruhelp .content-style h3,
.content-page .popover-body h3 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.component-content-summary h4,
.component-content-html h4,
.page-page #pageContent h4,
.page-page #pageContent h4,
.page-form #mainContent h4,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item h4,
.component-editorial-content h4,
.page-sruhelp .content-style h4,
.content-page .popover-body h4 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.component-content-summary h5,
.component-content-html h5,
.page-page #pageContent h5,
.page-page #pageContent h5,
.page-form #mainContent h5,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item h5,
.component-editorial-content h5,
.page-sruhelp .content-style h5,
.content-page .popover-body h5 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.component-content-summary h6,
.component-content-html h6,
.page-page #pageContent h6,
.page-page #pageContent h6,
.page-form #mainContent h6,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item h6,
.component-editorial-content h6,
.page-sruhelp .content-style h6,
.content-page .popover-body h6 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  font-style: normal;
}
.component-content-summary p, .component-content-summary div.p,
.component-content-html p,
.component-content-html div.p,
.page-page #pageContent p,
.page-page #pageContent div.p,
.page-page #pageContent p,
.page-page #pageContent div.p,
.page-form #mainContent p,
.page-form #mainContent div.p,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item p,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item div.p,
.component-editorial-content p,
.component-editorial-content div.p,
.page-sruhelp .content-style p,
.page-sruhelp .content-style div.p,
.content-page .popover-body p,
.content-page .popover-body div.p {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.component-content-summary caption, .component-content-summary figcaption, .component-content-summary .citation,
.component-content-html caption,
.component-content-html figcaption,
.component-content-html .citation,
.page-page #pageContent caption,
.page-page #pageContent figcaption,
.page-page #pageContent .citation,
.page-page #pageContent caption,
.page-page #pageContent figcaption,
.page-page #pageContent .citation,
.page-form #mainContent caption,
.page-form #mainContent figcaption,
.page-form #mainContent .citation,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item caption,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item figcaption,
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .citation,
.component-editorial-content caption,
.component-editorial-content figcaption,
.component-editorial-content .citation,
.page-sruhelp .content-style caption,
.page-sruhelp .content-style figcaption,
.page-sruhelp .content-style .citation,
.content-page .popover-body caption,
.content-page .popover-body figcaption,
.content-page .popover-body .citation {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}

.c-SvgIcon {
  display: inline-block;
  user-select: none;
  font-size: 24px;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: currentColor;
}
.c-SvgIcon--small {
  font-size: 20px;
}

.c-Icon, .ui-accordion .ui-accordion-header, .goog-te-gadget-simple.goog-te-gadget-simple {
  display: inline-block;
  vertical-align: middle;
}
.c-Icon:before, .ui-accordion .ui-accordion-header:before, .goog-te-gadget-simple:before, .c-Icon:after, .ui-accordion .ui-accordion-header:after, .goog-te-gadget-simple:after {
  position: relative;
  transform: unset;
  top: unset;
  left: unset;
  opacity: 1;
  height: 1em;
  width: 1em;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-family: "pf2-icons", "FontAwesome", "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  background: transparent;
  user-select: none;
  overflow: hidden;
  color: inherit;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.c-Icon--inherit {
  color: inherit;
}
.c-Icon--action {
  color: rgba(0, 0, 0, 0.54);
}
.c-Icon--primary {
  color: #0f356c;
}
.c-Icon--secondary {
  color: #f0f0f0;
}
.c-Icon--tertiary {
  color: #00abc5;
}
.c-Icon--error {
  color: #f44336;
}
.c-Icon--contrast {
  color: white;
}
.c-Icon:before, .ui-accordion .ui-accordion-header:before, .goog-te-gadget-simple:before, .c-Icon:after, .ui-accordion .ui-accordion-header:after, .goog-te-gadget-simple:after {
  font-size: 24px;
}
.c-Icon--small:before, .c-Icon--small:after {
  font-size: 20px;
}
.c-Icon--large:before, .c-Icon--large:after {
  font-size: 30px;
}
.c-Icon--offset:before, .ui-accordion .ui-accordion-header:before, .goog-te-gadget-simple:before {
  margin-right: 4px;
}
.c-Icon--offset:after, .ui-accordion .ui-accordion-header:after, .goog-te-gadget-simple:after {
  margin-left: 4px;
}
.c-Icon--extraHeight:before, .c-Icon--extraHeight:after {
  height: 1.15em;
}
.c-Icon.c-Icon--dRotation.c-Icon--before:before, .ui-accordion .c-Icon--dRotation.ui-accordion-header:before, .c-Icon--dRotation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dRotation.c-Icon--after:after, .ui-accordion .c-Icon--dRotation.c-Icon--after.ui-accordion-header:after, .c-Icon--dRotation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--acUnit.c-Icon--before:before, .ui-accordion .c-Icon--acUnit.ui-accordion-header:before, .c-Icon--acUnit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--acUnit.c-Icon--after:after, .ui-accordion .c-Icon--acUnit.c-Icon--after.ui-accordion-header:after, .c-Icon--acUnit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accessAlarms.c-Icon--before:before, .ui-accordion .c-Icon--accessAlarms.ui-accordion-header:before, .c-Icon--accessAlarms.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accessAlarms.c-Icon--after:after, .ui-accordion .c-Icon--accessAlarms.c-Icon--after.ui-accordion-header:after, .c-Icon--accessAlarms.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accessibility.c-Icon--before:before, .ui-accordion .c-Icon--accessibility.ui-accordion-header:before, .c-Icon--accessibility.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accessibility.c-Icon--after:after, .ui-accordion .c-Icon--accessibility.c-Icon--after.ui-accordion-header:after, .c-Icon--accessibility.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accessibilityNew.c-Icon--before:before, .ui-accordion .c-Icon--accessibilityNew.ui-accordion-header:before, .c-Icon--accessibilityNew.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accessibilityNew.c-Icon--after:after, .ui-accordion .c-Icon--accessibilityNew.c-Icon--after.ui-accordion-header:after, .c-Icon--accessibilityNew.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accessible.c-Icon--before:before, .ui-accordion .c-Icon--accessible.ui-accordion-header:before, .c-Icon--accessible.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accessible.c-Icon--after:after, .ui-accordion .c-Icon--accessible.c-Icon--after.ui-accordion-header:after, .c-Icon--accessible.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accessibleForward.c-Icon--before:before, .ui-accordion .c-Icon--accessibleForward.ui-accordion-header:before, .c-Icon--accessibleForward.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accessibleForward.c-Icon--after:after, .ui-accordion .c-Icon--accessibleForward.c-Icon--after.ui-accordion-header:after, .c-Icon--accessibleForward.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accountBalance.c-Icon--before:before, .ui-accordion .c-Icon--accountBalance.ui-accordion-header:before, .c-Icon--accountBalance.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accountBalance.c-Icon--after:after, .ui-accordion .c-Icon--accountBalance.c-Icon--after.ui-accordion-header:after, .c-Icon--accountBalance.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accountBalanceWallet.c-Icon--before:before, .ui-accordion .c-Icon--accountBalanceWallet.ui-accordion-header:before, .c-Icon--accountBalanceWallet.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accountBalanceWallet.c-Icon--after:after, .ui-accordion .c-Icon--accountBalanceWallet.c-Icon--after.ui-accordion-header:after, .c-Icon--accountBalanceWallet.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accountBox.c-Icon--before:before, .ui-accordion .c-Icon--accountBox.ui-accordion-header:before, .c-Icon--accountBox.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accountBox.c-Icon--after:after, .ui-accordion .c-Icon--accountBox.c-Icon--after.ui-accordion-header:after, .c-Icon--accountBox.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--accountCircle.c-Icon--before:before, .ui-accordion .c-Icon--accountCircle.ui-accordion-header:before, .c-Icon--accountCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--accountCircle.c-Icon--after:after, .ui-accordion .c-Icon--accountCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--accountCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--adb.c-Icon--before:before, .ui-accordion .c-Icon--adb.ui-accordion-header:before, .c-Icon--adb.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--adb.c-Icon--after:after, .ui-accordion .c-Icon--adb.c-Icon--after.ui-accordion-header:after, .c-Icon--adb.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--add.c-Icon--before:before, .ui-accordion .c-Icon--add.ui-accordion-header:before, .c-Icon--add.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--add.c-Icon--after:after, .ui-accordion .c-Icon--add.c-Icon--after.ui-accordion-header:after, .c-Icon--add.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addAPhoto.c-Icon--before:before, .ui-accordion .c-Icon--addAPhoto.ui-accordion-header:before, .c-Icon--addAPhoto.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addAPhoto.c-Icon--after:after, .ui-accordion .c-Icon--addAPhoto.c-Icon--after.ui-accordion-header:after, .c-Icon--addAPhoto.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--alarmAdd.c-Icon--before:before, .ui-accordion .c-Icon--alarmAdd.ui-accordion-header:before, .c-Icon--alarmAdd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--alarmAdd.c-Icon--after:after, .ui-accordion .c-Icon--alarmAdd.c-Icon--after.ui-accordion-header:after, .c-Icon--alarmAdd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addAlert.c-Icon--before:before, .ui-accordion .c-Icon--addAlert.ui-accordion-header:before, .c-Icon--addAlert.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addAlert.c-Icon--after:after, .ui-accordion .c-Icon--addAlert.c-Icon--after.ui-accordion-header:after, .c-Icon--addAlert.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addBox.c-Icon--before:before, .ui-accordion .c-Icon--addBox.ui-accordion-header:before, .c-Icon--addBox.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addBox.c-Icon--after:after, .ui-accordion .c-Icon--addBox.c-Icon--after.ui-accordion-header:after, .c-Icon--addBox.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addCircle.c-Icon--before:before, .ui-accordion .c-Icon--addCircle.ui-accordion-header:before, .c-Icon--addCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addCircle.c-Icon--after:after, .ui-accordion .c-Icon--addCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--addCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--controlPoint.c-Icon--before:before, .ui-accordion .c-Icon--controlPoint.ui-accordion-header:before, .c-Icon--controlPoint.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--controlPoint.c-Icon--after:after, .ui-accordion .c-Icon--controlPoint.c-Icon--after.ui-accordion-header:after, .c-Icon--controlPoint.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addComment.c-Icon--before:before, .ui-accordion .c-Icon--addComment.ui-accordion-header:before, .c-Icon--addComment.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addComment.c-Icon--after:after, .ui-accordion .c-Icon--addComment.c-Icon--after.ui-accordion-header:after, .c-Icon--addComment.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addLocation.c-Icon--before:before, .ui-accordion .c-Icon--addLocation.ui-accordion-header:before, .c-Icon--addLocation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addLocation.c-Icon--after:after, .ui-accordion .c-Icon--addLocation.c-Icon--after.ui-accordion-header:after, .c-Icon--addLocation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addPhotoAlternate.c-Icon--before:before, .ui-accordion .c-Icon--addPhotoAlternate.ui-accordion-header:before, .c-Icon--addPhotoAlternate.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addPhotoAlternate.c-Icon--after:after, .ui-accordion .c-Icon--addPhotoAlternate.c-Icon--after.ui-accordion-header:after, .c-Icon--addPhotoAlternate.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addShoppingCart.c-Icon--before:before, .ui-accordion .c-Icon--addShoppingCart.ui-accordion-header:before, .c-Icon--addShoppingCart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addShoppingCart.c-Icon--after:after, .ui-accordion .c-Icon--addShoppingCart.c-Icon--after.ui-accordion-header:after, .c-Icon--addShoppingCart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addToHomeScreen.c-Icon--before:before, .ui-accordion .c-Icon--addToHomeScreen.ui-accordion-header:before, .c-Icon--addToHomeScreen.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addToHomeScreen.c-Icon--after:after, .ui-accordion .c-Icon--addToHomeScreen.c-Icon--after.ui-accordion-header:after, .c-Icon--addToHomeScreen.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addToPhotos.c-Icon--before:before, .ui-accordion .c-Icon--addToPhotos.ui-accordion-header:before, .c-Icon--addToPhotos.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addToPhotos.c-Icon--after:after, .ui-accordion .c-Icon--addToPhotos.c-Icon--after.ui-accordion-header:after, .c-Icon--addToPhotos.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--addToQueue.c-Icon--before:before, .ui-accordion .c-Icon--addToQueue.ui-accordion-header:before, .c-Icon--addToQueue.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--addToQueue.c-Icon--after:after, .ui-accordion .c-Icon--addToQueue.c-Icon--after.ui-accordion-header:after, .c-Icon--addToQueue.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--adjust.c-Icon--before:before, .ui-accordion .c-Icon--adjust.ui-accordion-header:before, .c-Icon--adjust.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--adjust.c-Icon--after:after, .ui-accordion .c-Icon--adjust.c-Icon--after.ui-accordion-header:after, .c-Icon--adjust.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airlineSeatFlat.c-Icon--before:before, .ui-accordion .c-Icon--airlineSeatFlat.ui-accordion-header:before, .c-Icon--airlineSeatFlat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airlineSeatFlat.c-Icon--after:after, .ui-accordion .c-Icon--airlineSeatFlat.c-Icon--after.ui-accordion-header:after, .c-Icon--airlineSeatFlat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airlineSeatFlatAngled.c-Icon--before:before, .ui-accordion .c-Icon--airlineSeatFlatAngled.ui-accordion-header:before, .c-Icon--airlineSeatFlatAngled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airlineSeatFlatAngled.c-Icon--after:after, .ui-accordion .c-Icon--airlineSeatFlatAngled.c-Icon--after.ui-accordion-header:after, .c-Icon--airlineSeatFlatAngled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airlineSeatIndividualSuite.c-Icon--before:before, .ui-accordion .c-Icon--airlineSeatIndividualSuite.ui-accordion-header:before, .c-Icon--airlineSeatIndividualSuite.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airlineSeatIndividualSuite.c-Icon--after:after, .ui-accordion .c-Icon--airlineSeatIndividualSuite.c-Icon--after.ui-accordion-header:after, .c-Icon--airlineSeatIndividualSuite.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airlineSeatLegroomExtra.c-Icon--before:before, .ui-accordion .c-Icon--airlineSeatLegroomExtra.ui-accordion-header:before, .c-Icon--airlineSeatLegroomExtra.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airlineSeatLegroomExtra.c-Icon--after:after, .ui-accordion .c-Icon--airlineSeatLegroomExtra.c-Icon--after.ui-accordion-header:after, .c-Icon--airlineSeatLegroomExtra.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airlineSeatLegroomNormal.c-Icon--before:before, .ui-accordion .c-Icon--airlineSeatLegroomNormal.ui-accordion-header:before, .c-Icon--airlineSeatLegroomNormal.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airlineSeatLegroomNormal.c-Icon--after:after, .ui-accordion .c-Icon--airlineSeatLegroomNormal.c-Icon--after.ui-accordion-header:after, .c-Icon--airlineSeatLegroomNormal.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airlineSeatLegroomReduced.c-Icon--before:before, .ui-accordion .c-Icon--airlineSeatLegroomReduced.ui-accordion-header:before, .c-Icon--airlineSeatLegroomReduced.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airlineSeatLegroomReduced.c-Icon--after:after, .ui-accordion .c-Icon--airlineSeatLegroomReduced.c-Icon--after.ui-accordion-header:after, .c-Icon--airlineSeatLegroomReduced.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airlineSeatReclineExtra.c-Icon--before:before, .ui-accordion .c-Icon--airlineSeatReclineExtra.ui-accordion-header:before, .c-Icon--airlineSeatReclineExtra.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airlineSeatReclineExtra.c-Icon--after:after, .ui-accordion .c-Icon--airlineSeatReclineExtra.c-Icon--after.ui-accordion-header:after, .c-Icon--airlineSeatReclineExtra.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airlineSeatReclineNormal.c-Icon--before:before, .ui-accordion .c-Icon--airlineSeatReclineNormal.ui-accordion-header:before, .c-Icon--airlineSeatReclineNormal.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airlineSeatReclineNormal.c-Icon--after:after, .ui-accordion .c-Icon--airlineSeatReclineNormal.c-Icon--after.ui-accordion-header:after, .c-Icon--airlineSeatReclineNormal.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airplanemodeInactive.c-Icon--before:before, .ui-accordion .c-Icon--airplanemodeInactive.ui-accordion-header:before, .c-Icon--airplanemodeInactive.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airplanemodeInactive.c-Icon--after:after, .ui-accordion .c-Icon--airplanemodeInactive.c-Icon--after.ui-accordion-header:after, .c-Icon--airplanemodeInactive.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airplay.c-Icon--before:before, .ui-accordion .c-Icon--airplay.ui-accordion-header:before, .c-Icon--airplay.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airplay.c-Icon--after:after, .ui-accordion .c-Icon--airplay.c-Icon--after.ui-accordion-header:after, .c-Icon--airplay.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--airportShuttle.c-Icon--before:before, .ui-accordion .c-Icon--airportShuttle.ui-accordion-header:before, .c-Icon--airportShuttle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--airportShuttle.c-Icon--after:after, .ui-accordion .c-Icon--airportShuttle.c-Icon--after.ui-accordion-header:after, .c-Icon--airportShuttle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--alarm.c-Icon--before:before, .ui-accordion .c-Icon--alarm.ui-accordion-header:before, .c-Icon--alarm.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--alarm.c-Icon--after:after, .ui-accordion .c-Icon--alarm.c-Icon--after.ui-accordion-header:after, .c-Icon--alarm.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--alarmOff.c-Icon--before:before, .ui-accordion .c-Icon--alarmOff.ui-accordion-header:before, .c-Icon--alarmOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--alarmOff.c-Icon--after:after, .ui-accordion .c-Icon--alarmOff.c-Icon--after.ui-accordion-header:after, .c-Icon--alarmOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--alarmOn.c-Icon--before:before, .ui-accordion .c-Icon--alarmOn.ui-accordion-header:before, .c-Icon--alarmOn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--alarmOn.c-Icon--after:after, .ui-accordion .c-Icon--alarmOn.c-Icon--after.ui-accordion-header:after, .c-Icon--alarmOn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--album.c-Icon--before:before, .ui-accordion .c-Icon--album.ui-accordion-header:before, .c-Icon--album.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--album.c-Icon--after:after, .ui-accordion .c-Icon--album.c-Icon--after.ui-accordion-header:after, .c-Icon--album.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--allInbox.c-Icon--before:before, .ui-accordion .c-Icon--allInbox.ui-accordion-header:before, .c-Icon--allInbox.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--allInbox.c-Icon--after:after, .ui-accordion .c-Icon--allInbox.c-Icon--after.ui-accordion-header:after, .c-Icon--allInbox.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--allInclusive.c-Icon--before:before, .ui-accordion .c-Icon--allInclusive.ui-accordion-header:before, .c-Icon--allInclusive.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--allInclusive.c-Icon--after:after, .ui-accordion .c-Icon--allInclusive.c-Icon--after.ui-accordion-header:after, .c-Icon--allInclusive.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--allOut.c-Icon--before:before, .ui-accordion .c-Icon--allOut.ui-accordion-header:before, .c-Icon--allOut.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--allOut.c-Icon--after:after, .ui-accordion .c-Icon--allOut.c-Icon--after.ui-accordion-header:after, .c-Icon--allOut.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--alternateEmail.c-Icon--before:before, .ui-accordion .c-Icon--alternateEmail.ui-accordion-header:before, .c-Icon--alternateEmail.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--alternateEmail.c-Icon--after:after, .ui-accordion .c-Icon--alternateEmail.c-Icon--after.ui-accordion-header:after, .c-Icon--alternateEmail.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--android.c-Icon--before:before, .ui-accordion .c-Icon--android.ui-accordion-header:before, .c-Icon--android.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--android.c-Icon--after:after, .ui-accordion .c-Icon--android.c-Icon--after.ui-accordion-header:after, .c-Icon--android.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--announcement.c-Icon--before:before, .ui-accordion .c-Icon--announcement.ui-accordion-header:before, .c-Icon--announcement.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--announcement.c-Icon--after:after, .ui-accordion .c-Icon--announcement.c-Icon--after.ui-accordion-header:after, .c-Icon--announcement.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--apps.c-Icon--before:before, .ui-accordion .c-Icon--apps.ui-accordion-header:before, .c-Icon--apps.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--apps.c-Icon--after:after, .ui-accordion .c-Icon--apps.c-Icon--after.ui-accordion-header:after, .c-Icon--apps.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--archive.c-Icon--before:before, .ui-accordion .c-Icon--archive.ui-accordion-header:before, .c-Icon--archive.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--archive.c-Icon--after:after, .ui-accordion .c-Icon--archive.c-Icon--after.ui-accordion-header:after, .c-Icon--archive.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowBack.c-Icon--before:before, .ui-accordion .c-Icon--arrowBack.ui-accordion-header:before, .c-Icon--arrowBack.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowBack.c-Icon--after:after, .ui-accordion .c-Icon--arrowBack.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowBack.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowBackIos.c-Icon--before:before, .ui-accordion .c-Icon--arrowBackIos.ui-accordion-header:before, .c-Icon--arrowBackIos.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowBackIos.c-Icon--after:after, .ui-accordion .c-Icon--arrowBackIos.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowBackIos.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowDownward.c-Icon--before:before, .ui-accordion .c-Icon--arrowDownward.ui-accordion-header:before, .c-Icon--arrowDownward.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowDownward.c-Icon--after:after, .ui-accordion .c-Icon--arrowDownward.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowDownward.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowDropDown.c-Icon--before:before, .ui-accordion .c-Icon--arrowDropDown.ui-accordion-header:before, .c-Icon--arrowDropDown.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowDropDown.c-Icon--after:after, .ui-accordion .c-Icon--arrowDropDown.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowDropDown.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowDropDownCircle.c-Icon--before:before, .ui-accordion .c-Icon--arrowDropDownCircle.ui-accordion-header:before, .c-Icon--arrowDropDownCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowDropDownCircle.c-Icon--after:after, .ui-accordion .c-Icon--arrowDropDownCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowDropDownCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowDropUp.c-Icon--before:before, .ui-accordion .c-Icon--arrowDropUp.ui-accordion-header:before, .c-Icon--arrowDropUp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowDropUp.c-Icon--after:after, .ui-accordion .c-Icon--arrowDropUp.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowDropUp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowForward.c-Icon--before:before, .ui-accordion .c-Icon--arrowForward.ui-accordion-header:before, .c-Icon--arrowForward.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowForward.c-Icon--after:after, .ui-accordion .c-Icon--arrowForward.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowForward.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowForwardIos.c-Icon--before:before, .ui-accordion .c-Icon--arrowForwardIos.ui-accordion-header:before, .c-Icon--arrowForwardIos.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowForwardIos.c-Icon--after:after, .ui-accordion .c-Icon--arrowForwardIos.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowForwardIos.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowLeft.c-Icon--before:before, .ui-accordion .c-Icon--arrowLeft.ui-accordion-header:before, .c-Icon--arrowLeft.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowLeft.c-Icon--after:after, .ui-accordion .c-Icon--arrowLeft.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowLeft.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowRight.c-Icon--before:before, .ui-accordion .c-Icon--arrowRight.ui-accordion-header:before, .c-Icon--arrowRight.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowRight.c-Icon--after:after, .ui-accordion .c-Icon--arrowRight.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowRight.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowRightAlt.c-Icon--before:before, .ui-accordion .c-Icon--arrowRightAlt.ui-accordion-header:before, .c-Icon--arrowRightAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowRightAlt.c-Icon--after:after, .ui-accordion .c-Icon--arrowRightAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowRightAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--arrowUpward.c-Icon--before:before, .ui-accordion .c-Icon--arrowUpward.ui-accordion-header:before, .c-Icon--arrowUpward.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--arrowUpward.c-Icon--after:after, .ui-accordion .c-Icon--arrowUpward.c-Icon--after.ui-accordion-header:after, .c-Icon--arrowUpward.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--artTrack.c-Icon--before:before, .ui-accordion .c-Icon--artTrack.ui-accordion-header:before, .c-Icon--artTrack.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--artTrack.c-Icon--after:after, .ui-accordion .c-Icon--artTrack.c-Icon--after.ui-accordion-header:after, .c-Icon--artTrack.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--aspectRatio.c-Icon--before:before, .ui-accordion .c-Icon--aspectRatio.ui-accordion-header:before, .c-Icon--aspectRatio.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--aspectRatio.c-Icon--after:after, .ui-accordion .c-Icon--aspectRatio.c-Icon--after.ui-accordion-header:after, .c-Icon--aspectRatio.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--assessment.c-Icon--before:before, .ui-accordion .c-Icon--assessment.ui-accordion-header:before, .c-Icon--assessment.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--assessment.c-Icon--after:after, .ui-accordion .c-Icon--assessment.c-Icon--after.ui-accordion-header:after, .c-Icon--assessment.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--assignment.c-Icon--before:before, .ui-accordion .c-Icon--assignment.ui-accordion-header:before, .c-Icon--assignment.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--assignment.c-Icon--after:after, .ui-accordion .c-Icon--assignment.c-Icon--after.ui-accordion-header:after, .c-Icon--assignment.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--assignmentInd.c-Icon--before:before, .ui-accordion .c-Icon--assignmentInd.ui-accordion-header:before, .c-Icon--assignmentInd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--assignmentInd.c-Icon--after:after, .ui-accordion .c-Icon--assignmentInd.c-Icon--after.ui-accordion-header:after, .c-Icon--assignmentInd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--assignmentLate.c-Icon--before:before, .ui-accordion .c-Icon--assignmentLate.ui-accordion-header:before, .c-Icon--assignmentLate.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--assignmentLate.c-Icon--after:after, .ui-accordion .c-Icon--assignmentLate.c-Icon--after.ui-accordion-header:after, .c-Icon--assignmentLate.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--assignmentReturn.c-Icon--before:before, .ui-accordion .c-Icon--assignmentReturn.ui-accordion-header:before, .c-Icon--assignmentReturn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--assignmentReturn.c-Icon--after:after, .ui-accordion .c-Icon--assignmentReturn.c-Icon--after.ui-accordion-header:after, .c-Icon--assignmentReturn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--assignmentReturned.c-Icon--before:before, .ui-accordion .c-Icon--assignmentReturned.ui-accordion-header:before, .c-Icon--assignmentReturned.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--assignmentReturned.c-Icon--after:after, .ui-accordion .c-Icon--assignmentReturned.c-Icon--after.ui-accordion-header:after, .c-Icon--assignmentReturned.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--assignmentTurnedIn.c-Icon--before:before, .ui-accordion .c-Icon--assignmentTurnedIn.ui-accordion-header:before, .c-Icon--assignmentTurnedIn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--assignmentTurnedIn.c-Icon--after:after, .ui-accordion .c-Icon--assignmentTurnedIn.c-Icon--after.ui-accordion-header:after, .c-Icon--assignmentTurnedIn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--assistant.c-Icon--before:before, .ui-accordion .c-Icon--assistant.ui-accordion-header:before, .c-Icon--assistant.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--assistant.c-Icon--after:after, .ui-accordion .c-Icon--assistant.c-Icon--after.ui-accordion-header:after, .c-Icon--assistant.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flag.c-Icon--before:before, .ui-accordion .c-Icon--flag.ui-accordion-header:before, .c-Icon--flag.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flag.c-Icon--after:after, .ui-accordion .c-Icon--flag.c-Icon--after.ui-accordion-header:after, .c-Icon--flag.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--atm.c-Icon--before:before, .ui-accordion .c-Icon--atm.ui-accordion-header:before, .c-Icon--atm.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--atm.c-Icon--after:after, .ui-accordion .c-Icon--atm.c-Icon--after.ui-accordion-header:after, .c-Icon--atm.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--attachFile.c-Icon--before:before, .ui-accordion .c-Icon--attachFile.ui-accordion-header:before, .c-Icon--attachFile.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--attachFile.c-Icon--after:after, .ui-accordion .c-Icon--attachFile.c-Icon--after.ui-accordion-header:after, .c-Icon--attachFile.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--attachMoney.c-Icon--before:before, .ui-accordion .c-Icon--attachMoney.ui-accordion-header:before, .c-Icon--attachMoney.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--attachMoney.c-Icon--after:after, .ui-accordion .c-Icon--attachMoney.c-Icon--after.ui-accordion-header:after, .c-Icon--attachMoney.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--attachment.c-Icon--before:before, .ui-accordion .c-Icon--attachment.ui-accordion-header:before, .c-Icon--attachment.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--attachment.c-Icon--after:after, .ui-accordion .c-Icon--attachment.c-Icon--after.ui-accordion-header:after, .c-Icon--attachment.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--audiotrack.c-Icon--before:before, .ui-accordion .c-Icon--audiotrack.ui-accordion-header:before, .c-Icon--audiotrack.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--audiotrack.c-Icon--after:after, .ui-accordion .c-Icon--audiotrack.c-Icon--after.ui-accordion-header:after, .c-Icon--audiotrack.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--autorenew.c-Icon--before:before, .ui-accordion .c-Icon--autorenew.ui-accordion-header:before, .c-Icon--autorenew.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--autorenew.c-Icon--after:after, .ui-accordion .c-Icon--autorenew.c-Icon--after.ui-accordion-header:after, .c-Icon--autorenew.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--avTimer.c-Icon--before:before, .ui-accordion .c-Icon--avTimer.ui-accordion-header:before, .c-Icon--avTimer.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--avTimer.c-Icon--after:after, .ui-accordion .c-Icon--avTimer.c-Icon--after.ui-accordion-header:after, .c-Icon--avTimer.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--backspace.c-Icon--before:before, .ui-accordion .c-Icon--backspace.ui-accordion-header:before, .c-Icon--backspace.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--backspace.c-Icon--after:after, .ui-accordion .c-Icon--backspace.c-Icon--after.ui-accordion-header:after, .c-Icon--backspace.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cloudUpload.c-Icon--before:before, .ui-accordion .c-Icon--cloudUpload.ui-accordion-header:before, .c-Icon--cloudUpload.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cloudUpload.c-Icon--after:after, .ui-accordion .c-Icon--cloudUpload.c-Icon--after.ui-accordion-header:after, .c-Icon--cloudUpload.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--ballot.c-Icon--before:before, .ui-accordion .c-Icon--ballot.ui-accordion-header:before, .c-Icon--ballot.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--ballot.c-Icon--after:after, .ui-accordion .c-Icon--ballot.c-Icon--after.ui-accordion-header:after, .c-Icon--ballot.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--barChart.c-Icon--before:before, .ui-accordion .c-Icon--barChart.ui-accordion-header:before, .c-Icon--barChart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--barChart.c-Icon--after:after, .ui-accordion .c-Icon--barChart.c-Icon--after.ui-accordion-header:after, .c-Icon--barChart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--batteryAlert.c-Icon--before:before, .ui-accordion .c-Icon--batteryAlert.ui-accordion-header:before, .c-Icon--batteryAlert.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--batteryAlert.c-Icon--after:after, .ui-accordion .c-Icon--batteryAlert.c-Icon--after.ui-accordion-header:after, .c-Icon--batteryAlert.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--batteryChargingFull.c-Icon--before:before, .ui-accordion .c-Icon--batteryChargingFull.ui-accordion-header:before, .c-Icon--batteryChargingFull.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--batteryChargingFull.c-Icon--after:after, .ui-accordion .c-Icon--batteryChargingFull.c-Icon--after.ui-accordion-header:after, .c-Icon--batteryChargingFull.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--batteryStd.c-Icon--before:before, .ui-accordion .c-Icon--batteryStd.ui-accordion-header:before, .c-Icon--batteryStd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--batteryStd.c-Icon--after:after, .ui-accordion .c-Icon--batteryStd.c-Icon--after.ui-accordion-header:after, .c-Icon--batteryStd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--batteryUnknown.c-Icon--before:before, .ui-accordion .c-Icon--batteryUnknown.ui-accordion-header:before, .c-Icon--batteryUnknown.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--batteryUnknown.c-Icon--after:after, .ui-accordion .c-Icon--batteryUnknown.c-Icon--after.ui-accordion-header:after, .c-Icon--batteryUnknown.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--beachAccess.c-Icon--before:before, .ui-accordion .c-Icon--beachAccess.ui-accordion-header:before, .c-Icon--beachAccess.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--beachAccess.c-Icon--after:after, .ui-accordion .c-Icon--beachAccess.c-Icon--after.ui-accordion-header:after, .c-Icon--beachAccess.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--beenhere.c-Icon--before:before, .ui-accordion .c-Icon--beenhere.ui-accordion-header:before, .c-Icon--beenhere.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--beenhere.c-Icon--after:after, .ui-accordion .c-Icon--beenhere.c-Icon--after.ui-accordion-header:after, .c-Icon--beenhere.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--blank.c-Icon--before:before, .ui-accordion .c-Icon--blank.ui-accordion-header:before, .c-Icon--blank.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--blank.c-Icon--after:after, .ui-accordion .c-Icon--blank.c-Icon--after.ui-accordion-header:after, .c-Icon--blank.goog-te-gadget-simple:after {
  content: " " !important;
}
.c-Icon.c-Icon--block.c-Icon--before:before, .ui-accordion .c-Icon--block.ui-accordion-header:before, .c-Icon--block.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--block.c-Icon--after:after, .ui-accordion .c-Icon--block.c-Icon--after.ui-accordion-header:after, .c-Icon--block.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--bluetooth.c-Icon--before:before, .ui-accordion .c-Icon--bluetooth.ui-accordion-header:before, .c-Icon--bluetooth.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--bluetooth.c-Icon--after:after, .ui-accordion .c-Icon--bluetooth.c-Icon--after.ui-accordion-header:after, .c-Icon--bluetooth.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--bluetoothSearching.c-Icon--before:before, .ui-accordion .c-Icon--bluetoothSearching.ui-accordion-header:before, .c-Icon--bluetoothSearching.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--bluetoothSearching.c-Icon--after:after, .ui-accordion .c-Icon--bluetoothSearching.c-Icon--after.ui-accordion-header:after, .c-Icon--bluetoothSearching.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--bluetoothConnected.c-Icon--before:before, .ui-accordion .c-Icon--bluetoothConnected.ui-accordion-header:before, .c-Icon--bluetoothConnected.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--bluetoothConnected.c-Icon--after:after, .ui-accordion .c-Icon--bluetoothConnected.c-Icon--after.ui-accordion-header:after, .c-Icon--bluetoothConnected.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--bluetoothDisabled.c-Icon--before:before, .ui-accordion .c-Icon--bluetoothDisabled.ui-accordion-header:before, .c-Icon--bluetoothDisabled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--bluetoothDisabled.c-Icon--after:after, .ui-accordion .c-Icon--bluetoothDisabled.c-Icon--after.ui-accordion-header:after, .c-Icon--bluetoothDisabled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--blurCircular.c-Icon--before:before, .ui-accordion .c-Icon--blurCircular.ui-accordion-header:before, .c-Icon--blurCircular.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--blurCircular.c-Icon--after:after, .ui-accordion .c-Icon--blurCircular.c-Icon--after.ui-accordion-header:after, .c-Icon--blurCircular.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--blurLinear.c-Icon--before:before, .ui-accordion .c-Icon--blurLinear.ui-accordion-header:before, .c-Icon--blurLinear.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--blurLinear.c-Icon--after:after, .ui-accordion .c-Icon--blurLinear.c-Icon--after.ui-accordion-header:after, .c-Icon--blurLinear.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--blurOff.c-Icon--before:before, .ui-accordion .c-Icon--blurOff.ui-accordion-header:before, .c-Icon--blurOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--blurOff.c-Icon--after:after, .ui-accordion .c-Icon--blurOff.c-Icon--after.ui-accordion-header:after, .c-Icon--blurOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--blurOn.c-Icon--before:before, .ui-accordion .c-Icon--blurOn.ui-accordion-header:before, .c-Icon--blurOn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--blurOn.c-Icon--after:after, .ui-accordion .c-Icon--blurOn.c-Icon--after.ui-accordion-header:after, .c-Icon--blurOn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--book.c-Icon--before:before, .ui-accordion .c-Icon--book.ui-accordion-header:before, .c-Icon--book.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--book.c-Icon--after:after, .ui-accordion .c-Icon--book.c-Icon--after.ui-accordion-header:after, .c-Icon--book.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--bookmarks.c-Icon--before:before, .ui-accordion .c-Icon--bookmarks.ui-accordion-header:before, .c-Icon--bookmarks.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--bookmarks.c-Icon--after:after, .ui-accordion .c-Icon--bookmarks.c-Icon--after.ui-accordion-header:after, .c-Icon--bookmarks.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderAll.c-Icon--before:before, .ui-accordion .c-Icon--borderAll.ui-accordion-header:before, .c-Icon--borderAll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderAll.c-Icon--after:after, .ui-accordion .c-Icon--borderAll.c-Icon--after.ui-accordion-header:after, .c-Icon--borderAll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderBottom.c-Icon--before:before, .ui-accordion .c-Icon--borderBottom.ui-accordion-header:before, .c-Icon--borderBottom.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderBottom.c-Icon--after:after, .ui-accordion .c-Icon--borderBottom.c-Icon--after.ui-accordion-header:after, .c-Icon--borderBottom.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderClear.c-Icon--before:before, .ui-accordion .c-Icon--borderClear.ui-accordion-header:before, .c-Icon--borderClear.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderClear.c-Icon--after:after, .ui-accordion .c-Icon--borderClear.c-Icon--after.ui-accordion-header:after, .c-Icon--borderClear.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderColor.c-Icon--before:before, .ui-accordion .c-Icon--borderColor.ui-accordion-header:before, .c-Icon--borderColor.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderColor.c-Icon--after:after, .ui-accordion .c-Icon--borderColor.c-Icon--after.ui-accordion-header:after, .c-Icon--borderColor.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderHorizontal.c-Icon--before:before, .ui-accordion .c-Icon--borderHorizontal.ui-accordion-header:before, .c-Icon--borderHorizontal.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderHorizontal.c-Icon--after:after, .ui-accordion .c-Icon--borderHorizontal.c-Icon--after.ui-accordion-header:after, .c-Icon--borderHorizontal.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderInner.c-Icon--before:before, .ui-accordion .c-Icon--borderInner.ui-accordion-header:before, .c-Icon--borderInner.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderInner.c-Icon--after:after, .ui-accordion .c-Icon--borderInner.c-Icon--after.ui-accordion-header:after, .c-Icon--borderInner.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderLeft.c-Icon--before:before, .ui-accordion .c-Icon--borderLeft.ui-accordion-header:before, .c-Icon--borderLeft.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderLeft.c-Icon--after:after, .ui-accordion .c-Icon--borderLeft.c-Icon--after.ui-accordion-header:after, .c-Icon--borderLeft.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderOuter.c-Icon--before:before, .ui-accordion .c-Icon--borderOuter.ui-accordion-header:before, .c-Icon--borderOuter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderOuter.c-Icon--after:after, .ui-accordion .c-Icon--borderOuter.c-Icon--after.ui-accordion-header:after, .c-Icon--borderOuter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderRight.c-Icon--before:before, .ui-accordion .c-Icon--borderRight.ui-accordion-header:before, .c-Icon--borderRight.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderRight.c-Icon--after:after, .ui-accordion .c-Icon--borderRight.c-Icon--after.ui-accordion-header:after, .c-Icon--borderRight.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderStyle.c-Icon--before:before, .ui-accordion .c-Icon--borderStyle.ui-accordion-header:before, .c-Icon--borderStyle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderStyle.c-Icon--after:after, .ui-accordion .c-Icon--borderStyle.c-Icon--after.ui-accordion-header:after, .c-Icon--borderStyle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderTop.c-Icon--before:before, .ui-accordion .c-Icon--borderTop.ui-accordion-header:before, .c-Icon--borderTop.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderTop.c-Icon--after:after, .ui-accordion .c-Icon--borderTop.c-Icon--after.ui-accordion-header:after, .c-Icon--borderTop.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--borderVertical.c-Icon--before:before, .ui-accordion .c-Icon--borderVertical.ui-accordion-header:before, .c-Icon--borderVertical.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--borderVertical.c-Icon--after:after, .ui-accordion .c-Icon--borderVertical.c-Icon--after.ui-accordion-header:after, .c-Icon--borderVertical.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brandingWatermark.c-Icon--before:before, .ui-accordion .c-Icon--brandingWatermark.ui-accordion-header:before, .c-Icon--brandingWatermark.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brandingWatermark.c-Icon--after:after, .ui-accordion .c-Icon--brandingWatermark.c-Icon--after.ui-accordion-header:after, .c-Icon--brandingWatermark.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brightness1.c-Icon--before:before, .ui-accordion .c-Icon--brightness1.ui-accordion-header:before, .c-Icon--brightness1.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brightness1.c-Icon--after:after, .ui-accordion .c-Icon--brightness1.c-Icon--after.ui-accordion-header:after, .c-Icon--brightness1.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brightness2.c-Icon--before:before, .ui-accordion .c-Icon--brightness2.ui-accordion-header:before, .c-Icon--brightness2.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brightness2.c-Icon--after:after, .ui-accordion .c-Icon--brightness2.c-Icon--after.ui-accordion-header:after, .c-Icon--brightness2.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brightness3.c-Icon--before:before, .ui-accordion .c-Icon--brightness3.ui-accordion-header:before, .c-Icon--brightness3.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brightness3.c-Icon--after:after, .ui-accordion .c-Icon--brightness3.c-Icon--after.ui-accordion-header:after, .c-Icon--brightness3.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brightness4.c-Icon--before:before, .ui-accordion .c-Icon--brightness4.ui-accordion-header:before, .c-Icon--brightness4.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brightness4.c-Icon--after:after, .ui-accordion .c-Icon--brightness4.c-Icon--after.ui-accordion-header:after, .c-Icon--brightness4.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brightnessAuto.c-Icon--before:before, .ui-accordion .c-Icon--brightnessAuto.ui-accordion-header:before, .c-Icon--brightnessAuto.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brightnessAuto.c-Icon--after:after, .ui-accordion .c-Icon--brightnessAuto.c-Icon--after.ui-accordion-header:after, .c-Icon--brightnessAuto.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brightnessHigh.c-Icon--before:before, .ui-accordion .c-Icon--brightnessHigh.ui-accordion-header:before, .c-Icon--brightnessHigh.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brightnessHigh.c-Icon--after:after, .ui-accordion .c-Icon--brightnessHigh.c-Icon--after.ui-accordion-header:after, .c-Icon--brightnessHigh.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brightnessLow.c-Icon--before:before, .ui-accordion .c-Icon--brightnessLow.ui-accordion-header:before, .c-Icon--brightnessLow.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brightnessLow.c-Icon--after:after, .ui-accordion .c-Icon--brightnessLow.c-Icon--after.ui-accordion-header:after, .c-Icon--brightnessLow.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brightnessMedium.c-Icon--before:before, .ui-accordion .c-Icon--brightnessMedium.ui-accordion-header:before, .c-Icon--brightnessMedium.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brightnessMedium.c-Icon--after:after, .ui-accordion .c-Icon--brightnessMedium.c-Icon--after.ui-accordion-header:after, .c-Icon--brightnessMedium.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brokenImage.c-Icon--before:before, .ui-accordion .c-Icon--brokenImage.ui-accordion-header:before, .c-Icon--brokenImage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brokenImage.c-Icon--after:after, .ui-accordion .c-Icon--brokenImage.c-Icon--after.ui-accordion-header:after, .c-Icon--brokenImage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--brush.c-Icon--before:before, .ui-accordion .c-Icon--brush.ui-accordion-header:before, .c-Icon--brush.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--brush.c-Icon--after:after, .ui-accordion .c-Icon--brush.c-Icon--after.ui-accordion-header:after, .c-Icon--brush.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--bubbleChart.c-Icon--before:before, .ui-accordion .c-Icon--bubbleChart.ui-accordion-header:before, .c-Icon--bubbleChart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--bubbleChart.c-Icon--after:after, .ui-accordion .c-Icon--bubbleChart.c-Icon--after.ui-accordion-header:after, .c-Icon--bubbleChart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--bugReport.c-Icon--before:before, .ui-accordion .c-Icon--bugReport.ui-accordion-header:before, .c-Icon--bugReport.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--bugReport.c-Icon--after:after, .ui-accordion .c-Icon--bugReport.c-Icon--after.ui-accordion-header:after, .c-Icon--bugReport.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--build.c-Icon--before:before, .ui-accordion .c-Icon--build.ui-accordion-header:before, .c-Icon--build.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--build.c-Icon--after:after, .ui-accordion .c-Icon--build.c-Icon--after.ui-accordion-header:after, .c-Icon--build.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--burstMode.c-Icon--before:before, .ui-accordion .c-Icon--burstMode.ui-accordion-header:before, .c-Icon--burstMode.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--burstMode.c-Icon--after:after, .ui-accordion .c-Icon--burstMode.c-Icon--after.ui-accordion-header:after, .c-Icon--burstMode.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--domain.c-Icon--before:before, .ui-accordion .c-Icon--domain.ui-accordion-header:before, .c-Icon--domain.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--domain.c-Icon--after:after, .ui-accordion .c-Icon--domain.c-Icon--after.ui-accordion-header:after, .c-Icon--domain.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--businessCenter.c-Icon--before:before, .ui-accordion .c-Icon--businessCenter.ui-accordion-header:before, .c-Icon--businessCenter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--businessCenter.c-Icon--after:after, .ui-accordion .c-Icon--businessCenter.c-Icon--after.ui-accordion-header:after, .c-Icon--businessCenter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cached.c-Icon--before:before, .ui-accordion .c-Icon--cached.ui-accordion-header:before, .c-Icon--cached.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cached.c-Icon--after:after, .ui-accordion .c-Icon--cached.c-Icon--after.ui-accordion-header:after, .c-Icon--cached.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cake.c-Icon--before:before, .ui-accordion .c-Icon--cake.ui-accordion-header:before, .c-Icon--cake.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cake.c-Icon--after:after, .ui-accordion .c-Icon--cake.c-Icon--after.ui-accordion-header:after, .c-Icon--cake.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--calendarToday.c-Icon--before:before, .ui-accordion .c-Icon--calendarToday.ui-accordion-header:before, .c-Icon--calendarToday.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--calendarToday.c-Icon--after:after, .ui-accordion .c-Icon--calendarToday.c-Icon--after.ui-accordion-header:after, .c-Icon--calendarToday.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--calendarViewDay.c-Icon--before:before, .ui-accordion .c-Icon--calendarViewDay.ui-accordion-header:before, .c-Icon--calendarViewDay.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--calendarViewDay.c-Icon--after:after, .ui-accordion .c-Icon--calendarViewDay.c-Icon--after.ui-accordion-header:after, .c-Icon--calendarViewDay.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--callEnd.c-Icon--before:before, .ui-accordion .c-Icon--callEnd.ui-accordion-header:before, .c-Icon--callEnd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--callEnd.c-Icon--after:after, .ui-accordion .c-Icon--callEnd.c-Icon--after.ui-accordion-header:after, .c-Icon--callEnd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--callMade.c-Icon--before:before, .ui-accordion .c-Icon--callMade.ui-accordion-header:before, .c-Icon--callMade.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--callMade.c-Icon--after:after, .ui-accordion .c-Icon--callMade.c-Icon--after.ui-accordion-header:after, .c-Icon--callMade.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--callMissed.c-Icon--before:before, .ui-accordion .c-Icon--callMissed.ui-accordion-header:before, .c-Icon--callMissed.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--callMissed.c-Icon--after:after, .ui-accordion .c-Icon--callMissed.c-Icon--after.ui-accordion-header:after, .c-Icon--callMissed.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--callMissedOutgoing.c-Icon--before:before, .ui-accordion .c-Icon--callMissedOutgoing.ui-accordion-header:before, .c-Icon--callMissedOutgoing.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--callMissedOutgoing.c-Icon--after:after, .ui-accordion .c-Icon--callMissedOutgoing.c-Icon--after.ui-accordion-header:after, .c-Icon--callMissedOutgoing.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--callReceived.c-Icon--before:before, .ui-accordion .c-Icon--callReceived.ui-accordion-header:before, .c-Icon--callReceived.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--callReceived.c-Icon--after:after, .ui-accordion .c-Icon--callReceived.c-Icon--after.ui-accordion-header:after, .c-Icon--callReceived.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--callSplit.c-Icon--before:before, .ui-accordion .c-Icon--callSplit.ui-accordion-header:before, .c-Icon--callSplit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--callSplit.c-Icon--after:after, .ui-accordion .c-Icon--callSplit.c-Icon--after.ui-accordion-header:after, .c-Icon--callSplit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--callToAction.c-Icon--before:before, .ui-accordion .c-Icon--callToAction.ui-accordion-header:before, .c-Icon--callToAction.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--callToAction.c-Icon--after:after, .ui-accordion .c-Icon--callToAction.c-Icon--after.ui-accordion-header:after, .c-Icon--callToAction.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--camera.c-Icon--before:before, .ui-accordion .c-Icon--camera.ui-accordion-header:before, .c-Icon--camera.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--camera.c-Icon--after:after, .ui-accordion .c-Icon--camera.c-Icon--after.ui-accordion-header:after, .c-Icon--camera.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cameraEnhance.c-Icon--before:before, .ui-accordion .c-Icon--cameraEnhance.ui-accordion-header:before, .c-Icon--cameraEnhance.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cameraEnhance.c-Icon--after:after, .ui-accordion .c-Icon--cameraEnhance.c-Icon--after.ui-accordion-header:after, .c-Icon--cameraEnhance.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cameraFront.c-Icon--before:before, .ui-accordion .c-Icon--cameraFront.ui-accordion-header:before, .c-Icon--cameraFront.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cameraFront.c-Icon--after:after, .ui-accordion .c-Icon--cameraFront.c-Icon--after.ui-accordion-header:after, .c-Icon--cameraFront.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cameraRear.c-Icon--before:before, .ui-accordion .c-Icon--cameraRear.ui-accordion-header:before, .c-Icon--cameraRear.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cameraRear.c-Icon--after:after, .ui-accordion .c-Icon--cameraRear.c-Icon--after.ui-accordion-header:after, .c-Icon--cameraRear.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cameraRoll.c-Icon--before:before, .ui-accordion .c-Icon--cameraRoll.ui-accordion-header:before, .c-Icon--cameraRoll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cameraRoll.c-Icon--after:after, .ui-accordion .c-Icon--cameraRoll.c-Icon--after.ui-accordion-header:after, .c-Icon--cameraRoll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cancel.c-Icon--before:before, .ui-accordion .c-Icon--cancel.ui-accordion-header:before, .c-Icon--cancel.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cancel.c-Icon--after:after, .ui-accordion .c-Icon--cancel.c-Icon--after.ui-accordion-header:after, .c-Icon--cancel.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cancelPresentation.c-Icon--before:before, .ui-accordion .c-Icon--cancelPresentation.ui-accordion-header:before, .c-Icon--cancelPresentation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cancelPresentation.c-Icon--after:after, .ui-accordion .c-Icon--cancelPresentation.c-Icon--after.ui-accordion-header:after, .c-Icon--cancelPresentation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cardMembership.c-Icon--before:before, .ui-accordion .c-Icon--cardMembership.ui-accordion-header:before, .c-Icon--cardMembership.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cardMembership.c-Icon--after:after, .ui-accordion .c-Icon--cardMembership.c-Icon--after.ui-accordion-header:after, .c-Icon--cardMembership.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cardTravel.c-Icon--before:before, .ui-accordion .c-Icon--cardTravel.ui-accordion-header:before, .c-Icon--cardTravel.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cardTravel.c-Icon--after:after, .ui-accordion .c-Icon--cardTravel.c-Icon--after.ui-accordion-header:after, .c-Icon--cardTravel.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--casino.c-Icon--before:before, .ui-accordion .c-Icon--casino.ui-accordion-header:before, .c-Icon--casino.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--casino.c-Icon--after:after, .ui-accordion .c-Icon--casino.c-Icon--after.ui-accordion-header:after, .c-Icon--casino.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cast.c-Icon--before:before, .ui-accordion .c-Icon--cast.ui-accordion-header:before, .c-Icon--cast.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cast.c-Icon--after:after, .ui-accordion .c-Icon--cast.c-Icon--after.ui-accordion-header:after, .c-Icon--cast.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--castConnected.c-Icon--before:before, .ui-accordion .c-Icon--castConnected.ui-accordion-header:before, .c-Icon--castConnected.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--castConnected.c-Icon--after:after, .ui-accordion .c-Icon--castConnected.c-Icon--after.ui-accordion-header:after, .c-Icon--castConnected.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cellWifi.c-Icon--before:before, .ui-accordion .c-Icon--cellWifi.ui-accordion-header:before, .c-Icon--cellWifi.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cellWifi.c-Icon--after:after, .ui-accordion .c-Icon--cellWifi.c-Icon--after.ui-accordion-header:after, .c-Icon--cellWifi.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--centerFocusStrong.c-Icon--before:before, .ui-accordion .c-Icon--centerFocusStrong.ui-accordion-header:before, .c-Icon--centerFocusStrong.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--centerFocusStrong.c-Icon--after:after, .ui-accordion .c-Icon--centerFocusStrong.c-Icon--after.ui-accordion-header:after, .c-Icon--centerFocusStrong.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--centerFocusWeak.c-Icon--before:before, .ui-accordion .c-Icon--centerFocusWeak.ui-accordion-header:before, .c-Icon--centerFocusWeak.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--centerFocusWeak.c-Icon--after:after, .ui-accordion .c-Icon--centerFocusWeak.c-Icon--after.ui-accordion-header:after, .c-Icon--centerFocusWeak.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--changeHistory.c-Icon--before:before, .ui-accordion .c-Icon--changeHistory.ui-accordion-header:before, .c-Icon--changeHistory.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--changeHistory.c-Icon--after:after, .ui-accordion .c-Icon--changeHistory.c-Icon--after.ui-accordion-header:after, .c-Icon--changeHistory.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--chat.c-Icon--before:before, .ui-accordion .c-Icon--chat.ui-accordion-header:before, .c-Icon--chat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--chat.c-Icon--after:after, .ui-accordion .c-Icon--chat.c-Icon--after.ui-accordion-header:after, .c-Icon--chat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--chatBubble.c-Icon--before:before, .ui-accordion .c-Icon--chatBubble.ui-accordion-header:before, .c-Icon--chatBubble.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--chatBubble.c-Icon--after:after, .ui-accordion .c-Icon--chatBubble.c-Icon--after.ui-accordion-header:after, .c-Icon--chatBubble.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--chatBubbleOutline.c-Icon--before:before, .ui-accordion .c-Icon--chatBubbleOutline.ui-accordion-header:before, .c-Icon--chatBubbleOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--chatBubbleOutline.c-Icon--after:after, .ui-accordion .c-Icon--chatBubbleOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--chatBubbleOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--check.c-Icon--before:before, .ui-accordion .c-Icon--check.ui-accordion-header:before, .c-Icon--check.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--check.c-Icon--after:after, .ui-accordion .c-Icon--check.c-Icon--after.ui-accordion-header:after, .c-Icon--check.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--checkBox.c-Icon--before:before, .ui-accordion .c-Icon--checkBox.ui-accordion-header:before, .c-Icon--checkBox.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--checkBox.c-Icon--after:after, .ui-accordion .c-Icon--checkBox.c-Icon--after.ui-accordion-header:after, .c-Icon--checkBox.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--checkBoxOutlineBlank.c-Icon--before:before, .ui-accordion .c-Icon--checkBoxOutlineBlank.ui-accordion-header:before, .c-Icon--checkBoxOutlineBlank.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--checkBoxOutlineBlank.c-Icon--after:after, .ui-accordion .c-Icon--checkBoxOutlineBlank.c-Icon--after.ui-accordion-header:after, .c-Icon--checkBoxOutlineBlank.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--checkCircle.c-Icon--before:before, .ui-accordion .c-Icon--checkCircle.ui-accordion-header:before, .c-Icon--checkCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--checkCircle.c-Icon--after:after, .ui-accordion .c-Icon--checkCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--checkCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--checkCircleOutline.c-Icon--before:before, .ui-accordion .c-Icon--checkCircleOutline.ui-accordion-header:before, .c-Icon--checkCircleOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--checkCircleOutline.c-Icon--after:after, .ui-accordion .c-Icon--checkCircleOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--checkCircleOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--childCare.c-Icon--before:before, .ui-accordion .c-Icon--childCare.ui-accordion-header:before, .c-Icon--childCare.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--childCare.c-Icon--after:after, .ui-accordion .c-Icon--childCare.c-Icon--after.ui-accordion-header:after, .c-Icon--childCare.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--childFriendly.c-Icon--before:before, .ui-accordion .c-Icon--childFriendly.ui-accordion-header:before, .c-Icon--childFriendly.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--childFriendly.c-Icon--after:after, .ui-accordion .c-Icon--childFriendly.c-Icon--after.ui-accordion-header:after, .c-Icon--childFriendly.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--chromeReaderMode.c-Icon--before:before, .ui-accordion .c-Icon--chromeReaderMode.ui-accordion-header:before, .c-Icon--chromeReaderMode.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--chromeReaderMode.c-Icon--after:after, .ui-accordion .c-Icon--chromeReaderMode.c-Icon--after.ui-accordion-header:after, .c-Icon--chromeReaderMode.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--class.c-Icon--before:before, .ui-accordion .c-Icon--class.ui-accordion-header:before, .c-Icon--class.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--class.c-Icon--after:after, .ui-accordion .c-Icon--class.c-Icon--after.ui-accordion-header:after, .c-Icon--class.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--clearAll.c-Icon--before:before, .ui-accordion .c-Icon--clearAll.ui-accordion-header:before, .c-Icon--clearAll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--clearAll.c-Icon--after:after, .ui-accordion .c-Icon--clearAll.c-Icon--after.ui-accordion-header:after, .c-Icon--clearAll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--close.c-Icon--before:before, .ui-accordion .c-Icon--close.ui-accordion-header:before, .c-Icon--close.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--close.c-Icon--after:after, .ui-accordion .c-Icon--close.c-Icon--after.ui-accordion-header:after, .c-Icon--close.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--closedCaption.c-Icon--before:before, .ui-accordion .c-Icon--closedCaption.ui-accordion-header:before, .c-Icon--closedCaption.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--closedCaption.c-Icon--after:after, .ui-accordion .c-Icon--closedCaption.c-Icon--after.ui-accordion-header:after, .c-Icon--closedCaption.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cloudCircle.c-Icon--before:before, .ui-accordion .c-Icon--cloudCircle.ui-accordion-header:before, .c-Icon--cloudCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cloudCircle.c-Icon--after:after, .ui-accordion .c-Icon--cloudCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--cloudCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cloudDone.c-Icon--before:before, .ui-accordion .c-Icon--cloudDone.ui-accordion-header:before, .c-Icon--cloudDone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cloudDone.c-Icon--after:after, .ui-accordion .c-Icon--cloudDone.c-Icon--after.ui-accordion-header:after, .c-Icon--cloudDone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cloudDownload.c-Icon--before:before, .ui-accordion .c-Icon--cloudDownload.ui-accordion-header:before, .c-Icon--cloudDownload.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cloudDownload.c-Icon--after:after, .ui-accordion .c-Icon--cloudDownload.c-Icon--after.ui-accordion-header:after, .c-Icon--cloudDownload.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cloudOff.c-Icon--before:before, .ui-accordion .c-Icon--cloudOff.ui-accordion-header:before, .c-Icon--cloudOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cloudOff.c-Icon--after:after, .ui-accordion .c-Icon--cloudOff.c-Icon--after.ui-accordion-header:after, .c-Icon--cloudOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cloudQueue.c-Icon--before:before, .ui-accordion .c-Icon--cloudQueue.ui-accordion-header:before, .c-Icon--cloudQueue.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cloudQueue.c-Icon--after:after, .ui-accordion .c-Icon--cloudQueue.c-Icon--after.ui-accordion-header:after, .c-Icon--cloudQueue.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--code.c-Icon--before:before, .ui-accordion .c-Icon--code.ui-accordion-header:before, .c-Icon--code.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--code.c-Icon--after:after, .ui-accordion .c-Icon--code.c-Icon--after.ui-accordion-header:after, .c-Icon--code.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--collectionsBookmark.c-Icon--before:before, .ui-accordion .c-Icon--collectionsBookmark.ui-accordion-header:before, .c-Icon--collectionsBookmark.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--collectionsBookmark.c-Icon--after:after, .ui-accordion .c-Icon--collectionsBookmark.c-Icon--after.ui-accordion-header:after, .c-Icon--collectionsBookmark.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--colorize.c-Icon--before:before, .ui-accordion .c-Icon--colorize.ui-accordion-header:before, .c-Icon--colorize.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--colorize.c-Icon--after:after, .ui-accordion .c-Icon--colorize.c-Icon--after.ui-accordion-header:after, .c-Icon--colorize.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--comment.c-Icon--before:before, .ui-accordion .c-Icon--comment.ui-accordion-header:before, .c-Icon--comment.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--comment.c-Icon--after:after, .ui-accordion .c-Icon--comment.c-Icon--after.ui-accordion-header:after, .c-Icon--comment.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--commute.c-Icon--before:before, .ui-accordion .c-Icon--commute.ui-accordion-header:before, .c-Icon--commute.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--commute.c-Icon--after:after, .ui-accordion .c-Icon--commute.c-Icon--after.ui-accordion-header:after, .c-Icon--commute.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--compare.c-Icon--before:before, .ui-accordion .c-Icon--compare.ui-accordion-header:before, .c-Icon--compare.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--compare.c-Icon--after:after, .ui-accordion .c-Icon--compare.c-Icon--after.ui-accordion-header:after, .c-Icon--compare.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--compareArrows.c-Icon--before:before, .ui-accordion .c-Icon--compareArrows.ui-accordion-header:before, .c-Icon--compareArrows.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--compareArrows.c-Icon--after:after, .ui-accordion .c-Icon--compareArrows.c-Icon--after.ui-accordion-header:after, .c-Icon--compareArrows.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--compassCalibration.c-Icon--before:before, .ui-accordion .c-Icon--compassCalibration.ui-accordion-header:before, .c-Icon--compassCalibration.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--compassCalibration.c-Icon--after:after, .ui-accordion .c-Icon--compassCalibration.c-Icon--after.ui-accordion-header:after, .c-Icon--compassCalibration.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--confirmationNumber.c-Icon--before:before, .ui-accordion .c-Icon--confirmationNumber.ui-accordion-header:before, .c-Icon--confirmationNumber.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--confirmationNumber.c-Icon--after:after, .ui-accordion .c-Icon--confirmationNumber.c-Icon--after.ui-accordion-header:after, .c-Icon--confirmationNumber.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--contactMail.c-Icon--before:before, .ui-accordion .c-Icon--contactMail.ui-accordion-header:before, .c-Icon--contactMail.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--contactMail.c-Icon--after:after, .ui-accordion .c-Icon--contactMail.c-Icon--after.ui-accordion-header:after, .c-Icon--contactMail.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--contactPhone.c-Icon--before:before, .ui-accordion .c-Icon--contactPhone.ui-accordion-header:before, .c-Icon--contactPhone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--contactPhone.c-Icon--after:after, .ui-accordion .c-Icon--contactPhone.c-Icon--after.ui-accordion-header:after, .c-Icon--contactPhone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--contactSupport.c-Icon--before:before, .ui-accordion .c-Icon--contactSupport.ui-accordion-header:before, .c-Icon--contactSupport.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--contactSupport.c-Icon--after:after, .ui-accordion .c-Icon--contactSupport.c-Icon--after.ui-accordion-header:after, .c-Icon--contactSupport.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--contacts.c-Icon--before:before, .ui-accordion .c-Icon--contacts.ui-accordion-header:before, .c-Icon--contacts.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--contacts.c-Icon--after:after, .ui-accordion .c-Icon--contacts.c-Icon--after.ui-accordion-header:after, .c-Icon--contacts.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--contentCopy.c-Icon--before:before, .ui-accordion .c-Icon--contentCopy.ui-accordion-header:before, .c-Icon--contentCopy.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--contentCopy.c-Icon--after:after, .ui-accordion .c-Icon--contentCopy.c-Icon--after.ui-accordion-header:after, .c-Icon--contentCopy.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--contentCut.c-Icon--before:before, .ui-accordion .c-Icon--contentCut.ui-accordion-header:before, .c-Icon--contentCut.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--contentCut.c-Icon--after:after, .ui-accordion .c-Icon--contentCut.c-Icon--after.ui-accordion-header:after, .c-Icon--contentCut.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--contentPaste.c-Icon--before:before, .ui-accordion .c-Icon--contentPaste.ui-accordion-header:before, .c-Icon--contentPaste.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--contentPaste.c-Icon--after:after, .ui-accordion .c-Icon--contentPaste.c-Icon--after.ui-accordion-header:after, .c-Icon--contentPaste.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--controlCamera.c-Icon--before:before, .ui-accordion .c-Icon--controlCamera.ui-accordion-header:before, .c-Icon--controlCamera.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--controlCamera.c-Icon--after:after, .ui-accordion .c-Icon--controlCamera.c-Icon--after.ui-accordion-header:after, .c-Icon--controlCamera.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--controlPointDuplicate.c-Icon--before:before, .ui-accordion .c-Icon--controlPointDuplicate.ui-accordion-header:before, .c-Icon--controlPointDuplicate.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--controlPointDuplicate.c-Icon--after:after, .ui-accordion .c-Icon--controlPointDuplicate.c-Icon--after.ui-accordion-header:after, .c-Icon--controlPointDuplicate.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--copyright.c-Icon--before:before, .ui-accordion .c-Icon--copyright.ui-accordion-header:before, .c-Icon--copyright.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--copyright.c-Icon--after:after, .ui-accordion .c-Icon--copyright.c-Icon--after.ui-accordion-header:after, .c-Icon--copyright.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--createNewFolder.c-Icon--before:before, .ui-accordion .c-Icon--createNewFolder.ui-accordion-header:before, .c-Icon--createNewFolder.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--createNewFolder.c-Icon--after:after, .ui-accordion .c-Icon--createNewFolder.c-Icon--after.ui-accordion-header:after, .c-Icon--createNewFolder.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--crop.c-Icon--before:before, .ui-accordion .c-Icon--crop.ui-accordion-header:before, .c-Icon--crop.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--crop.c-Icon--after:after, .ui-accordion .c-Icon--crop.c-Icon--after.ui-accordion-header:after, .c-Icon--crop.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--crop169.c-Icon--before:before, .ui-accordion .c-Icon--crop169.ui-accordion-header:before, .c-Icon--crop169.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--crop169.c-Icon--after:after, .ui-accordion .c-Icon--crop169.c-Icon--after.ui-accordion-header:after, .c-Icon--crop169.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--crop32.c-Icon--before:before, .ui-accordion .c-Icon--crop32.ui-accordion-header:before, .c-Icon--crop32.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--crop32.c-Icon--after:after, .ui-accordion .c-Icon--crop32.c-Icon--after.ui-accordion-header:after, .c-Icon--crop32.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cropLandscape.c-Icon--before:before, .ui-accordion .c-Icon--cropLandscape.ui-accordion-header:before, .c-Icon--cropLandscape.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cropLandscape.c-Icon--after:after, .ui-accordion .c-Icon--cropLandscape.c-Icon--after.ui-accordion-header:after, .c-Icon--cropLandscape.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--crop75.c-Icon--before:before, .ui-accordion .c-Icon--crop75.ui-accordion-header:before, .c-Icon--crop75.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--crop75.c-Icon--after:after, .ui-accordion .c-Icon--crop75.c-Icon--after.ui-accordion-header:after, .c-Icon--crop75.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cropDin.c-Icon--before:before, .ui-accordion .c-Icon--cropDin.ui-accordion-header:before, .c-Icon--cropDin.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cropDin.c-Icon--after:after, .ui-accordion .c-Icon--cropDin.c-Icon--after.ui-accordion-header:after, .c-Icon--cropDin.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cropFree.c-Icon--before:before, .ui-accordion .c-Icon--cropFree.ui-accordion-header:before, .c-Icon--cropFree.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cropFree.c-Icon--after:after, .ui-accordion .c-Icon--cropFree.c-Icon--after.ui-accordion-header:after, .c-Icon--cropFree.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cropOriginal.c-Icon--before:before, .ui-accordion .c-Icon--cropOriginal.ui-accordion-header:before, .c-Icon--cropOriginal.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cropOriginal.c-Icon--after:after, .ui-accordion .c-Icon--cropOriginal.c-Icon--after.ui-accordion-header:after, .c-Icon--cropOriginal.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cropPortrait.c-Icon--before:before, .ui-accordion .c-Icon--cropPortrait.ui-accordion-header:before, .c-Icon--cropPortrait.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cropPortrait.c-Icon--after:after, .ui-accordion .c-Icon--cropPortrait.c-Icon--after.ui-accordion-header:after, .c-Icon--cropPortrait.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cropRotate.c-Icon--before:before, .ui-accordion .c-Icon--cropRotate.ui-accordion-header:before, .c-Icon--cropRotate.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cropRotate.c-Icon--after:after, .ui-accordion .c-Icon--cropRotate.c-Icon--after.ui-accordion-header:after, .c-Icon--cropRotate.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--cropSquare.c-Icon--before:before, .ui-accordion .c-Icon--cropSquare.ui-accordion-header:before, .c-Icon--cropSquare.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--cropSquare.c-Icon--after:after, .ui-accordion .c-Icon--cropSquare.c-Icon--after.ui-accordion-header:after, .c-Icon--cropSquare.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dashboard.c-Icon--before:before, .ui-accordion .c-Icon--dashboard.ui-accordion-header:before, .c-Icon--dashboard.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dashboard.c-Icon--after:after, .ui-accordion .c-Icon--dashboard.c-Icon--after.ui-accordion-header:after, .c-Icon--dashboard.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dataUsage.c-Icon--before:before, .ui-accordion .c-Icon--dataUsage.ui-accordion-header:before, .c-Icon--dataUsage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dataUsage.c-Icon--after:after, .ui-accordion .c-Icon--dataUsage.c-Icon--after.ui-accordion-header:after, .c-Icon--dataUsage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dateRange.c-Icon--before:before, .ui-accordion .c-Icon--dateRange.ui-accordion-header:before, .c-Icon--dateRange.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dateRange.c-Icon--after:after, .ui-accordion .c-Icon--dateRange.c-Icon--after.ui-accordion-header:after, .c-Icon--dateRange.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dehaze.c-Icon--before:before, .ui-accordion .c-Icon--dehaze.ui-accordion-header:before, .c-Icon--dehaze.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dehaze.c-Icon--after:after, .ui-accordion .c-Icon--dehaze.c-Icon--after.ui-accordion-header:after, .c-Icon--dehaze.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--delete.c-Icon--before:before, .ui-accordion .c-Icon--delete.ui-accordion-header:before, .c-Icon--delete.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--delete.c-Icon--after:after, .ui-accordion .c-Icon--delete.c-Icon--after.ui-accordion-header:after, .c-Icon--delete.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--deleteForever.c-Icon--before:before, .ui-accordion .c-Icon--deleteForever.ui-accordion-header:before, .c-Icon--deleteForever.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--deleteForever.c-Icon--after:after, .ui-accordion .c-Icon--deleteForever.c-Icon--after.ui-accordion-header:after, .c-Icon--deleteForever.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--deleteOutline.c-Icon--before:before, .ui-accordion .c-Icon--deleteOutline.ui-accordion-header:before, .c-Icon--deleteOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--deleteOutline.c-Icon--after:after, .ui-accordion .c-Icon--deleteOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--deleteOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--deleteSweep.c-Icon--before:before, .ui-accordion .c-Icon--deleteSweep.ui-accordion-header:before, .c-Icon--deleteSweep.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--deleteSweep.c-Icon--after:after, .ui-accordion .c-Icon--deleteSweep.c-Icon--after.ui-accordion-header:after, .c-Icon--deleteSweep.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--departureBoard.c-Icon--before:before, .ui-accordion .c-Icon--departureBoard.ui-accordion-header:before, .c-Icon--departureBoard.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--departureBoard.c-Icon--after:after, .ui-accordion .c-Icon--departureBoard.c-Icon--after.ui-accordion-header:after, .c-Icon--departureBoard.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--description.c-Icon--before:before, .ui-accordion .c-Icon--description.ui-accordion-header:before, .c-Icon--description.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--description.c-Icon--after:after, .ui-accordion .c-Icon--description.c-Icon--after.ui-accordion-header:after, .c-Icon--description.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--desktopAccessDisabled.c-Icon--before:before, .ui-accordion .c-Icon--desktopAccessDisabled.ui-accordion-header:before, .c-Icon--desktopAccessDisabled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--desktopAccessDisabled.c-Icon--after:after, .ui-accordion .c-Icon--desktopAccessDisabled.c-Icon--after.ui-accordion-header:after, .c-Icon--desktopAccessDisabled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--desktopMac.c-Icon--before:before, .ui-accordion .c-Icon--desktopMac.ui-accordion-header:before, .c-Icon--desktopMac.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--desktopMac.c-Icon--after:after, .ui-accordion .c-Icon--desktopMac.c-Icon--after.ui-accordion-header:after, .c-Icon--desktopMac.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--desktopWindows.c-Icon--before:before, .ui-accordion .c-Icon--desktopWindows.ui-accordion-header:before, .c-Icon--desktopWindows.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--desktopWindows.c-Icon--after:after, .ui-accordion .c-Icon--desktopWindows.c-Icon--after.ui-accordion-header:after, .c-Icon--desktopWindows.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--details.c-Icon--before:before, .ui-accordion .c-Icon--details.ui-accordion-header:before, .c-Icon--details.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--details.c-Icon--after:after, .ui-accordion .c-Icon--details.c-Icon--after.ui-accordion-header:after, .c-Icon--details.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--developerBoard.c-Icon--before:before, .ui-accordion .c-Icon--developerBoard.ui-accordion-header:before, .c-Icon--developerBoard.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--developerBoard.c-Icon--after:after, .ui-accordion .c-Icon--developerBoard.c-Icon--after.ui-accordion-header:after, .c-Icon--developerBoard.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--developerMode.c-Icon--before:before, .ui-accordion .c-Icon--developerMode.ui-accordion-header:before, .c-Icon--developerMode.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--developerMode.c-Icon--after:after, .ui-accordion .c-Icon--developerMode.c-Icon--after.ui-accordion-header:after, .c-Icon--developerMode.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--deviceHub.c-Icon--before:before, .ui-accordion .c-Icon--deviceHub.ui-accordion-header:before, .c-Icon--deviceHub.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--deviceHub.c-Icon--after:after, .ui-accordion .c-Icon--deviceHub.c-Icon--after.ui-accordion-header:after, .c-Icon--deviceHub.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--deviceUnknown.c-Icon--before:before, .ui-accordion .c-Icon--deviceUnknown.ui-accordion-header:before, .c-Icon--deviceUnknown.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--deviceUnknown.c-Icon--after:after, .ui-accordion .c-Icon--deviceUnknown.c-Icon--after.ui-accordion-header:after, .c-Icon--deviceUnknown.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--devicesOther.c-Icon--before:before, .ui-accordion .c-Icon--devicesOther.ui-accordion-header:before, .c-Icon--devicesOther.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--devicesOther.c-Icon--after:after, .ui-accordion .c-Icon--devicesOther.c-Icon--after.ui-accordion-header:after, .c-Icon--devicesOther.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dialerSip.c-Icon--before:before, .ui-accordion .c-Icon--dialerSip.ui-accordion-header:before, .c-Icon--dialerSip.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dialerSip.c-Icon--after:after, .ui-accordion .c-Icon--dialerSip.c-Icon--after.ui-accordion-header:after, .c-Icon--dialerSip.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dialpad.c-Icon--before:before, .ui-accordion .c-Icon--dialpad.ui-accordion-header:before, .c-Icon--dialpad.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dialpad.c-Icon--after:after, .ui-accordion .c-Icon--dialpad.c-Icon--after.ui-accordion-header:after, .c-Icon--dialpad.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directions.c-Icon--before:before, .ui-accordion .c-Icon--directions.ui-accordion-header:before, .c-Icon--directions.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directions.c-Icon--after:after, .ui-accordion .c-Icon--directions.c-Icon--after.ui-accordion-header:after, .c-Icon--directions.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directionsBike.c-Icon--before:before, .ui-accordion .c-Icon--directionsBike.ui-accordion-header:before, .c-Icon--directionsBike.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directionsBike.c-Icon--after:after, .ui-accordion .c-Icon--directionsBike.c-Icon--after.ui-accordion-header:after, .c-Icon--directionsBike.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directionsBoat.c-Icon--before:before, .ui-accordion .c-Icon--directionsBoat.ui-accordion-header:before, .c-Icon--directionsBoat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directionsBoat.c-Icon--after:after, .ui-accordion .c-Icon--directionsBoat.c-Icon--after.ui-accordion-header:after, .c-Icon--directionsBoat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directionsBus.c-Icon--before:before, .ui-accordion .c-Icon--directionsBus.ui-accordion-header:before, .c-Icon--directionsBus.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directionsBus.c-Icon--after:after, .ui-accordion .c-Icon--directionsBus.c-Icon--after.ui-accordion-header:after, .c-Icon--directionsBus.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directionsCar.c-Icon--before:before, .ui-accordion .c-Icon--directionsCar.ui-accordion-header:before, .c-Icon--directionsCar.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directionsCar.c-Icon--after:after, .ui-accordion .c-Icon--directionsCar.c-Icon--after.ui-accordion-header:after, .c-Icon--directionsCar.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directionsRailway.c-Icon--before:before, .ui-accordion .c-Icon--directionsRailway.ui-accordion-header:before, .c-Icon--directionsRailway.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directionsRailway.c-Icon--after:after, .ui-accordion .c-Icon--directionsRailway.c-Icon--after.ui-accordion-header:after, .c-Icon--directionsRailway.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directionsRun.c-Icon--before:before, .ui-accordion .c-Icon--directionsRun.ui-accordion-header:before, .c-Icon--directionsRun.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directionsRun.c-Icon--after:after, .ui-accordion .c-Icon--directionsRun.c-Icon--after.ui-accordion-header:after, .c-Icon--directionsRun.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directionsTransit.c-Icon--before:before, .ui-accordion .c-Icon--directionsTransit.ui-accordion-header:before, .c-Icon--directionsTransit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directionsTransit.c-Icon--after:after, .ui-accordion .c-Icon--directionsTransit.c-Icon--after.ui-accordion-header:after, .c-Icon--directionsTransit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--directionsWalk.c-Icon--before:before, .ui-accordion .c-Icon--directionsWalk.ui-accordion-header:before, .c-Icon--directionsWalk.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--directionsWalk.c-Icon--after:after, .ui-accordion .c-Icon--directionsWalk.c-Icon--after.ui-accordion-header:after, .c-Icon--directionsWalk.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--discFull.c-Icon--before:before, .ui-accordion .c-Icon--discFull.ui-accordion-header:before, .c-Icon--discFull.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--discFull.c-Icon--after:after, .ui-accordion .c-Icon--discFull.c-Icon--after.ui-accordion-header:after, .c-Icon--discFull.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dns.c-Icon--before:before, .ui-accordion .c-Icon--dns.ui-accordion-header:before, .c-Icon--dns.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dns.c-Icon--after:after, .ui-accordion .c-Icon--dns.c-Icon--after.ui-accordion-header:after, .c-Icon--dns.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--doNotDisturbAlt.c-Icon--before:before, .ui-accordion .c-Icon--doNotDisturbAlt.ui-accordion-header:before, .c-Icon--doNotDisturbAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--doNotDisturbAlt.c-Icon--after:after, .ui-accordion .c-Icon--doNotDisturbAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--doNotDisturbAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--doNotDisturbOff.c-Icon--before:before, .ui-accordion .c-Icon--doNotDisturbOff.ui-accordion-header:before, .c-Icon--doNotDisturbOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--doNotDisturbOff.c-Icon--after:after, .ui-accordion .c-Icon--doNotDisturbOff.c-Icon--after.ui-accordion-header:after, .c-Icon--doNotDisturbOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dock.c-Icon--before:before, .ui-accordion .c-Icon--dock.ui-accordion-header:before, .c-Icon--dock.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dock.c-Icon--after:after, .ui-accordion .c-Icon--dock.c-Icon--after.ui-accordion-header:after, .c-Icon--dock.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--domainDisabled.c-Icon--before:before, .ui-accordion .c-Icon--domainDisabled.ui-accordion-header:before, .c-Icon--domainDisabled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--domainDisabled.c-Icon--after:after, .ui-accordion .c-Icon--domainDisabled.c-Icon--after.ui-accordion-header:after, .c-Icon--domainDisabled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--done.c-Icon--before:before, .ui-accordion .c-Icon--done.ui-accordion-header:before, .c-Icon--done.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--done.c-Icon--after:after, .ui-accordion .c-Icon--done.c-Icon--after.ui-accordion-header:after, .c-Icon--done.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--doneAll.c-Icon--before:before, .ui-accordion .c-Icon--doneAll.ui-accordion-header:before, .c-Icon--doneAll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--doneAll.c-Icon--after:after, .ui-accordion .c-Icon--doneAll.c-Icon--after.ui-accordion-header:after, .c-Icon--doneAll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--doneOutline.c-Icon--before:before, .ui-accordion .c-Icon--doneOutline.ui-accordion-header:before, .c-Icon--doneOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--doneOutline.c-Icon--after:after, .ui-accordion .c-Icon--doneOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--doneOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--donutLarge.c-Icon--before:before, .ui-accordion .c-Icon--donutLarge.ui-accordion-header:before, .c-Icon--donutLarge.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--donutLarge.c-Icon--after:after, .ui-accordion .c-Icon--donutLarge.c-Icon--after.ui-accordion-header:after, .c-Icon--donutLarge.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--donutSmall.c-Icon--before:before, .ui-accordion .c-Icon--donutSmall.ui-accordion-header:before, .c-Icon--donutSmall.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--donutSmall.c-Icon--after:after, .ui-accordion .c-Icon--donutSmall.c-Icon--after.ui-accordion-header:after, .c-Icon--donutSmall.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--drafts.c-Icon--before:before, .ui-accordion .c-Icon--drafts.ui-accordion-header:before, .c-Icon--drafts.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--drafts.c-Icon--after:after, .ui-accordion .c-Icon--drafts.c-Icon--after.ui-accordion-header:after, .c-Icon--drafts.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dragHandle.c-Icon--before:before, .ui-accordion .c-Icon--dragHandle.ui-accordion-header:before, .c-Icon--dragHandle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dragHandle.c-Icon--after:after, .ui-accordion .c-Icon--dragHandle.c-Icon--after.ui-accordion-header:after, .c-Icon--dragHandle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dragIndicator.c-Icon--before:before, .ui-accordion .c-Icon--dragIndicator.ui-accordion-header:before, .c-Icon--dragIndicator.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dragIndicator.c-Icon--after:after, .ui-accordion .c-Icon--dragIndicator.c-Icon--after.ui-accordion-header:after, .c-Icon--dragIndicator.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--duo.c-Icon--before:before, .ui-accordion .c-Icon--duo.ui-accordion-header:before, .c-Icon--duo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--duo.c-Icon--after:after, .ui-accordion .c-Icon--duo.c-Icon--after.ui-accordion-header:after, .c-Icon--duo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--dvr.c-Icon--before:before, .ui-accordion .c-Icon--dvr.ui-accordion-header:before, .c-Icon--dvr.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--dvr.c-Icon--after:after, .ui-accordion .c-Icon--dvr.c-Icon--after.ui-accordion-header:after, .c-Icon--dvr.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--editAttributes.c-Icon--before:before, .ui-accordion .c-Icon--editAttributes.ui-accordion-header:before, .c-Icon--editAttributes.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--editAttributes.c-Icon--after:after, .ui-accordion .c-Icon--editAttributes.c-Icon--after.ui-accordion-header:after, .c-Icon--editAttributes.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--editLocation.c-Icon--before:before, .ui-accordion .c-Icon--editLocation.ui-accordion-header:before, .c-Icon--editLocation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--editLocation.c-Icon--after:after, .ui-accordion .c-Icon--editLocation.c-Icon--after.ui-accordion-header:after, .c-Icon--editLocation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--eject.c-Icon--before:before, .ui-accordion .c-Icon--eject.ui-accordion-header:before, .c-Icon--eject.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--eject.c-Icon--after:after, .ui-accordion .c-Icon--eject.c-Icon--after.ui-accordion-header:after, .c-Icon--eject.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--enhancedEncryption.c-Icon--before:before, .ui-accordion .c-Icon--enhancedEncryption.ui-accordion-header:before, .c-Icon--enhancedEncryption.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--enhancedEncryption.c-Icon--after:after, .ui-accordion .c-Icon--enhancedEncryption.c-Icon--after.ui-accordion-header:after, .c-Icon--enhancedEncryption.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--equalizer.c-Icon--before:before, .ui-accordion .c-Icon--equalizer.ui-accordion-header:before, .c-Icon--equalizer.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--equalizer.c-Icon--after:after, .ui-accordion .c-Icon--equalizer.c-Icon--after.ui-accordion-header:after, .c-Icon--equalizer.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--error.c-Icon--before:before, .ui-accordion .c-Icon--error.ui-accordion-header:before, .c-Icon--error.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--error.c-Icon--after:after, .ui-accordion .c-Icon--error.c-Icon--after.ui-accordion-header:after, .c-Icon--error.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--errorOutline.c-Icon--before:before, .ui-accordion .c-Icon--errorOutline.ui-accordion-header:before, .c-Icon--errorOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--errorOutline.c-Icon--after:after, .ui-accordion .c-Icon--errorOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--errorOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--euroSymbol.c-Icon--before:before, .ui-accordion .c-Icon--euroSymbol.ui-accordion-header:before, .c-Icon--euroSymbol.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--euroSymbol.c-Icon--after:after, .ui-accordion .c-Icon--euroSymbol.c-Icon--after.ui-accordion-header:after, .c-Icon--euroSymbol.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--evStation.c-Icon--before:before, .ui-accordion .c-Icon--evStation.ui-accordion-header:before, .c-Icon--evStation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--evStation.c-Icon--after:after, .ui-accordion .c-Icon--evStation.c-Icon--after.ui-accordion-header:after, .c-Icon--evStation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--eventAvailable.c-Icon--before:before, .ui-accordion .c-Icon--eventAvailable.ui-accordion-header:before, .c-Icon--eventAvailable.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--eventAvailable.c-Icon--after:after, .ui-accordion .c-Icon--eventAvailable.c-Icon--after.ui-accordion-header:after, .c-Icon--eventAvailable.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--eventBusy.c-Icon--before:before, .ui-accordion .c-Icon--eventBusy.ui-accordion-header:before, .c-Icon--eventBusy.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--eventBusy.c-Icon--after:after, .ui-accordion .c-Icon--eventBusy.c-Icon--after.ui-accordion-header:after, .c-Icon--eventBusy.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--eventNote.c-Icon--before:before, .ui-accordion .c-Icon--eventNote.ui-accordion-header:before, .c-Icon--eventNote.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--eventNote.c-Icon--after:after, .ui-accordion .c-Icon--eventNote.c-Icon--after.ui-accordion-header:after, .c-Icon--eventNote.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--eventSeat.c-Icon--before:before, .ui-accordion .c-Icon--eventSeat.ui-accordion-header:before, .c-Icon--eventSeat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--eventSeat.c-Icon--after:after, .ui-accordion .c-Icon--eventSeat.c-Icon--after.ui-accordion-header:after, .c-Icon--eventSeat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--exitToApp.c-Icon--before:before, .ui-accordion .c-Icon--exitToApp.ui-accordion-header:before, .c-Icon--exitToApp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--exitToApp.c-Icon--after:after, .ui-accordion .c-Icon--exitToApp.c-Icon--after.ui-accordion-header:after, .c-Icon--exitToApp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--expandLess.c-Icon--before:before, .ui-accordion .c-Icon--expandLess.ui-accordion-header:before, .c-Icon--expandLess.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--expandLess.c-Icon--after:after, .ui-accordion .c-Icon--expandLess.c-Icon--after.ui-accordion-header:after, .c-Icon--expandLess.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--expandMore.c-Icon--before:before, .ui-accordion .c-Icon--expandMore.ui-accordion-header:before, .c-Icon--expandMore.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--expandMore.c-Icon--after:after, .ui-accordion .c-Icon--expandMore.c-Icon--after.ui-accordion-header:after, .c-Icon--expandMore.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--explicit.c-Icon--before:before, .ui-accordion .c-Icon--explicit.ui-accordion-header:before, .c-Icon--explicit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--explicit.c-Icon--after:after, .ui-accordion .c-Icon--explicit.c-Icon--after.ui-accordion-header:after, .c-Icon--explicit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--explore.c-Icon--before:before, .ui-accordion .c-Icon--explore.ui-accordion-header:before, .c-Icon--explore.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--explore.c-Icon--after:after, .ui-accordion .c-Icon--explore.c-Icon--after.ui-accordion-header:after, .c-Icon--explore.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--exploreOff.c-Icon--before:before, .ui-accordion .c-Icon--exploreOff.ui-accordion-header:before, .c-Icon--exploreOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--exploreOff.c-Icon--after:after, .ui-accordion .c-Icon--exploreOff.c-Icon--after.ui-accordion-header:after, .c-Icon--exploreOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--exposure.c-Icon--before:before, .ui-accordion .c-Icon--exposure.ui-accordion-header:before, .c-Icon--exposure.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--exposure.c-Icon--after:after, .ui-accordion .c-Icon--exposure.c-Icon--after.ui-accordion-header:after, .c-Icon--exposure.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--exposureNeg1.c-Icon--before:before, .ui-accordion .c-Icon--exposureNeg1.ui-accordion-header:before, .c-Icon--exposureNeg1.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--exposureNeg1.c-Icon--after:after, .ui-accordion .c-Icon--exposureNeg1.c-Icon--after.ui-accordion-header:after, .c-Icon--exposureNeg1.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--exposureNeg2.c-Icon--before:before, .ui-accordion .c-Icon--exposureNeg2.ui-accordion-header:before, .c-Icon--exposureNeg2.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--exposureNeg2.c-Icon--after:after, .ui-accordion .c-Icon--exposureNeg2.c-Icon--after.ui-accordion-header:after, .c-Icon--exposureNeg2.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--exposurePlus1.c-Icon--before:before, .ui-accordion .c-Icon--exposurePlus1.ui-accordion-header:before, .c-Icon--exposurePlus1.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--exposurePlus1.c-Icon--after:after, .ui-accordion .c-Icon--exposurePlus1.c-Icon--after.ui-accordion-header:after, .c-Icon--exposurePlus1.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--exposurePlus2.c-Icon--before:before, .ui-accordion .c-Icon--exposurePlus2.ui-accordion-header:before, .c-Icon--exposurePlus2.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--exposurePlus2.c-Icon--after:after, .ui-accordion .c-Icon--exposurePlus2.c-Icon--after.ui-accordion-header:after, .c-Icon--exposurePlus2.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--exposureZero.c-Icon--before:before, .ui-accordion .c-Icon--exposureZero.ui-accordion-header:before, .c-Icon--exposureZero.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--exposureZero.c-Icon--after:after, .ui-accordion .c-Icon--exposureZero.c-Icon--after.ui-accordion-header:after, .c-Icon--exposureZero.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--extension.c-Icon--before:before, .ui-accordion .c-Icon--extension.ui-accordion-header:before, .c-Icon--extension.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--extension.c-Icon--after:after, .ui-accordion .c-Icon--extension.c-Icon--after.ui-accordion-header:after, .c-Icon--extension.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--face.c-Icon--before:before, .ui-accordion .c-Icon--face.ui-accordion-header:before, .c-Icon--face.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--face.c-Icon--after:after, .ui-accordion .c-Icon--face.c-Icon--after.ui-accordion-header:after, .c-Icon--face.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--facebook.c-Icon--before:before, .ui-accordion .c-Icon--facebook.ui-accordion-header:before, .c-Icon--facebook.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--facebook.c-Icon--after:after, .ui-accordion .c-Icon--facebook.c-Icon--after.ui-accordion-header:after, .c-Icon--facebook.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fastForward.c-Icon--before:before, .ui-accordion .c-Icon--fastForward.ui-accordion-header:before, .c-Icon--fastForward.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fastForward.c-Icon--after:after, .ui-accordion .c-Icon--fastForward.c-Icon--after.ui-accordion-header:after, .c-Icon--fastForward.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fastRewind.c-Icon--before:before, .ui-accordion .c-Icon--fastRewind.ui-accordion-header:before, .c-Icon--fastRewind.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fastRewind.c-Icon--after:after, .ui-accordion .c-Icon--fastRewind.c-Icon--after.ui-accordion-header:after, .c-Icon--fastRewind.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fastfood.c-Icon--before:before, .ui-accordion .c-Icon--fastfood.ui-accordion-header:before, .c-Icon--fastfood.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fastfood.c-Icon--after:after, .ui-accordion .c-Icon--fastfood.c-Icon--after.ui-accordion-header:after, .c-Icon--fastfood.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--favorite.c-Icon--before:before, .ui-accordion .c-Icon--favorite.ui-accordion-header:before, .c-Icon--favorite.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--favorite.c-Icon--after:after, .ui-accordion .c-Icon--favorite.c-Icon--after.ui-accordion-header:after, .c-Icon--favorite.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--favoriteBorder.c-Icon--before:before, .ui-accordion .c-Icon--favoriteBorder.ui-accordion-header:before, .c-Icon--favoriteBorder.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--favoriteBorder.c-Icon--after:after, .ui-accordion .c-Icon--favoriteBorder.c-Icon--after.ui-accordion-header:after, .c-Icon--favoriteBorder.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--featuredPlayList.c-Icon--before:before, .ui-accordion .c-Icon--featuredPlayList.ui-accordion-header:before, .c-Icon--featuredPlayList.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--featuredPlayList.c-Icon--after:after, .ui-accordion .c-Icon--featuredPlayList.c-Icon--after.ui-accordion-header:after, .c-Icon--featuredPlayList.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--featuredVideo.c-Icon--before:before, .ui-accordion .c-Icon--featuredVideo.ui-accordion-header:before, .c-Icon--featuredVideo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--featuredVideo.c-Icon--after:after, .ui-accordion .c-Icon--featuredVideo.c-Icon--after.ui-accordion-header:after, .c-Icon--featuredVideo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fiberDvr.c-Icon--before:before, .ui-accordion .c-Icon--fiberDvr.ui-accordion-header:before, .c-Icon--fiberDvr.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fiberDvr.c-Icon--after:after, .ui-accordion .c-Icon--fiberDvr.c-Icon--after.ui-accordion-header:after, .c-Icon--fiberDvr.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fiberManualRecord.c-Icon--before:before, .ui-accordion .c-Icon--fiberManualRecord.ui-accordion-header:before, .c-Icon--fiberManualRecord.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fiberManualRecord.c-Icon--after:after, .ui-accordion .c-Icon--fiberManualRecord.c-Icon--after.ui-accordion-header:after, .c-Icon--fiberManualRecord.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fiberNew.c-Icon--before:before, .ui-accordion .c-Icon--fiberNew.ui-accordion-header:before, .c-Icon--fiberNew.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fiberNew.c-Icon--after:after, .ui-accordion .c-Icon--fiberNew.c-Icon--after.ui-accordion-header:after, .c-Icon--fiberNew.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fiberPin.c-Icon--before:before, .ui-accordion .c-Icon--fiberPin.ui-accordion-header:before, .c-Icon--fiberPin.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fiberPin.c-Icon--after:after, .ui-accordion .c-Icon--fiberPin.c-Icon--after.ui-accordion-header:after, .c-Icon--fiberPin.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fiberSmartRecord.c-Icon--before:before, .ui-accordion .c-Icon--fiberSmartRecord.ui-accordion-header:before, .c-Icon--fiberSmartRecord.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fiberSmartRecord.c-Icon--after:after, .ui-accordion .c-Icon--fiberSmartRecord.c-Icon--after.ui-accordion-header:after, .c-Icon--fiberSmartRecord.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fileCopy.c-Icon--before:before, .ui-accordion .c-Icon--fileCopy.ui-accordion-header:before, .c-Icon--fileCopy.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fileCopy.c-Icon--after:after, .ui-accordion .c-Icon--fileCopy.c-Icon--after.ui-accordion-header:after, .c-Icon--fileCopy.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fileUpload.c-Icon--before:before, .ui-accordion .c-Icon--fileUpload.ui-accordion-header:before, .c-Icon--fileUpload.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fileUpload.c-Icon--after:after, .ui-accordion .c-Icon--fileUpload.c-Icon--after.ui-accordion-header:after, .c-Icon--fileUpload.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter.c-Icon--before:before, .ui-accordion .c-Icon--filter.ui-accordion-header:before, .c-Icon--filter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter.c-Icon--after:after, .ui-accordion .c-Icon--filter.c-Icon--after.ui-accordion-header:after, .c-Icon--filter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter1.c-Icon--before:before, .ui-accordion .c-Icon--filter1.ui-accordion-header:before, .c-Icon--filter1.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter1.c-Icon--after:after, .ui-accordion .c-Icon--filter1.c-Icon--after.ui-accordion-header:after, .c-Icon--filter1.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter2.c-Icon--before:before, .ui-accordion .c-Icon--filter2.ui-accordion-header:before, .c-Icon--filter2.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter2.c-Icon--after:after, .ui-accordion .c-Icon--filter2.c-Icon--after.ui-accordion-header:after, .c-Icon--filter2.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter3.c-Icon--before:before, .ui-accordion .c-Icon--filter3.ui-accordion-header:before, .c-Icon--filter3.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter3.c-Icon--after:after, .ui-accordion .c-Icon--filter3.c-Icon--after.ui-accordion-header:after, .c-Icon--filter3.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter4.c-Icon--before:before, .ui-accordion .c-Icon--filter4.ui-accordion-header:before, .c-Icon--filter4.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter4.c-Icon--after:after, .ui-accordion .c-Icon--filter4.c-Icon--after.ui-accordion-header:after, .c-Icon--filter4.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter5.c-Icon--before:before, .ui-accordion .c-Icon--filter5.ui-accordion-header:before, .c-Icon--filter5.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter5.c-Icon--after:after, .ui-accordion .c-Icon--filter5.c-Icon--after.ui-accordion-header:after, .c-Icon--filter5.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter6.c-Icon--before:before, .ui-accordion .c-Icon--filter6.ui-accordion-header:before, .c-Icon--filter6.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter6.c-Icon--after:after, .ui-accordion .c-Icon--filter6.c-Icon--after.ui-accordion-header:after, .c-Icon--filter6.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter7.c-Icon--before:before, .ui-accordion .c-Icon--filter7.ui-accordion-header:before, .c-Icon--filter7.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter7.c-Icon--after:after, .ui-accordion .c-Icon--filter7.c-Icon--after.ui-accordion-header:after, .c-Icon--filter7.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter8.c-Icon--before:before, .ui-accordion .c-Icon--filter8.ui-accordion-header:before, .c-Icon--filter8.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter8.c-Icon--after:after, .ui-accordion .c-Icon--filter8.c-Icon--after.ui-accordion-header:after, .c-Icon--filter8.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter9.c-Icon--before:before, .ui-accordion .c-Icon--filter9.ui-accordion-header:before, .c-Icon--filter9.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter9.c-Icon--after:after, .ui-accordion .c-Icon--filter9.c-Icon--after.ui-accordion-header:after, .c-Icon--filter9.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filter9Plus.c-Icon--before:before, .ui-accordion .c-Icon--filter9Plus.ui-accordion-header:before, .c-Icon--filter9Plus.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filter9Plus.c-Icon--after:after, .ui-accordion .c-Icon--filter9Plus.c-Icon--after.ui-accordion-header:after, .c-Icon--filter9Plus.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filterBAndW.c-Icon--before:before, .ui-accordion .c-Icon--filterBAndW.ui-accordion-header:before, .c-Icon--filterBAndW.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filterBAndW.c-Icon--after:after, .ui-accordion .c-Icon--filterBAndW.c-Icon--after.ui-accordion-header:after, .c-Icon--filterBAndW.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filterCenterFocus.c-Icon--before:before, .ui-accordion .c-Icon--filterCenterFocus.ui-accordion-header:before, .c-Icon--filterCenterFocus.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filterCenterFocus.c-Icon--after:after, .ui-accordion .c-Icon--filterCenterFocus.c-Icon--after.ui-accordion-header:after, .c-Icon--filterCenterFocus.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filterDrama.c-Icon--before:before, .ui-accordion .c-Icon--filterDrama.ui-accordion-header:before, .c-Icon--filterDrama.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filterDrama.c-Icon--after:after, .ui-accordion .c-Icon--filterDrama.c-Icon--after.ui-accordion-header:after, .c-Icon--filterDrama.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filterFrames.c-Icon--before:before, .ui-accordion .c-Icon--filterFrames.ui-accordion-header:before, .c-Icon--filterFrames.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filterFrames.c-Icon--after:after, .ui-accordion .c-Icon--filterFrames.c-Icon--after.ui-accordion-header:after, .c-Icon--filterFrames.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filterList.c-Icon--before:before, .ui-accordion .c-Icon--filterList.ui-accordion-header:before, .c-Icon--filterList.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filterList.c-Icon--after:after, .ui-accordion .c-Icon--filterList.c-Icon--after.ui-accordion-header:after, .c-Icon--filterList.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filterNone.c-Icon--before:before, .ui-accordion .c-Icon--filterNone.ui-accordion-header:before, .c-Icon--filterNone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filterNone.c-Icon--after:after, .ui-accordion .c-Icon--filterNone.c-Icon--after.ui-accordion-header:after, .c-Icon--filterNone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filterTiltShift.c-Icon--before:before, .ui-accordion .c-Icon--filterTiltShift.ui-accordion-header:before, .c-Icon--filterTiltShift.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filterTiltShift.c-Icon--after:after, .ui-accordion .c-Icon--filterTiltShift.c-Icon--after.ui-accordion-header:after, .c-Icon--filterTiltShift.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--filterVintage.c-Icon--before:before, .ui-accordion .c-Icon--filterVintage.ui-accordion-header:before, .c-Icon--filterVintage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--filterVintage.c-Icon--after:after, .ui-accordion .c-Icon--filterVintage.c-Icon--after.ui-accordion-header:after, .c-Icon--filterVintage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--findInPage.c-Icon--before:before, .ui-accordion .c-Icon--findInPage.ui-accordion-header:before, .c-Icon--findInPage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--findInPage.c-Icon--after:after, .ui-accordion .c-Icon--findInPage.c-Icon--after.ui-accordion-header:after, .c-Icon--findInPage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--findReplace.c-Icon--before:before, .ui-accordion .c-Icon--findReplace.ui-accordion-header:before, .c-Icon--findReplace.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--findReplace.c-Icon--after:after, .ui-accordion .c-Icon--findReplace.c-Icon--after.ui-accordion-header:after, .c-Icon--findReplace.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fingerprint.c-Icon--before:before, .ui-accordion .c-Icon--fingerprint.ui-accordion-header:before, .c-Icon--fingerprint.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fingerprint.c-Icon--after:after, .ui-accordion .c-Icon--fingerprint.c-Icon--after.ui-accordion-header:after, .c-Icon--fingerprint.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--firstPage.c-Icon--before:before, .ui-accordion .c-Icon--firstPage.ui-accordion-header:before, .c-Icon--firstPage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--firstPage.c-Icon--after:after, .ui-accordion .c-Icon--firstPage.c-Icon--after.ui-accordion-header:after, .c-Icon--firstPage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fitnessCenter.c-Icon--before:before, .ui-accordion .c-Icon--fitnessCenter.ui-accordion-header:before, .c-Icon--fitnessCenter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fitnessCenter.c-Icon--after:after, .ui-accordion .c-Icon--fitnessCenter.c-Icon--after.ui-accordion-header:after, .c-Icon--fitnessCenter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flare.c-Icon--before:before, .ui-accordion .c-Icon--flare.ui-accordion-header:before, .c-Icon--flare.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flare.c-Icon--after:after, .ui-accordion .c-Icon--flare.c-Icon--after.ui-accordion-header:after, .c-Icon--flare.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flashAuto.c-Icon--before:before, .ui-accordion .c-Icon--flashAuto.ui-accordion-header:before, .c-Icon--flashAuto.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flashAuto.c-Icon--after:after, .ui-accordion .c-Icon--flashAuto.c-Icon--after.ui-accordion-header:after, .c-Icon--flashAuto.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flashOff.c-Icon--before:before, .ui-accordion .c-Icon--flashOff.ui-accordion-header:before, .c-Icon--flashOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flashOff.c-Icon--after:after, .ui-accordion .c-Icon--flashOff.c-Icon--after.ui-accordion-header:after, .c-Icon--flashOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flashOn.c-Icon--before:before, .ui-accordion .c-Icon--flashOn.ui-accordion-header:before, .c-Icon--flashOn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flashOn.c-Icon--after:after, .ui-accordion .c-Icon--flashOn.c-Icon--after.ui-accordion-header:after, .c-Icon--flashOn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localAirport.c-Icon--before:before, .ui-accordion .c-Icon--localAirport.ui-accordion-header:before, .c-Icon--localAirport.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localAirport.c-Icon--after:after, .ui-accordion .c-Icon--localAirport.c-Icon--after.ui-accordion-header:after, .c-Icon--localAirport.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flightLand.c-Icon--before:before, .ui-accordion .c-Icon--flightLand.ui-accordion-header:before, .c-Icon--flightLand.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flightLand.c-Icon--after:after, .ui-accordion .c-Icon--flightLand.c-Icon--after.ui-accordion-header:after, .c-Icon--flightLand.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flightTakeoff.c-Icon--before:before, .ui-accordion .c-Icon--flightTakeoff.ui-accordion-header:before, .c-Icon--flightTakeoff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flightTakeoff.c-Icon--after:after, .ui-accordion .c-Icon--flightTakeoff.c-Icon--after.ui-accordion-header:after, .c-Icon--flightTakeoff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flip.c-Icon--before:before, .ui-accordion .c-Icon--flip.ui-accordion-header:before, .c-Icon--flip.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flip.c-Icon--after:after, .ui-accordion .c-Icon--flip.c-Icon--after.ui-accordion-header:after, .c-Icon--flip.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flipToBack.c-Icon--before:before, .ui-accordion .c-Icon--flipToBack.ui-accordion-header:before, .c-Icon--flipToBack.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flipToBack.c-Icon--after:after, .ui-accordion .c-Icon--flipToBack.c-Icon--after.ui-accordion-header:after, .c-Icon--flipToBack.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--flipToFront.c-Icon--before:before, .ui-accordion .c-Icon--flipToFront.ui-accordion-header:before, .c-Icon--flipToFront.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--flipToFront.c-Icon--after:after, .ui-accordion .c-Icon--flipToFront.c-Icon--after.ui-accordion-header:after, .c-Icon--flipToFront.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--folder.c-Icon--before:before, .ui-accordion .c-Icon--folder.ui-accordion-header:before, .c-Icon--folder.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--folder.c-Icon--after:after, .ui-accordion .c-Icon--folder.c-Icon--after.ui-accordion-header:after, .c-Icon--folder.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--folderOpen.c-Icon--before:before, .ui-accordion .c-Icon--folderOpen.ui-accordion-header:before, .c-Icon--folderOpen.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--folderOpen.c-Icon--after:after, .ui-accordion .c-Icon--folderOpen.c-Icon--after.ui-accordion-header:after, .c-Icon--folderOpen.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--folderShared.c-Icon--before:before, .ui-accordion .c-Icon--folderShared.ui-accordion-header:before, .c-Icon--folderShared.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--folderShared.c-Icon--after:after, .ui-accordion .c-Icon--folderShared.c-Icon--after.ui-accordion-header:after, .c-Icon--folderShared.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--folderSpecial.c-Icon--before:before, .ui-accordion .c-Icon--folderSpecial.ui-accordion-header:before, .c-Icon--folderSpecial.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--folderSpecial.c-Icon--after:after, .ui-accordion .c-Icon--folderSpecial.c-Icon--after.ui-accordion-header:after, .c-Icon--folderSpecial.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fontDownload.c-Icon--before:before, .ui-accordion .c-Icon--fontDownload.ui-accordion-header:before, .c-Icon--fontDownload.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fontDownload.c-Icon--after:after, .ui-accordion .c-Icon--fontDownload.c-Icon--after.ui-accordion-header:after, .c-Icon--fontDownload.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatAlignCenter.c-Icon--before:before, .ui-accordion .c-Icon--formatAlignCenter.ui-accordion-header:before, .c-Icon--formatAlignCenter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatAlignCenter.c-Icon--after:after, .ui-accordion .c-Icon--formatAlignCenter.c-Icon--after.ui-accordion-header:after, .c-Icon--formatAlignCenter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatAlignJustify.c-Icon--before:before, .ui-accordion .c-Icon--formatAlignJustify.ui-accordion-header:before, .c-Icon--formatAlignJustify.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatAlignJustify.c-Icon--after:after, .ui-accordion .c-Icon--formatAlignJustify.c-Icon--after.ui-accordion-header:after, .c-Icon--formatAlignJustify.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatAlignLeft.c-Icon--before:before, .ui-accordion .c-Icon--formatAlignLeft.ui-accordion-header:before, .c-Icon--formatAlignLeft.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatAlignLeft.c-Icon--after:after, .ui-accordion .c-Icon--formatAlignLeft.c-Icon--after.ui-accordion-header:after, .c-Icon--formatAlignLeft.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatAlignRight.c-Icon--before:before, .ui-accordion .c-Icon--formatAlignRight.ui-accordion-header:before, .c-Icon--formatAlignRight.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatAlignRight.c-Icon--after:after, .ui-accordion .c-Icon--formatAlignRight.c-Icon--after.ui-accordion-header:after, .c-Icon--formatAlignRight.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatBold.c-Icon--before:before, .ui-accordion .c-Icon--formatBold.ui-accordion-header:before, .c-Icon--formatBold.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatBold.c-Icon--after:after, .ui-accordion .c-Icon--formatBold.c-Icon--after.ui-accordion-header:after, .c-Icon--formatBold.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatClear.c-Icon--before:before, .ui-accordion .c-Icon--formatClear.ui-accordion-header:before, .c-Icon--formatClear.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatClear.c-Icon--after:after, .ui-accordion .c-Icon--formatClear.c-Icon--after.ui-accordion-header:after, .c-Icon--formatClear.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatColorFill.c-Icon--before:before, .ui-accordion .c-Icon--formatColorFill.ui-accordion-header:before, .c-Icon--formatColorFill.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatColorFill.c-Icon--after:after, .ui-accordion .c-Icon--formatColorFill.c-Icon--after.ui-accordion-header:after, .c-Icon--formatColorFill.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatColorReset.c-Icon--before:before, .ui-accordion .c-Icon--formatColorReset.ui-accordion-header:before, .c-Icon--formatColorReset.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatColorReset.c-Icon--after:after, .ui-accordion .c-Icon--formatColorReset.c-Icon--after.ui-accordion-header:after, .c-Icon--formatColorReset.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatColorText.c-Icon--before:before, .ui-accordion .c-Icon--formatColorText.ui-accordion-header:before, .c-Icon--formatColorText.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatColorText.c-Icon--after:after, .ui-accordion .c-Icon--formatColorText.c-Icon--after.ui-accordion-header:after, .c-Icon--formatColorText.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatIndentDecrease.c-Icon--before:before, .ui-accordion .c-Icon--formatIndentDecrease.ui-accordion-header:before, .c-Icon--formatIndentDecrease.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatIndentDecrease.c-Icon--after:after, .ui-accordion .c-Icon--formatIndentDecrease.c-Icon--after.ui-accordion-header:after, .c-Icon--formatIndentDecrease.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatIndentIncrease.c-Icon--before:before, .ui-accordion .c-Icon--formatIndentIncrease.ui-accordion-header:before, .c-Icon--formatIndentIncrease.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatIndentIncrease.c-Icon--after:after, .ui-accordion .c-Icon--formatIndentIncrease.c-Icon--after.ui-accordion-header:after, .c-Icon--formatIndentIncrease.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatItalic.c-Icon--before:before, .ui-accordion .c-Icon--formatItalic.ui-accordion-header:before, .c-Icon--formatItalic.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatItalic.c-Icon--after:after, .ui-accordion .c-Icon--formatItalic.c-Icon--after.ui-accordion-header:after, .c-Icon--formatItalic.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatLineSpacing.c-Icon--before:before, .ui-accordion .c-Icon--formatLineSpacing.ui-accordion-header:before, .c-Icon--formatLineSpacing.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatLineSpacing.c-Icon--after:after, .ui-accordion .c-Icon--formatLineSpacing.c-Icon--after.ui-accordion-header:after, .c-Icon--formatLineSpacing.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatListBulleted.c-Icon--before:before, .ui-accordion .c-Icon--formatListBulleted.ui-accordion-header:before, .c-Icon--formatListBulleted.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatListBulleted.c-Icon--after:after, .ui-accordion .c-Icon--formatListBulleted.c-Icon--after.ui-accordion-header:after, .c-Icon--formatListBulleted.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatListNumbered.c-Icon--before:before, .ui-accordion .c-Icon--formatListNumbered.ui-accordion-header:before, .c-Icon--formatListNumbered.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatListNumbered.c-Icon--after:after, .ui-accordion .c-Icon--formatListNumbered.c-Icon--after.ui-accordion-header:after, .c-Icon--formatListNumbered.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatListNumberedRtl.c-Icon--before:before, .ui-accordion .c-Icon--formatListNumberedRtl.ui-accordion-header:before, .c-Icon--formatListNumberedRtl.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatListNumberedRtl.c-Icon--after:after, .ui-accordion .c-Icon--formatListNumberedRtl.c-Icon--after.ui-accordion-header:after, .c-Icon--formatListNumberedRtl.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatPaint.c-Icon--before:before, .ui-accordion .c-Icon--formatPaint.ui-accordion-header:before, .c-Icon--formatPaint.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatPaint.c-Icon--after:after, .ui-accordion .c-Icon--formatPaint.c-Icon--after.ui-accordion-header:after, .c-Icon--formatPaint.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatQuote.c-Icon--before:before, .ui-accordion .c-Icon--formatQuote.ui-accordion-header:before, .c-Icon--formatQuote.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatQuote.c-Icon--after:after, .ui-accordion .c-Icon--formatQuote.c-Icon--after.ui-accordion-header:after, .c-Icon--formatQuote.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatShapes.c-Icon--before:before, .ui-accordion .c-Icon--formatShapes.ui-accordion-header:before, .c-Icon--formatShapes.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatShapes.c-Icon--after:after, .ui-accordion .c-Icon--formatShapes.c-Icon--after.ui-accordion-header:after, .c-Icon--formatShapes.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatSize.c-Icon--before:before, .ui-accordion .c-Icon--formatSize.ui-accordion-header:before, .c-Icon--formatSize.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatSize.c-Icon--after:after, .ui-accordion .c-Icon--formatSize.c-Icon--after.ui-accordion-header:after, .c-Icon--formatSize.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatStrikethrough.c-Icon--before:before, .ui-accordion .c-Icon--formatStrikethrough.ui-accordion-header:before, .c-Icon--formatStrikethrough.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatStrikethrough.c-Icon--after:after, .ui-accordion .c-Icon--formatStrikethrough.c-Icon--after.ui-accordion-header:after, .c-Icon--formatStrikethrough.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatTextdirectionLToR.c-Icon--before:before, .ui-accordion .c-Icon--formatTextdirectionLToR.ui-accordion-header:before, .c-Icon--formatTextdirectionLToR.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatTextdirectionLToR.c-Icon--after:after, .ui-accordion .c-Icon--formatTextdirectionLToR.c-Icon--after.ui-accordion-header:after, .c-Icon--formatTextdirectionLToR.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatTextdirectionRToL.c-Icon--before:before, .ui-accordion .c-Icon--formatTextdirectionRToL.ui-accordion-header:before, .c-Icon--formatTextdirectionRToL.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatTextdirectionRToL.c-Icon--after:after, .ui-accordion .c-Icon--formatTextdirectionRToL.c-Icon--after.ui-accordion-header:after, .c-Icon--formatTextdirectionRToL.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--formatUnderlined.c-Icon--before:before, .ui-accordion .c-Icon--formatUnderlined.ui-accordion-header:before, .c-Icon--formatUnderlined.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--formatUnderlined.c-Icon--after:after, .ui-accordion .c-Icon--formatUnderlined.c-Icon--after.ui-accordion-header:after, .c-Icon--formatUnderlined.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--forward.c-Icon--before:before, .ui-accordion .c-Icon--forward.ui-accordion-header:before, .c-Icon--forward.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--forward.c-Icon--after:after, .ui-accordion .c-Icon--forward.c-Icon--after.ui-accordion-header:after, .c-Icon--forward.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--forward10.c-Icon--before:before, .ui-accordion .c-Icon--forward10.ui-accordion-header:before, .c-Icon--forward10.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--forward10.c-Icon--after:after, .ui-accordion .c-Icon--forward10.c-Icon--after.ui-accordion-header:after, .c-Icon--forward10.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--forward30.c-Icon--before:before, .ui-accordion .c-Icon--forward30.ui-accordion-header:before, .c-Icon--forward30.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--forward30.c-Icon--after:after, .ui-accordion .c-Icon--forward30.c-Icon--after.ui-accordion-header:after, .c-Icon--forward30.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--forward5.c-Icon--before:before, .ui-accordion .c-Icon--forward5.ui-accordion-header:before, .c-Icon--forward5.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--forward5.c-Icon--after:after, .ui-accordion .c-Icon--forward5.c-Icon--after.ui-accordion-header:after, .c-Icon--forward5.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--freeBreakfast.c-Icon--before:before, .ui-accordion .c-Icon--freeBreakfast.ui-accordion-header:before, .c-Icon--freeBreakfast.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--freeBreakfast.c-Icon--after:after, .ui-accordion .c-Icon--freeBreakfast.c-Icon--after.ui-accordion-header:after, .c-Icon--freeBreakfast.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fullscreen.c-Icon--before:before, .ui-accordion .c-Icon--fullscreen.ui-accordion-header:before, .c-Icon--fullscreen.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fullscreen.c-Icon--after:after, .ui-accordion .c-Icon--fullscreen.c-Icon--after.ui-accordion-header:after, .c-Icon--fullscreen.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--fullscreenExit.c-Icon--before:before, .ui-accordion .c-Icon--fullscreenExit.ui-accordion-header:before, .c-Icon--fullscreenExit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--fullscreenExit.c-Icon--after:after, .ui-accordion .c-Icon--fullscreenExit.c-Icon--after.ui-accordion-header:after, .c-Icon--fullscreenExit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--functions.c-Icon--before:before, .ui-accordion .c-Icon--functions.ui-accordion-header:before, .c-Icon--functions.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--functions.c-Icon--after:after, .ui-accordion .c-Icon--functions.c-Icon--after.ui-accordion-header:after, .c-Icon--functions.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--gTranslate.c-Icon--before:before, .ui-accordion .c-Icon--gTranslate.ui-accordion-header:before, .c-Icon--gTranslate.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--gTranslate.c-Icon--after:after, .ui-accordion .c-Icon--gTranslate.c-Icon--after.ui-accordion-header:after, .c-Icon--gTranslate.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--games.c-Icon--before:before, .ui-accordion .c-Icon--games.ui-accordion-header:before, .c-Icon--games.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--games.c-Icon--after:after, .ui-accordion .c-Icon--games.c-Icon--after.ui-accordion-header:after, .c-Icon--games.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--gavel.c-Icon--before:before, .ui-accordion .c-Icon--gavel.ui-accordion-header:before, .c-Icon--gavel.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--gavel.c-Icon--after:after, .ui-accordion .c-Icon--gavel.c-Icon--after.ui-accordion-header:after, .c-Icon--gavel.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--gesture.c-Icon--before:before, .ui-accordion .c-Icon--gesture.ui-accordion-header:before, .c-Icon--gesture.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--gesture.c-Icon--after:after, .ui-accordion .c-Icon--gesture.c-Icon--after.ui-accordion-header:after, .c-Icon--gesture.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--getApp.c-Icon--before:before, .ui-accordion .c-Icon--getApp.ui-accordion-header:before, .c-Icon--getApp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--getApp.c-Icon--after:after, .ui-accordion .c-Icon--getApp.c-Icon--after.ui-accordion-header:after, .c-Icon--getApp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--gif.c-Icon--before:before, .ui-accordion .c-Icon--gif.ui-accordion-header:before, .c-Icon--gif.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--gif.c-Icon--after:after, .ui-accordion .c-Icon--gif.c-Icon--after.ui-accordion-header:after, .c-Icon--gif.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--goat.c-Icon--before:before, .ui-accordion .c-Icon--goat.ui-accordion-header:before, .c-Icon--goat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--goat.c-Icon--after:after, .ui-accordion .c-Icon--goat.c-Icon--after.ui-accordion-header:after, .c-Icon--goat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--golfCourse.c-Icon--before:before, .ui-accordion .c-Icon--golfCourse.ui-accordion-header:before, .c-Icon--golfCourse.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--golfCourse.c-Icon--after:after, .ui-accordion .c-Icon--golfCourse.c-Icon--after.ui-accordion-header:after, .c-Icon--golfCourse.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--gradient.c-Icon--before:before, .ui-accordion .c-Icon--gradient.ui-accordion-header:before, .c-Icon--gradient.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--gradient.c-Icon--after:after, .ui-accordion .c-Icon--gradient.c-Icon--after.ui-accordion-header:after, .c-Icon--gradient.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--grain.c-Icon--before:before, .ui-accordion .c-Icon--grain.ui-accordion-header:before, .c-Icon--grain.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--grain.c-Icon--after:after, .ui-accordion .c-Icon--grain.c-Icon--after.ui-accordion-header:after, .c-Icon--grain.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--graphicEq.c-Icon--before:before, .ui-accordion .c-Icon--graphicEq.ui-accordion-header:before, .c-Icon--graphicEq.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--graphicEq.c-Icon--after:after, .ui-accordion .c-Icon--graphicEq.c-Icon--after.ui-accordion-header:after, .c-Icon--graphicEq.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--gridOff.c-Icon--before:before, .ui-accordion .c-Icon--gridOff.ui-accordion-header:before, .c-Icon--gridOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--gridOff.c-Icon--after:after, .ui-accordion .c-Icon--gridOff.c-Icon--after.ui-accordion-header:after, .c-Icon--gridOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--gridOn.c-Icon--before:before, .ui-accordion .c-Icon--gridOn.ui-accordion-header:before, .c-Icon--gridOn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--gridOn.c-Icon--after:after, .ui-accordion .c-Icon--gridOn.c-Icon--after.ui-accordion-header:after, .c-Icon--gridOn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--groupAdd.c-Icon--before:before, .ui-accordion .c-Icon--groupAdd.ui-accordion-header:before, .c-Icon--groupAdd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--groupAdd.c-Icon--after:after, .ui-accordion .c-Icon--groupAdd.c-Icon--after.ui-accordion-header:after, .c-Icon--groupAdd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--groupWork.c-Icon--before:before, .ui-accordion .c-Icon--groupWork.ui-accordion-header:before, .c-Icon--groupWork.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--groupWork.c-Icon--after:after, .ui-accordion .c-Icon--groupWork.c-Icon--after.ui-accordion-header:after, .c-Icon--groupWork.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hd.c-Icon--before:before, .ui-accordion .c-Icon--hd.ui-accordion-header:before, .c-Icon--hd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hd.c-Icon--after:after, .ui-accordion .c-Icon--hd.c-Icon--after.ui-accordion-header:after, .c-Icon--hd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hdrOff.c-Icon--before:before, .ui-accordion .c-Icon--hdrOff.ui-accordion-header:before, .c-Icon--hdrOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hdrOff.c-Icon--after:after, .ui-accordion .c-Icon--hdrOff.c-Icon--after.ui-accordion-header:after, .c-Icon--hdrOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hdrOn.c-Icon--before:before, .ui-accordion .c-Icon--hdrOn.ui-accordion-header:before, .c-Icon--hdrOn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hdrOn.c-Icon--after:after, .ui-accordion .c-Icon--hdrOn.c-Icon--after.ui-accordion-header:after, .c-Icon--hdrOn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hdrStrong.c-Icon--before:before, .ui-accordion .c-Icon--hdrStrong.ui-accordion-header:before, .c-Icon--hdrStrong.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hdrStrong.c-Icon--after:after, .ui-accordion .c-Icon--hdrStrong.c-Icon--after.ui-accordion-header:after, .c-Icon--hdrStrong.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hdrWeak.c-Icon--before:before, .ui-accordion .c-Icon--hdrWeak.ui-accordion-header:before, .c-Icon--hdrWeak.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hdrWeak.c-Icon--after:after, .ui-accordion .c-Icon--hdrWeak.c-Icon--after.ui-accordion-header:after, .c-Icon--hdrWeak.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--headset.c-Icon--before:before, .ui-accordion .c-Icon--headset.ui-accordion-header:before, .c-Icon--headset.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--headset.c-Icon--after:after, .ui-accordion .c-Icon--headset.c-Icon--after.ui-accordion-header:after, .c-Icon--headset.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--headsetMic.c-Icon--before:before, .ui-accordion .c-Icon--headsetMic.ui-accordion-header:before, .c-Icon--headsetMic.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--headsetMic.c-Icon--after:after, .ui-accordion .c-Icon--headsetMic.c-Icon--after.ui-accordion-header:after, .c-Icon--headsetMic.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--healing.c-Icon--before:before, .ui-accordion .c-Icon--healing.ui-accordion-header:before, .c-Icon--healing.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--healing.c-Icon--after:after, .ui-accordion .c-Icon--healing.c-Icon--after.ui-accordion-header:after, .c-Icon--healing.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hearing.c-Icon--before:before, .ui-accordion .c-Icon--hearing.ui-accordion-header:before, .c-Icon--hearing.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hearing.c-Icon--after:after, .ui-accordion .c-Icon--hearing.c-Icon--after.ui-accordion-header:after, .c-Icon--hearing.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--help.c-Icon--before:before, .ui-accordion .c-Icon--help.ui-accordion-header:before, .c-Icon--help.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--help.c-Icon--after:after, .ui-accordion .c-Icon--help.c-Icon--after.ui-accordion-header:after, .c-Icon--help.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--helpOutline.c-Icon--before:before, .ui-accordion .c-Icon--helpOutline.ui-accordion-header:before, .c-Icon--helpOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--helpOutline.c-Icon--after:after, .ui-accordion .c-Icon--helpOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--helpOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--highQuality.c-Icon--before:before, .ui-accordion .c-Icon--highQuality.ui-accordion-header:before, .c-Icon--highQuality.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--highQuality.c-Icon--after:after, .ui-accordion .c-Icon--highQuality.c-Icon--after.ui-accordion-header:after, .c-Icon--highQuality.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--highlight.c-Icon--before:before, .ui-accordion .c-Icon--highlight.ui-accordion-header:before, .c-Icon--highlight.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--highlight.c-Icon--after:after, .ui-accordion .c-Icon--highlight.c-Icon--after.ui-accordion-header:after, .c-Icon--highlight.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--highlightOff.c-Icon--before:before, .ui-accordion .c-Icon--highlightOff.ui-accordion-header:before, .c-Icon--highlightOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--highlightOff.c-Icon--after:after, .ui-accordion .c-Icon--highlightOff.c-Icon--after.ui-accordion-header:after, .c-Icon--highlightOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--home.c-Icon--before:before, .ui-accordion .c-Icon--home.ui-accordion-header:before, .c-Icon--home.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--home.c-Icon--after:after, .ui-accordion .c-Icon--home.c-Icon--after.ui-accordion-header:after, .c-Icon--home.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--horizontalSplit.c-Icon--before:before, .ui-accordion .c-Icon--horizontalSplit.ui-accordion-header:before, .c-Icon--horizontalSplit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--horizontalSplit.c-Icon--after:after, .ui-accordion .c-Icon--horizontalSplit.c-Icon--after.ui-accordion-header:after, .c-Icon--horizontalSplit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hotTub.c-Icon--before:before, .ui-accordion .c-Icon--hotTub.ui-accordion-header:before, .c-Icon--hotTub.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hotTub.c-Icon--after:after, .ui-accordion .c-Icon--hotTub.c-Icon--after.ui-accordion-header:after, .c-Icon--hotTub.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hourglassEmpty.c-Icon--before:before, .ui-accordion .c-Icon--hourglassEmpty.ui-accordion-header:before, .c-Icon--hourglassEmpty.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hourglassEmpty.c-Icon--after:after, .ui-accordion .c-Icon--hourglassEmpty.c-Icon--after.ui-accordion-header:after, .c-Icon--hourglassEmpty.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--hourglassFull.c-Icon--before:before, .ui-accordion .c-Icon--hourglassFull.ui-accordion-header:before, .c-Icon--hourglassFull.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--hourglassFull.c-Icon--after:after, .ui-accordion .c-Icon--hourglassFull.c-Icon--after.ui-accordion-header:after, .c-Icon--hourglassFull.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--howToReg.c-Icon--before:before, .ui-accordion .c-Icon--howToReg.ui-accordion-header:before, .c-Icon--howToReg.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--howToReg.c-Icon--after:after, .ui-accordion .c-Icon--howToReg.c-Icon--after.ui-accordion-header:after, .c-Icon--howToReg.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--howToVote.c-Icon--before:before, .ui-accordion .c-Icon--howToVote.ui-accordion-header:before, .c-Icon--howToVote.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--howToVote.c-Icon--after:after, .ui-accordion .c-Icon--howToVote.c-Icon--after.ui-accordion-header:after, .c-Icon--howToVote.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--http.c-Icon--before:before, .ui-accordion .c-Icon--http.ui-accordion-header:before, .c-Icon--http.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--http.c-Icon--after:after, .ui-accordion .c-Icon--http.c-Icon--after.ui-accordion-header:after, .c-Icon--http.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--imageAspectRatio.c-Icon--before:before, .ui-accordion .c-Icon--imageAspectRatio.ui-accordion-header:before, .c-Icon--imageAspectRatio.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--imageAspectRatio.c-Icon--after:after, .ui-accordion .c-Icon--imageAspectRatio.c-Icon--after.ui-accordion-header:after, .c-Icon--imageAspectRatio.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--imageSearch.c-Icon--before:before, .ui-accordion .c-Icon--imageSearch.ui-accordion-header:before, .c-Icon--imageSearch.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--imageSearch.c-Icon--after:after, .ui-accordion .c-Icon--imageSearch.c-Icon--after.ui-accordion-header:after, .c-Icon--imageSearch.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--importContacts.c-Icon--before:before, .ui-accordion .c-Icon--importContacts.ui-accordion-header:before, .c-Icon--importContacts.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--importContacts.c-Icon--after:after, .ui-accordion .c-Icon--importContacts.c-Icon--after.ui-accordion-header:after, .c-Icon--importContacts.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--importExport.c-Icon--before:before, .ui-accordion .c-Icon--importExport.ui-accordion-header:before, .c-Icon--importExport.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--importExport.c-Icon--after:after, .ui-accordion .c-Icon--importExport.c-Icon--after.ui-accordion-header:after, .c-Icon--importExport.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--importantDevices.c-Icon--before:before, .ui-accordion .c-Icon--importantDevices.ui-accordion-header:before, .c-Icon--importantDevices.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--importantDevices.c-Icon--after:after, .ui-accordion .c-Icon--importantDevices.c-Icon--after.ui-accordion-header:after, .c-Icon--importantDevices.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--inbox.c-Icon--before:before, .ui-accordion .c-Icon--inbox.ui-accordion-header:before, .c-Icon--inbox.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--inbox.c-Icon--after:after, .ui-accordion .c-Icon--inbox.c-Icon--after.ui-accordion-header:after, .c-Icon--inbox.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--indeterminateCheckBox.c-Icon--before:before, .ui-accordion .c-Icon--indeterminateCheckBox.ui-accordion-header:before, .c-Icon--indeterminateCheckBox.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--indeterminateCheckBox.c-Icon--after:after, .ui-accordion .c-Icon--indeterminateCheckBox.c-Icon--after.ui-accordion-header:after, .c-Icon--indeterminateCheckBox.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--info.c-Icon--before:before, .ui-accordion .c-Icon--info.ui-accordion-header:before, .c-Icon--info.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--info.c-Icon--after:after, .ui-accordion .c-Icon--info.c-Icon--after.ui-accordion-header:after, .c-Icon--info.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--infoOutline.c-Icon--before:before, .ui-accordion .c-Icon--infoOutline.ui-accordion-header:before, .c-Icon--infoOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--infoOutline.c-Icon--after:after, .ui-accordion .c-Icon--infoOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--infoOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--input.c-Icon--before:before, .ui-accordion .c-Icon--input.ui-accordion-header:before, .c-Icon--input.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--input.c-Icon--after:after, .ui-accordion .c-Icon--input.c-Icon--after.ui-accordion-header:after, .c-Icon--input.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--insertChartOutlined.c-Icon--before:before, .ui-accordion .c-Icon--insertChartOutlined.ui-accordion-header:before, .c-Icon--insertChartOutlined.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--insertChartOutlined.c-Icon--after:after, .ui-accordion .c-Icon--insertChartOutlined.c-Icon--after.ui-accordion-header:after, .c-Icon--insertChartOutlined.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--insertComment.c-Icon--before:before, .ui-accordion .c-Icon--insertComment.ui-accordion-header:before, .c-Icon--insertComment.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--insertComment.c-Icon--after:after, .ui-accordion .c-Icon--insertComment.c-Icon--after.ui-accordion-header:after, .c-Icon--insertComment.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--insertDriveFile.c-Icon--before:before, .ui-accordion .c-Icon--insertDriveFile.ui-accordion-header:before, .c-Icon--insertDriveFile.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--insertDriveFile.c-Icon--after:after, .ui-accordion .c-Icon--insertDriveFile.c-Icon--after.ui-accordion-header:after, .c-Icon--insertDriveFile.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--insertInvitation.c-Icon--before:before, .ui-accordion .c-Icon--insertInvitation.ui-accordion-header:before, .c-Icon--insertInvitation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--insertInvitation.c-Icon--after:after, .ui-accordion .c-Icon--insertInvitation.c-Icon--after.ui-accordion-header:after, .c-Icon--insertInvitation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--instagram.c-Icon--before:before, .ui-accordion .c-Icon--instagram.ui-accordion-header:before, .c-Icon--instagram.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--instagram.c-Icon--after:after, .ui-accordion .c-Icon--instagram.c-Icon--after.ui-accordion-header:after, .c-Icon--instagram.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--invertColors.c-Icon--before:before, .ui-accordion .c-Icon--invertColors.ui-accordion-header:before, .c-Icon--invertColors.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--invertColors.c-Icon--after:after, .ui-accordion .c-Icon--invertColors.c-Icon--after.ui-accordion-header:after, .c-Icon--invertColors.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--invertColorsOff.c-Icon--before:before, .ui-accordion .c-Icon--invertColorsOff.ui-accordion-header:before, .c-Icon--invertColorsOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--invertColorsOff.c-Icon--after:after, .ui-accordion .c-Icon--invertColorsOff.c-Icon--after.ui-accordion-header:after, .c-Icon--invertColorsOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--iso.c-Icon--before:before, .ui-accordion .c-Icon--iso.ui-accordion-header:before, .c-Icon--iso.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--iso.c-Icon--after:after, .ui-accordion .c-Icon--iso.c-Icon--after.ui-accordion-header:after, .c-Icon--iso.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboard.c-Icon--before:before, .ui-accordion .c-Icon--keyboard.ui-accordion-header:before, .c-Icon--keyboard.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboard.c-Icon--after:after, .ui-accordion .c-Icon--keyboard.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboard.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardArrowDown.c-Icon--before:before, .ui-accordion .c-Icon--keyboardArrowDown.ui-accordion-header:before, .c-Icon--before.goog-te-gadget-simple:before, .ui-accordion .goog-te-gadget-simple.ui-accordion-header:before, .c-Icon.c-Icon--keyboardArrowDown.c-Icon--after:after, .ui-accordion .c-Icon--keyboardArrowDown.c-Icon--after.ui-accordion-header:after, .goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardArrowLeft.c-Icon--before:before, .ui-accordion .c-Icon--keyboardArrowLeft.ui-accordion-header:before, .c-Icon--keyboardArrowLeft.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardArrowLeft.c-Icon--after:after, .ui-accordion .c-Icon--keyboardArrowLeft.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardArrowLeft.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardArrowRight.c-Icon--before:before, .ui-accordion .c-Icon--keyboardArrowRight.ui-accordion-header:before, .c-Icon--keyboardArrowRight.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardArrowRight.c-Icon--after:after, .ui-accordion .c-Icon--keyboardArrowRight.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardArrowRight.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardArrowUp.c-Icon--before:before, .ui-accordion .c-Icon--keyboardArrowUp.ui-accordion-header:before, .c-Icon--keyboardArrowUp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardArrowUp.c-Icon--after:after, .ui-accordion .c-Icon--keyboardArrowUp.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardArrowUp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardBackspace.c-Icon--before:before, .ui-accordion .c-Icon--keyboardBackspace.ui-accordion-header:before, .c-Icon--keyboardBackspace.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardBackspace.c-Icon--after:after, .ui-accordion .c-Icon--keyboardBackspace.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardBackspace.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardCapslock.c-Icon--before:before, .ui-accordion .c-Icon--keyboardCapslock.ui-accordion-header:before, .c-Icon--keyboardCapslock.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardCapslock.c-Icon--after:after, .ui-accordion .c-Icon--keyboardCapslock.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardCapslock.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardHide.c-Icon--before:before, .ui-accordion .c-Icon--keyboardHide.ui-accordion-header:before, .c-Icon--keyboardHide.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardHide.c-Icon--after:after, .ui-accordion .c-Icon--keyboardHide.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardHide.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardReturn.c-Icon--before:before, .ui-accordion .c-Icon--keyboardReturn.ui-accordion-header:before, .c-Icon--keyboardReturn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardReturn.c-Icon--after:after, .ui-accordion .c-Icon--keyboardReturn.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardReturn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardTab.c-Icon--before:before, .ui-accordion .c-Icon--keyboardTab.ui-accordion-header:before, .c-Icon--keyboardTab.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardTab.c-Icon--after:after, .ui-accordion .c-Icon--keyboardTab.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardTab.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--keyboardVoice.c-Icon--before:before, .ui-accordion .c-Icon--keyboardVoice.ui-accordion-header:before, .c-Icon--keyboardVoice.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--keyboardVoice.c-Icon--after:after, .ui-accordion .c-Icon--keyboardVoice.c-Icon--after.ui-accordion-header:after, .c-Icon--keyboardVoice.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--kitchen.c-Icon--before:before, .ui-accordion .c-Icon--kitchen.ui-accordion-header:before, .c-Icon--kitchen.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--kitchen.c-Icon--after:after, .ui-accordion .c-Icon--kitchen.c-Icon--after.ui-accordion-header:after, .c-Icon--kitchen.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--label.c-Icon--before:before, .ui-accordion .c-Icon--label.ui-accordion-header:before, .c-Icon--label.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--label.c-Icon--after:after, .ui-accordion .c-Icon--label.c-Icon--after.ui-accordion-header:after, .c-Icon--label.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--labelImportant.c-Icon--before:before, .ui-accordion .c-Icon--labelImportant.ui-accordion-header:before, .c-Icon--labelImportant.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--labelImportant.c-Icon--after:after, .ui-accordion .c-Icon--labelImportant.c-Icon--after.ui-accordion-header:after, .c-Icon--labelImportant.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--labelOff.c-Icon--before:before, .ui-accordion .c-Icon--labelOff.ui-accordion-header:before, .c-Icon--labelOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--labelOff.c-Icon--after:after, .ui-accordion .c-Icon--labelOff.c-Icon--after.ui-accordion-header:after, .c-Icon--labelOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--labelOutline.c-Icon--before:before, .ui-accordion .c-Icon--labelOutline.ui-accordion-header:before, .c-Icon--labelOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--labelOutline.c-Icon--after:after, .ui-accordion .c-Icon--labelOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--labelOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--language.c-Icon--before:before, .ui-accordion .c-Icon--language.ui-accordion-header:before, .c-Icon--language.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--language.c-Icon--after:after, .ui-accordion .c-Icon--language.c-Icon--after.ui-accordion-header:after, .c-Icon--language.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--laptop.c-Icon--before:before, .ui-accordion .c-Icon--laptop.ui-accordion-header:before, .c-Icon--laptop.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--laptop.c-Icon--after:after, .ui-accordion .c-Icon--laptop.c-Icon--after.ui-accordion-header:after, .c-Icon--laptop.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--laptopChromebook.c-Icon--before:before, .ui-accordion .c-Icon--laptopChromebook.ui-accordion-header:before, .c-Icon--laptopChromebook.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--laptopChromebook.c-Icon--after:after, .ui-accordion .c-Icon--laptopChromebook.c-Icon--after.ui-accordion-header:after, .c-Icon--laptopChromebook.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--laptopMac.c-Icon--before:before, .ui-accordion .c-Icon--laptopMac.ui-accordion-header:before, .c-Icon--laptopMac.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--laptopMac.c-Icon--after:after, .ui-accordion .c-Icon--laptopMac.c-Icon--after.ui-accordion-header:after, .c-Icon--laptopMac.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--laptopWindows.c-Icon--before:before, .ui-accordion .c-Icon--laptopWindows.ui-accordion-header:before, .c-Icon--laptopWindows.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--laptopWindows.c-Icon--after:after, .ui-accordion .c-Icon--laptopWindows.c-Icon--after.ui-accordion-header:after, .c-Icon--laptopWindows.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lastPage.c-Icon--before:before, .ui-accordion .c-Icon--lastPage.ui-accordion-header:before, .c-Icon--lastPage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lastPage.c-Icon--after:after, .ui-accordion .c-Icon--lastPage.c-Icon--after.ui-accordion-header:after, .c-Icon--lastPage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--layers.c-Icon--before:before, .ui-accordion .c-Icon--layers.ui-accordion-header:before, .c-Icon--layers.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--layers.c-Icon--after:after, .ui-accordion .c-Icon--layers.c-Icon--after.ui-accordion-header:after, .c-Icon--layers.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--layersClear.c-Icon--before:before, .ui-accordion .c-Icon--layersClear.ui-accordion-header:before, .c-Icon--layersClear.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--layersClear.c-Icon--after:after, .ui-accordion .c-Icon--layersClear.c-Icon--after.ui-accordion-header:after, .c-Icon--layersClear.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--leakAdd.c-Icon--before:before, .ui-accordion .c-Icon--leakAdd.ui-accordion-header:before, .c-Icon--leakAdd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--leakAdd.c-Icon--after:after, .ui-accordion .c-Icon--leakAdd.c-Icon--after.ui-accordion-header:after, .c-Icon--leakAdd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--leakRemove.c-Icon--before:before, .ui-accordion .c-Icon--leakRemove.ui-accordion-header:before, .c-Icon--leakRemove.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--leakRemove.c-Icon--after:after, .ui-accordion .c-Icon--leakRemove.c-Icon--after.ui-accordion-header:after, .c-Icon--leakRemove.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lens.c-Icon--before:before, .ui-accordion .c-Icon--lens.ui-accordion-header:before, .c-Icon--lens.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lens.c-Icon--after:after, .ui-accordion .c-Icon--lens.c-Icon--after.ui-accordion-header:after, .c-Icon--lens.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--libraryBooks.c-Icon--before:before, .ui-accordion .c-Icon--libraryBooks.ui-accordion-header:before, .c-Icon--libraryBooks.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--libraryBooks.c-Icon--after:after, .ui-accordion .c-Icon--libraryBooks.c-Icon--after.ui-accordion-header:after, .c-Icon--libraryBooks.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--libraryMusic.c-Icon--before:before, .ui-accordion .c-Icon--libraryMusic.ui-accordion-header:before, .c-Icon--libraryMusic.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--libraryMusic.c-Icon--after:after, .ui-accordion .c-Icon--libraryMusic.c-Icon--after.ui-accordion-header:after, .c-Icon--libraryMusic.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lightbulbOutline.c-Icon--before:before, .ui-accordion .c-Icon--lightbulbOutline.ui-accordion-header:before, .c-Icon--lightbulbOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lightbulbOutline.c-Icon--after:after, .ui-accordion .c-Icon--lightbulbOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--lightbulbOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lineStyle.c-Icon--before:before, .ui-accordion .c-Icon--lineStyle.ui-accordion-header:before, .c-Icon--lineStyle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lineStyle.c-Icon--after:after, .ui-accordion .c-Icon--lineStyle.c-Icon--after.ui-accordion-header:after, .c-Icon--lineStyle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lineWeight.c-Icon--before:before, .ui-accordion .c-Icon--lineWeight.ui-accordion-header:before, .c-Icon--lineWeight.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lineWeight.c-Icon--after:after, .ui-accordion .c-Icon--lineWeight.c-Icon--after.ui-accordion-header:after, .c-Icon--lineWeight.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--linearScale.c-Icon--before:before, .ui-accordion .c-Icon--linearScale.ui-accordion-header:before, .c-Icon--linearScale.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--linearScale.c-Icon--after:after, .ui-accordion .c-Icon--linearScale.c-Icon--after.ui-accordion-header:after, .c-Icon--linearScale.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--link.c-Icon--before:before, .ui-accordion .c-Icon--link.ui-accordion-header:before, .c-Icon--link.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--link.c-Icon--after:after, .ui-accordion .c-Icon--link.c-Icon--after.ui-accordion-header:after, .c-Icon--link.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--linkOff.c-Icon--before:before, .ui-accordion .c-Icon--linkOff.ui-accordion-header:before, .c-Icon--linkOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--linkOff.c-Icon--after:after, .ui-accordion .c-Icon--linkOff.c-Icon--after.ui-accordion-header:after, .c-Icon--linkOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--linkedCamera.c-Icon--before:before, .ui-accordion .c-Icon--linkedCamera.ui-accordion-header:before, .c-Icon--linkedCamera.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--linkedCamera.c-Icon--after:after, .ui-accordion .c-Icon--linkedCamera.c-Icon--after.ui-accordion-header:after, .c-Icon--linkedCamera.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--linkedin.c-Icon--before:before, .ui-accordion .c-Icon--linkedin.ui-accordion-header:before, .c-Icon--linkedin.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--linkedin.c-Icon--after:after, .ui-accordion .c-Icon--linkedin.c-Icon--after.ui-accordion-header:after, .c-Icon--linkedin.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--list.c-Icon--before:before, .ui-accordion .c-Icon--list.ui-accordion-header:before, .c-Icon--list.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--list.c-Icon--after:after, .ui-accordion .c-Icon--list.c-Icon--after.ui-accordion-header:after, .c-Icon--list.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--listAlt.c-Icon--before:before, .ui-accordion .c-Icon--listAlt.ui-accordion-header:before, .c-Icon--listAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--listAlt.c-Icon--after:after, .ui-accordion .c-Icon--listAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--listAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--liveHelp.c-Icon--before:before, .ui-accordion .c-Icon--liveHelp.ui-accordion-header:before, .c-Icon--liveHelp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--liveHelp.c-Icon--after:after, .ui-accordion .c-Icon--liveHelp.c-Icon--after.ui-accordion-header:after, .c-Icon--liveHelp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--liveTv.c-Icon--before:before, .ui-accordion .c-Icon--liveTv.ui-accordion-header:before, .c-Icon--liveTv.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--liveTv.c-Icon--after:after, .ui-accordion .c-Icon--liveTv.c-Icon--after.ui-accordion-header:after, .c-Icon--liveTv.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localAtm.c-Icon--before:before, .ui-accordion .c-Icon--localAtm.ui-accordion-header:before, .c-Icon--localAtm.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localAtm.c-Icon--after:after, .ui-accordion .c-Icon--localAtm.c-Icon--after.ui-accordion-header:after, .c-Icon--localAtm.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localBar.c-Icon--before:before, .ui-accordion .c-Icon--localBar.ui-accordion-header:before, .c-Icon--localBar.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localBar.c-Icon--after:after, .ui-accordion .c-Icon--localBar.c-Icon--after.ui-accordion-header:after, .c-Icon--localBar.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localCafe.c-Icon--before:before, .ui-accordion .c-Icon--localCafe.ui-accordion-header:before, .c-Icon--localCafe.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localCafe.c-Icon--after:after, .ui-accordion .c-Icon--localCafe.c-Icon--after.ui-accordion-header:after, .c-Icon--localCafe.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localCarWash.c-Icon--before:before, .ui-accordion .c-Icon--localCarWash.ui-accordion-header:before, .c-Icon--localCarWash.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localCarWash.c-Icon--after:after, .ui-accordion .c-Icon--localCarWash.c-Icon--after.ui-accordion-header:after, .c-Icon--localCarWash.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localConvenienceStore.c-Icon--before:before, .ui-accordion .c-Icon--localConvenienceStore.ui-accordion-header:before, .c-Icon--localConvenienceStore.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localConvenienceStore.c-Icon--after:after, .ui-accordion .c-Icon--localConvenienceStore.c-Icon--after.ui-accordion-header:after, .c-Icon--localConvenienceStore.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localDrink.c-Icon--before:before, .ui-accordion .c-Icon--localDrink.ui-accordion-header:before, .c-Icon--localDrink.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localDrink.c-Icon--after:after, .ui-accordion .c-Icon--localDrink.c-Icon--after.ui-accordion-header:after, .c-Icon--localDrink.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localFlorist.c-Icon--before:before, .ui-accordion .c-Icon--localFlorist.ui-accordion-header:before, .c-Icon--localFlorist.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localFlorist.c-Icon--after:after, .ui-accordion .c-Icon--localFlorist.c-Icon--after.ui-accordion-header:after, .c-Icon--localFlorist.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localGasStation.c-Icon--before:before, .ui-accordion .c-Icon--localGasStation.ui-accordion-header:before, .c-Icon--localGasStation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localGasStation.c-Icon--after:after, .ui-accordion .c-Icon--localGasStation.c-Icon--after.ui-accordion-header:after, .c-Icon--localGasStation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localHospital.c-Icon--before:before, .ui-accordion .c-Icon--localHospital.ui-accordion-header:before, .c-Icon--localHospital.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localHospital.c-Icon--after:after, .ui-accordion .c-Icon--localHospital.c-Icon--after.ui-accordion-header:after, .c-Icon--localHospital.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localHotel.c-Icon--before:before, .ui-accordion .c-Icon--localHotel.ui-accordion-header:before, .c-Icon--localHotel.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localHotel.c-Icon--after:after, .ui-accordion .c-Icon--localHotel.c-Icon--after.ui-accordion-header:after, .c-Icon--localHotel.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localLaundryService.c-Icon--before:before, .ui-accordion .c-Icon--localLaundryService.ui-accordion-header:before, .c-Icon--localLaundryService.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localLaundryService.c-Icon--after:after, .ui-accordion .c-Icon--localLaundryService.c-Icon--after.ui-accordion-header:after, .c-Icon--localLaundryService.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localLibrary.c-Icon--before:before, .ui-accordion .c-Icon--localLibrary.ui-accordion-header:before, .c-Icon--localLibrary.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localLibrary.c-Icon--after:after, .ui-accordion .c-Icon--localLibrary.c-Icon--after.ui-accordion-header:after, .c-Icon--localLibrary.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localMall.c-Icon--before:before, .ui-accordion .c-Icon--localMall.ui-accordion-header:before, .c-Icon--localMall.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localMall.c-Icon--after:after, .ui-accordion .c-Icon--localMall.c-Icon--after.ui-accordion-header:after, .c-Icon--localMall.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localOffer.c-Icon--before:before, .ui-accordion .c-Icon--localOffer.ui-accordion-header:before, .c-Icon--localOffer.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localOffer.c-Icon--after:after, .ui-accordion .c-Icon--localOffer.c-Icon--after.ui-accordion-header:after, .c-Icon--localOffer.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localParking.c-Icon--before:before, .ui-accordion .c-Icon--localParking.ui-accordion-header:before, .c-Icon--localParking.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localParking.c-Icon--after:after, .ui-accordion .c-Icon--localParking.c-Icon--after.ui-accordion-header:after, .c-Icon--localParking.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localPharmacy.c-Icon--before:before, .ui-accordion .c-Icon--localPharmacy.ui-accordion-header:before, .c-Icon--localPharmacy.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localPharmacy.c-Icon--after:after, .ui-accordion .c-Icon--localPharmacy.c-Icon--after.ui-accordion-header:after, .c-Icon--localPharmacy.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localPizza.c-Icon--before:before, .ui-accordion .c-Icon--localPizza.ui-accordion-header:before, .c-Icon--localPizza.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localPizza.c-Icon--after:after, .ui-accordion .c-Icon--localPizza.c-Icon--after.ui-accordion-header:after, .c-Icon--localPizza.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localPlay.c-Icon--before:before, .ui-accordion .c-Icon--localPlay.ui-accordion-header:before, .c-Icon--localPlay.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localPlay.c-Icon--after:after, .ui-accordion .c-Icon--localPlay.c-Icon--after.ui-accordion-header:after, .c-Icon--localPlay.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localShipping.c-Icon--before:before, .ui-accordion .c-Icon--localShipping.ui-accordion-header:before, .c-Icon--localShipping.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localShipping.c-Icon--after:after, .ui-accordion .c-Icon--localShipping.c-Icon--after.ui-accordion-header:after, .c-Icon--localShipping.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--localTaxi.c-Icon--before:before, .ui-accordion .c-Icon--localTaxi.ui-accordion-header:before, .c-Icon--localTaxi.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--localTaxi.c-Icon--after:after, .ui-accordion .c-Icon--localTaxi.c-Icon--after.ui-accordion-header:after, .c-Icon--localTaxi.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--locationCity.c-Icon--before:before, .ui-accordion .c-Icon--locationCity.ui-accordion-header:before, .c-Icon--locationCity.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--locationCity.c-Icon--after:after, .ui-accordion .c-Icon--locationCity.c-Icon--after.ui-accordion-header:after, .c-Icon--locationCity.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--locationDisabled.c-Icon--before:before, .ui-accordion .c-Icon--locationDisabled.ui-accordion-header:before, .c-Icon--locationDisabled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--locationDisabled.c-Icon--after:after, .ui-accordion .c-Icon--locationDisabled.c-Icon--after.ui-accordion-header:after, .c-Icon--locationDisabled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--locationOff.c-Icon--before:before, .ui-accordion .c-Icon--locationOff.ui-accordion-header:before, .c-Icon--locationOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--locationOff.c-Icon--after:after, .ui-accordion .c-Icon--locationOff.c-Icon--after.ui-accordion-header:after, .c-Icon--locationOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--locationSearching.c-Icon--before:before, .ui-accordion .c-Icon--locationSearching.ui-accordion-header:before, .c-Icon--locationSearching.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--locationSearching.c-Icon--after:after, .ui-accordion .c-Icon--locationSearching.c-Icon--after.ui-accordion-header:after, .c-Icon--locationSearching.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lock.c-Icon--before:before, .ui-accordion .c-Icon--lock.ui-accordion-header:before, .c-Icon--lock.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lock.c-Icon--after:after, .ui-accordion .c-Icon--lock.c-Icon--after.ui-accordion-header:after, .c-Icon--lock.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lockOpen.c-Icon--before:before, .ui-accordion .c-Icon--lockOpen.ui-accordion-header:before, .c-Icon--lockOpen.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lockOpen.c-Icon--after:after, .ui-accordion .c-Icon--lockOpen.c-Icon--after.ui-accordion-header:after, .c-Icon--lockOpen.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lockOutline.c-Icon--before:before, .ui-accordion .c-Icon--lockOutline.ui-accordion-header:before, .c-Icon--lockOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lockOutline.c-Icon--after:after, .ui-accordion .c-Icon--lockOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--lockOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--looks.c-Icon--before:before, .ui-accordion .c-Icon--looks.ui-accordion-header:before, .c-Icon--looks.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--looks.c-Icon--after:after, .ui-accordion .c-Icon--looks.c-Icon--after.ui-accordion-header:after, .c-Icon--looks.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--looks3.c-Icon--before:before, .ui-accordion .c-Icon--looks3.ui-accordion-header:before, .c-Icon--looks3.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--looks3.c-Icon--after:after, .ui-accordion .c-Icon--looks3.c-Icon--after.ui-accordion-header:after, .c-Icon--looks3.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--looks4.c-Icon--before:before, .ui-accordion .c-Icon--looks4.ui-accordion-header:before, .c-Icon--looks4.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--looks4.c-Icon--after:after, .ui-accordion .c-Icon--looks4.c-Icon--after.ui-accordion-header:after, .c-Icon--looks4.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--looks5.c-Icon--before:before, .ui-accordion .c-Icon--looks5.ui-accordion-header:before, .c-Icon--looks5.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--looks5.c-Icon--after:after, .ui-accordion .c-Icon--looks5.c-Icon--after.ui-accordion-header:after, .c-Icon--looks5.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--looks6.c-Icon--before:before, .ui-accordion .c-Icon--looks6.ui-accordion-header:before, .c-Icon--looks6.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--looks6.c-Icon--after:after, .ui-accordion .c-Icon--looks6.c-Icon--after.ui-accordion-header:after, .c-Icon--looks6.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--looksOne.c-Icon--before:before, .ui-accordion .c-Icon--looksOne.ui-accordion-header:before, .c-Icon--looksOne.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--looksOne.c-Icon--after:after, .ui-accordion .c-Icon--looksOne.c-Icon--after.ui-accordion-header:after, .c-Icon--looksOne.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--looksTwo.c-Icon--before:before, .ui-accordion .c-Icon--looksTwo.ui-accordion-header:before, .c-Icon--looksTwo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--looksTwo.c-Icon--after:after, .ui-accordion .c-Icon--looksTwo.c-Icon--after.ui-accordion-header:after, .c-Icon--looksTwo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--loupe.c-Icon--before:before, .ui-accordion .c-Icon--loupe.ui-accordion-header:before, .c-Icon--loupe.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--loupe.c-Icon--after:after, .ui-accordion .c-Icon--loupe.c-Icon--after.ui-accordion-header:after, .c-Icon--loupe.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--lowPriority.c-Icon--before:before, .ui-accordion .c-Icon--lowPriority.ui-accordion-header:before, .c-Icon--lowPriority.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--lowPriority.c-Icon--after:after, .ui-accordion .c-Icon--lowPriority.c-Icon--after.ui-accordion-header:after, .c-Icon--lowPriority.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--loyalty.c-Icon--before:before, .ui-accordion .c-Icon--loyalty.ui-accordion-header:before, .c-Icon--loyalty.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--loyalty.c-Icon--after:after, .ui-accordion .c-Icon--loyalty.c-Icon--after.ui-accordion-header:after, .c-Icon--loyalty.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--mailOutline.c-Icon--before:before, .ui-accordion .c-Icon--mailOutline.ui-accordion-header:before, .c-Icon--mailOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--mailOutline.c-Icon--after:after, .ui-accordion .c-Icon--mailOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--mailOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--map.c-Icon--before:before, .ui-accordion .c-Icon--map.ui-accordion-header:before, .c-Icon--map.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--map.c-Icon--after:after, .ui-accordion .c-Icon--map.c-Icon--after.ui-accordion-header:after, .c-Icon--map.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--markunread.c-Icon--before:before, .ui-accordion .c-Icon--markunread.ui-accordion-header:before, .c-Icon--markunread.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--markunread.c-Icon--after:after, .ui-accordion .c-Icon--markunread.c-Icon--after.ui-accordion-header:after, .c-Icon--markunread.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--markunreadMailbox.c-Icon--before:before, .ui-accordion .c-Icon--markunreadMailbox.ui-accordion-header:before, .c-Icon--markunreadMailbox.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--markunreadMailbox.c-Icon--after:after, .ui-accordion .c-Icon--markunreadMailbox.c-Icon--after.ui-accordion-header:after, .c-Icon--markunreadMailbox.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--maximize.c-Icon--before:before, .ui-accordion .c-Icon--maximize.ui-accordion-header:before, .c-Icon--maximize.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--maximize.c-Icon--after:after, .ui-accordion .c-Icon--maximize.c-Icon--after.ui-accordion-header:after, .c-Icon--maximize.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--meetingRoom.c-Icon--before:before, .ui-accordion .c-Icon--meetingRoom.ui-accordion-header:before, .c-Icon--meetingRoom.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--meetingRoom.c-Icon--after:after, .ui-accordion .c-Icon--meetingRoom.c-Icon--after.ui-accordion-header:after, .c-Icon--meetingRoom.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--memory.c-Icon--before:before, .ui-accordion .c-Icon--memory.ui-accordion-header:before, .c-Icon--memory.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--memory.c-Icon--after:after, .ui-accordion .c-Icon--memory.c-Icon--after.ui-accordion-header:after, .c-Icon--memory.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--menu.c-Icon--before:before, .ui-accordion .c-Icon--menu.ui-accordion-header:before, .c-Icon--menu.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--menu.c-Icon--after:after, .ui-accordion .c-Icon--menu.c-Icon--after.ui-accordion-header:after, .c-Icon--menu.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--menuBook.c-Icon--before:before, .ui-accordion .c-Icon--menuBook.ui-accordion-header:before, .c-Icon--menuBook.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--menuBook.c-Icon--after:after, .ui-accordion .c-Icon--menuBook.c-Icon--after.ui-accordion-header:after, .c-Icon--menuBook.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--mergeType.c-Icon--before:before, .ui-accordion .c-Icon--mergeType.ui-accordion-header:before, .c-Icon--mergeType.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--mergeType.c-Icon--after:after, .ui-accordion .c-Icon--mergeType.c-Icon--after.ui-accordion-header:after, .c-Icon--mergeType.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--message.c-Icon--before:before, .ui-accordion .c-Icon--message.ui-accordion-header:before, .c-Icon--message.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--message.c-Icon--after:after, .ui-accordion .c-Icon--message.c-Icon--after.ui-accordion-header:after, .c-Icon--message.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--mic.c-Icon--before:before, .ui-accordion .c-Icon--mic.ui-accordion-header:before, .c-Icon--mic.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--mic.c-Icon--after:after, .ui-accordion .c-Icon--mic.c-Icon--after.ui-accordion-header:after, .c-Icon--mic.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--micNone.c-Icon--before:before, .ui-accordion .c-Icon--micNone.ui-accordion-header:before, .c-Icon--micNone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--micNone.c-Icon--after:after, .ui-accordion .c-Icon--micNone.c-Icon--after.ui-accordion-header:after, .c-Icon--micNone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--micOff.c-Icon--before:before, .ui-accordion .c-Icon--micOff.ui-accordion-header:before, .c-Icon--micOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--micOff.c-Icon--after:after, .ui-accordion .c-Icon--micOff.c-Icon--after.ui-accordion-header:after, .c-Icon--micOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--minimize.c-Icon--before:before, .ui-accordion .c-Icon--minimize.ui-accordion-header:before, .c-Icon--minimize.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--minimize.c-Icon--after:after, .ui-accordion .c-Icon--minimize.c-Icon--after.ui-accordion-header:after, .c-Icon--minimize.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--missedVideoCall.c-Icon--before:before, .ui-accordion .c-Icon--missedVideoCall.ui-accordion-header:before, .c-Icon--missedVideoCall.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--missedVideoCall.c-Icon--after:after, .ui-accordion .c-Icon--missedVideoCall.c-Icon--after.ui-accordion-header:after, .c-Icon--missedVideoCall.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--mms.c-Icon--before:before, .ui-accordion .c-Icon--mms.ui-accordion-header:before, .c-Icon--mms.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--mms.c-Icon--after:after, .ui-accordion .c-Icon--mms.c-Icon--after.ui-accordion-header:after, .c-Icon--mms.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--mobileFriendly.c-Icon--before:before, .ui-accordion .c-Icon--mobileFriendly.ui-accordion-header:before, .c-Icon--mobileFriendly.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--mobileFriendly.c-Icon--after:after, .ui-accordion .c-Icon--mobileFriendly.c-Icon--after.ui-accordion-header:after, .c-Icon--mobileFriendly.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--mobileOff.c-Icon--before:before, .ui-accordion .c-Icon--mobileOff.ui-accordion-header:before, .c-Icon--mobileOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--mobileOff.c-Icon--after:after, .ui-accordion .c-Icon--mobileOff.c-Icon--after.ui-accordion-header:after, .c-Icon--mobileOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--mobileScreenShare.c-Icon--before:before, .ui-accordion .c-Icon--mobileScreenShare.ui-accordion-header:before, .c-Icon--mobileScreenShare.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--mobileScreenShare.c-Icon--after:after, .ui-accordion .c-Icon--mobileScreenShare.c-Icon--after.ui-accordion-header:after, .c-Icon--mobileScreenShare.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--modeComment.c-Icon--before:before, .ui-accordion .c-Icon--modeComment.ui-accordion-header:before, .c-Icon--modeComment.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--modeComment.c-Icon--after:after, .ui-accordion .c-Icon--modeComment.c-Icon--after.ui-accordion-header:after, .c-Icon--modeComment.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--modeEdit.c-Icon--before:before, .ui-accordion .c-Icon--modeEdit.ui-accordion-header:before, .c-Icon--modeEdit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--modeEdit.c-Icon--after:after, .ui-accordion .c-Icon--modeEdit.c-Icon--after.ui-accordion-header:after, .c-Icon--modeEdit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--monetizationOn.c-Icon--before:before, .ui-accordion .c-Icon--monetizationOn.ui-accordion-header:before, .c-Icon--monetizationOn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--monetizationOn.c-Icon--after:after, .ui-accordion .c-Icon--monetizationOn.c-Icon--after.ui-accordion-header:after, .c-Icon--monetizationOn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--money.c-Icon--before:before, .ui-accordion .c-Icon--money.ui-accordion-header:before, .c-Icon--money.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--money.c-Icon--after:after, .ui-accordion .c-Icon--money.c-Icon--after.ui-accordion-header:after, .c-Icon--money.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--moneyOff.c-Icon--before:before, .ui-accordion .c-Icon--moneyOff.ui-accordion-header:before, .c-Icon--moneyOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--moneyOff.c-Icon--after:after, .ui-accordion .c-Icon--moneyOff.c-Icon--after.ui-accordion-header:after, .c-Icon--moneyOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--monochromePhotos.c-Icon--before:before, .ui-accordion .c-Icon--monochromePhotos.ui-accordion-header:before, .c-Icon--monochromePhotos.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--monochromePhotos.c-Icon--after:after, .ui-accordion .c-Icon--monochromePhotos.c-Icon--after.ui-accordion-header:after, .c-Icon--monochromePhotos.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--moodBad.c-Icon--before:before, .ui-accordion .c-Icon--moodBad.ui-accordion-header:before, .c-Icon--moodBad.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--moodBad.c-Icon--after:after, .ui-accordion .c-Icon--moodBad.c-Icon--after.ui-accordion-header:after, .c-Icon--moodBad.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--more.c-Icon--before:before, .ui-accordion .c-Icon--more.ui-accordion-header:before, .c-Icon--more.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--more.c-Icon--after:after, .ui-accordion .c-Icon--more.c-Icon--after.ui-accordion-header:after, .c-Icon--more.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--moreHoriz.c-Icon--before:before, .ui-accordion .c-Icon--moreHoriz.ui-accordion-header:before, .c-Icon--moreHoriz.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--moreHoriz.c-Icon--after:after, .ui-accordion .c-Icon--moreHoriz.c-Icon--after.ui-accordion-header:after, .c-Icon--moreHoriz.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--moreVert.c-Icon--before:before, .ui-accordion .c-Icon--moreVert.ui-accordion-header:before, .c-Icon--moreVert.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--moreVert.c-Icon--after:after, .ui-accordion .c-Icon--moreVert.c-Icon--after.ui-accordion-header:after, .c-Icon--moreVert.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--motorcycle.c-Icon--before:before, .ui-accordion .c-Icon--motorcycle.ui-accordion-header:before, .c-Icon--motorcycle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--motorcycle.c-Icon--after:after, .ui-accordion .c-Icon--motorcycle.c-Icon--after.ui-accordion-header:after, .c-Icon--motorcycle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--mouse.c-Icon--before:before, .ui-accordion .c-Icon--mouse.ui-accordion-header:before, .c-Icon--mouse.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--mouse.c-Icon--after:after, .ui-accordion .c-Icon--mouse.c-Icon--after.ui-accordion-header:after, .c-Icon--mouse.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--moveToInbox.c-Icon--before:before, .ui-accordion .c-Icon--moveToInbox.ui-accordion-header:before, .c-Icon--moveToInbox.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--moveToInbox.c-Icon--after:after, .ui-accordion .c-Icon--moveToInbox.c-Icon--after.ui-accordion-header:after, .c-Icon--moveToInbox.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--movieCreation.c-Icon--before:before, .ui-accordion .c-Icon--movieCreation.ui-accordion-header:before, .c-Icon--movieCreation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--movieCreation.c-Icon--after:after, .ui-accordion .c-Icon--movieCreation.c-Icon--after.ui-accordion-header:after, .c-Icon--movieCreation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--movieFilter.c-Icon--before:before, .ui-accordion .c-Icon--movieFilter.ui-accordion-header:before, .c-Icon--movieFilter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--movieFilter.c-Icon--after:after, .ui-accordion .c-Icon--movieFilter.c-Icon--after.ui-accordion-header:after, .c-Icon--movieFilter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--multilineChart.c-Icon--before:before, .ui-accordion .c-Icon--multilineChart.ui-accordion-header:before, .c-Icon--multilineChart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--multilineChart.c-Icon--after:after, .ui-accordion .c-Icon--multilineChart.c-Icon--after.ui-accordion-header:after, .c-Icon--multilineChart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--musicNote.c-Icon--before:before, .ui-accordion .c-Icon--musicNote.ui-accordion-header:before, .c-Icon--musicNote.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--musicNote.c-Icon--after:after, .ui-accordion .c-Icon--musicNote.c-Icon--after.ui-accordion-header:after, .c-Icon--musicNote.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--musicOff.c-Icon--before:before, .ui-accordion .c-Icon--musicOff.ui-accordion-header:before, .c-Icon--musicOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--musicOff.c-Icon--after:after, .ui-accordion .c-Icon--musicOff.c-Icon--after.ui-accordion-header:after, .c-Icon--musicOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--musicVideo.c-Icon--before:before, .ui-accordion .c-Icon--musicVideo.ui-accordion-header:before, .c-Icon--musicVideo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--musicVideo.c-Icon--after:after, .ui-accordion .c-Icon--musicVideo.c-Icon--after.ui-accordion-header:after, .c-Icon--musicVideo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--myLocation.c-Icon--before:before, .ui-accordion .c-Icon--myLocation.ui-accordion-header:before, .c-Icon--myLocation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--myLocation.c-Icon--after:after, .ui-accordion .c-Icon--myLocation.c-Icon--after.ui-accordion-header:after, .c-Icon--myLocation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--nature.c-Icon--before:before, .ui-accordion .c-Icon--nature.ui-accordion-header:before, .c-Icon--nature.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--nature.c-Icon--after:after, .ui-accordion .c-Icon--nature.c-Icon--after.ui-accordion-header:after, .c-Icon--nature.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--naturePeople.c-Icon--before:before, .ui-accordion .c-Icon--naturePeople.ui-accordion-header:before, .c-Icon--naturePeople.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--naturePeople.c-Icon--after:after, .ui-accordion .c-Icon--naturePeople.c-Icon--after.ui-accordion-header:after, .c-Icon--naturePeople.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--navigateBefore.c-Icon--before:before, .ui-accordion .c-Icon--navigateBefore.ui-accordion-header:before, .c-Icon--navigateBefore.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--navigateBefore.c-Icon--after:after, .ui-accordion .c-Icon--navigateBefore.c-Icon--after.ui-accordion-header:after, .c-Icon--navigateBefore.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--navigateNext.c-Icon--before:before, .ui-accordion .c-Icon--navigateNext.ui-accordion-header:before, .c-Icon--navigateNext.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--navigateNext.c-Icon--after:after, .ui-accordion .c-Icon--navigateNext.c-Icon--after.ui-accordion-header:after, .c-Icon--navigateNext.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--navigation.c-Icon--before:before, .ui-accordion .c-Icon--navigation.ui-accordion-header:before, .c-Icon--navigation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--navigation.c-Icon--after:after, .ui-accordion .c-Icon--navigation.c-Icon--after.ui-accordion-header:after, .c-Icon--navigation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--nearMe.c-Icon--before:before, .ui-accordion .c-Icon--nearMe.ui-accordion-header:before, .c-Icon--nearMe.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--nearMe.c-Icon--after:after, .ui-accordion .c-Icon--nearMe.c-Icon--after.ui-accordion-header:after, .c-Icon--nearMe.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--networkCell.c-Icon--before:before, .ui-accordion .c-Icon--networkCell.ui-accordion-header:before, .c-Icon--networkCell.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--networkCell.c-Icon--after:after, .ui-accordion .c-Icon--networkCell.c-Icon--after.ui-accordion-header:after, .c-Icon--networkCell.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--networkCheck.c-Icon--before:before, .ui-accordion .c-Icon--networkCheck.ui-accordion-header:before, .c-Icon--networkCheck.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--networkCheck.c-Icon--after:after, .ui-accordion .c-Icon--networkCheck.c-Icon--after.ui-accordion-header:after, .c-Icon--networkCheck.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--networkLocked.c-Icon--before:before, .ui-accordion .c-Icon--networkLocked.ui-accordion-header:before, .c-Icon--networkLocked.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--networkLocked.c-Icon--after:after, .ui-accordion .c-Icon--networkLocked.c-Icon--after.ui-accordion-header:after, .c-Icon--networkLocked.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--networkWifi.c-Icon--before:before, .ui-accordion .c-Icon--networkWifi.ui-accordion-header:before, .c-Icon--networkWifi.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--networkWifi.c-Icon--after:after, .ui-accordion .c-Icon--networkWifi.c-Icon--after.ui-accordion-header:after, .c-Icon--networkWifi.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--newReleases.c-Icon--before:before, .ui-accordion .c-Icon--newReleases.ui-accordion-header:before, .c-Icon--newReleases.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--newReleases.c-Icon--after:after, .ui-accordion .c-Icon--newReleases.c-Icon--after.ui-accordion-header:after, .c-Icon--newReleases.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--nextWeek.c-Icon--before:before, .ui-accordion .c-Icon--nextWeek.ui-accordion-header:before, .c-Icon--nextWeek.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--nextWeek.c-Icon--after:after, .ui-accordion .c-Icon--nextWeek.c-Icon--after.ui-accordion-header:after, .c-Icon--nextWeek.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--nfc.c-Icon--before:before, .ui-accordion .c-Icon--nfc.ui-accordion-header:before, .c-Icon--nfc.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--nfc.c-Icon--after:after, .ui-accordion .c-Icon--nfc.c-Icon--after.ui-accordion-header:after, .c-Icon--nfc.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--noEncryption.c-Icon--before:before, .ui-accordion .c-Icon--noEncryption.ui-accordion-header:before, .c-Icon--noEncryption.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--noEncryption.c-Icon--after:after, .ui-accordion .c-Icon--noEncryption.c-Icon--after.ui-accordion-header:after, .c-Icon--noEncryption.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--noMeetingRoom.c-Icon--before:before, .ui-accordion .c-Icon--noMeetingRoom.ui-accordion-header:before, .c-Icon--noMeetingRoom.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--noMeetingRoom.c-Icon--after:after, .ui-accordion .c-Icon--noMeetingRoom.c-Icon--after.ui-accordion-header:after, .c-Icon--noMeetingRoom.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notInterested.c-Icon--before:before, .ui-accordion .c-Icon--notInterested.ui-accordion-header:before, .c-Icon--notInterested.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notInterested.c-Icon--after:after, .ui-accordion .c-Icon--notInterested.c-Icon--after.ui-accordion-header:after, .c-Icon--notInterested.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notListedLocation.c-Icon--before:before, .ui-accordion .c-Icon--notListedLocation.ui-accordion-header:before, .c-Icon--notListedLocation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notListedLocation.c-Icon--after:after, .ui-accordion .c-Icon--notListedLocation.c-Icon--after.ui-accordion-header:after, .c-Icon--notListedLocation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--note.c-Icon--before:before, .ui-accordion .c-Icon--note.ui-accordion-header:before, .c-Icon--note.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--note.c-Icon--after:after, .ui-accordion .c-Icon--note.c-Icon--after.ui-accordion-header:after, .c-Icon--note.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--noteAdd.c-Icon--before:before, .ui-accordion .c-Icon--noteAdd.ui-accordion-header:before, .c-Icon--noteAdd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--noteAdd.c-Icon--after:after, .ui-accordion .c-Icon--noteAdd.c-Icon--after.ui-accordion-header:after, .c-Icon--noteAdd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notes.c-Icon--before:before, .ui-accordion .c-Icon--notes.ui-accordion-header:before, .c-Icon--notes.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notes.c-Icon--after:after, .ui-accordion .c-Icon--notes.c-Icon--after.ui-accordion-header:after, .c-Icon--notes.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notificationImportant.c-Icon--before:before, .ui-accordion .c-Icon--notificationImportant.ui-accordion-header:before, .c-Icon--notificationImportant.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notificationImportant.c-Icon--after:after, .ui-accordion .c-Icon--notificationImportant.c-Icon--after.ui-accordion-header:after, .c-Icon--notificationImportant.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notifications.c-Icon--before:before, .ui-accordion .c-Icon--notifications.ui-accordion-header:before, .c-Icon--notifications.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notifications.c-Icon--after:after, .ui-accordion .c-Icon--notifications.c-Icon--after.ui-accordion-header:after, .c-Icon--notifications.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notificationsOn.c-Icon--before:before, .ui-accordion .c-Icon--notificationsOn.ui-accordion-header:before, .c-Icon--notificationsOn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notificationsOn.c-Icon--after:after, .ui-accordion .c-Icon--notificationsOn.c-Icon--after.ui-accordion-header:after, .c-Icon--notificationsOn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notificationsActive.c-Icon--before:before, .ui-accordion .c-Icon--notificationsActive.ui-accordion-header:before, .c-Icon--notificationsActive.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notificationsActive.c-Icon--after:after, .ui-accordion .c-Icon--notificationsActive.c-Icon--after.ui-accordion-header:after, .c-Icon--notificationsActive.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notificationsNone.c-Icon--before:before, .ui-accordion .c-Icon--notificationsNone.ui-accordion-header:before, .c-Icon--notificationsNone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notificationsNone.c-Icon--after:after, .ui-accordion .c-Icon--notificationsNone.c-Icon--after.ui-accordion-header:after, .c-Icon--notificationsNone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notificationsOff.c-Icon--before:before, .ui-accordion .c-Icon--notificationsOff.ui-accordion-header:before, .c-Icon--notificationsOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notificationsOff.c-Icon--after:after, .ui-accordion .c-Icon--notificationsOff.c-Icon--after.ui-accordion-header:after, .c-Icon--notificationsOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--notificationsPaused.c-Icon--before:before, .ui-accordion .c-Icon--notificationsPaused.ui-accordion-header:before, .c-Icon--notificationsPaused.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--notificationsPaused.c-Icon--after:after, .ui-accordion .c-Icon--notificationsPaused.c-Icon--after.ui-accordion-header:after, .c-Icon--notificationsPaused.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--offlineBolt.c-Icon--before:before, .ui-accordion .c-Icon--offlineBolt.ui-accordion-header:before, .c-Icon--offlineBolt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--offlineBolt.c-Icon--after:after, .ui-accordion .c-Icon--offlineBolt.c-Icon--after.ui-accordion-header:after, .c-Icon--offlineBolt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--offlinePin.c-Icon--before:before, .ui-accordion .c-Icon--offlinePin.ui-accordion-header:before, .c-Icon--offlinePin.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--offlinePin.c-Icon--after:after, .ui-accordion .c-Icon--offlinePin.c-Icon--after.ui-accordion-header:after, .c-Icon--offlinePin.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--ondemandVideo.c-Icon--before:before, .ui-accordion .c-Icon--ondemandVideo.ui-accordion-header:before, .c-Icon--ondemandVideo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--ondemandVideo.c-Icon--after:after, .ui-accordion .c-Icon--ondemandVideo.c-Icon--after.ui-accordion-header:after, .c-Icon--ondemandVideo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--opacity.c-Icon--before:before, .ui-accordion .c-Icon--opacity.ui-accordion-header:before, .c-Icon--opacity.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--opacity.c-Icon--after:after, .ui-accordion .c-Icon--opacity.c-Icon--after.ui-accordion-header:after, .c-Icon--opacity.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--openInBrowser.c-Icon--before:before, .ui-accordion .c-Icon--openInBrowser.ui-accordion-header:before, .c-Icon--openInBrowser.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--openInBrowser.c-Icon--after:after, .ui-accordion .c-Icon--openInBrowser.c-Icon--after.ui-accordion-header:after, .c-Icon--openInBrowser.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--openInNew.c-Icon--before:before, .ui-accordion .c-Icon--openInNew.ui-accordion-header:before, .c-Icon--openInNew.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--openInNew.c-Icon--after:after, .ui-accordion .c-Icon--openInNew.c-Icon--after.ui-accordion-header:after, .c-Icon--openInNew.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--openWith.c-Icon--before:before, .ui-accordion .c-Icon--openWith.ui-accordion-header:before, .c-Icon--openWith.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--openWith.c-Icon--after:after, .ui-accordion .c-Icon--openWith.c-Icon--after.ui-accordion-header:after, .c-Icon--openWith.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--outlinedFlag.c-Icon--before:before, .ui-accordion .c-Icon--outlinedFlag.ui-accordion-header:before, .c-Icon--outlinedFlag.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--outlinedFlag.c-Icon--after:after, .ui-accordion .c-Icon--outlinedFlag.c-Icon--after.ui-accordion-header:after, .c-Icon--outlinedFlag.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pages.c-Icon--before:before, .ui-accordion .c-Icon--pages.ui-accordion-header:before, .c-Icon--pages.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pages.c-Icon--after:after, .ui-accordion .c-Icon--pages.c-Icon--after.ui-accordion-header:after, .c-Icon--pages.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pageview.c-Icon--before:before, .ui-accordion .c-Icon--pageview.ui-accordion-header:before, .c-Icon--pageview.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pageview.c-Icon--after:after, .ui-accordion .c-Icon--pageview.c-Icon--after.ui-accordion-header:after, .c-Icon--pageview.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--palette.c-Icon--before:before, .ui-accordion .c-Icon--palette.ui-accordion-header:before, .c-Icon--palette.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--palette.c-Icon--after:after, .ui-accordion .c-Icon--palette.c-Icon--after.ui-accordion-header:after, .c-Icon--palette.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--panTool.c-Icon--before:before, .ui-accordion .c-Icon--panTool.ui-accordion-header:before, .c-Icon--panTool.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--panTool.c-Icon--after:after, .ui-accordion .c-Icon--panTool.c-Icon--after.ui-accordion-header:after, .c-Icon--panTool.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--panorama.c-Icon--before:before, .ui-accordion .c-Icon--panorama.ui-accordion-header:before, .c-Icon--panorama.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--panorama.c-Icon--after:after, .ui-accordion .c-Icon--panorama.c-Icon--after.ui-accordion-header:after, .c-Icon--panorama.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--panoramaHorizontal.c-Icon--before:before, .ui-accordion .c-Icon--panoramaHorizontal.ui-accordion-header:before, .c-Icon--panoramaHorizontal.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--panoramaHorizontal.c-Icon--after:after, .ui-accordion .c-Icon--panoramaHorizontal.c-Icon--after.ui-accordion-header:after, .c-Icon--panoramaHorizontal.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--panoramaVertical.c-Icon--before:before, .ui-accordion .c-Icon--panoramaVertical.ui-accordion-header:before, .c-Icon--panoramaVertical.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--panoramaVertical.c-Icon--after:after, .ui-accordion .c-Icon--panoramaVertical.c-Icon--after.ui-accordion-header:after, .c-Icon--panoramaVertical.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--panoramaWideAngle.c-Icon--before:before, .ui-accordion .c-Icon--panoramaWideAngle.ui-accordion-header:before, .c-Icon--panoramaWideAngle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--panoramaWideAngle.c-Icon--after:after, .ui-accordion .c-Icon--panoramaWideAngle.c-Icon--after.ui-accordion-header:after, .c-Icon--panoramaWideAngle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--partyMode.c-Icon--before:before, .ui-accordion .c-Icon--partyMode.ui-accordion-header:before, .c-Icon--partyMode.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--partyMode.c-Icon--after:after, .ui-accordion .c-Icon--partyMode.c-Icon--after.ui-accordion-header:after, .c-Icon--partyMode.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pause.c-Icon--before:before, .ui-accordion .c-Icon--pause.ui-accordion-header:before, .c-Icon--pause.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pause.c-Icon--after:after, .ui-accordion .c-Icon--pause.c-Icon--after.ui-accordion-header:after, .c-Icon--pause.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pauseCircleFilled.c-Icon--before:before, .ui-accordion .c-Icon--pauseCircleFilled.ui-accordion-header:before, .c-Icon--pauseCircleFilled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pauseCircleFilled.c-Icon--after:after, .ui-accordion .c-Icon--pauseCircleFilled.c-Icon--after.ui-accordion-header:after, .c-Icon--pauseCircleFilled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pauseCircleOutline.c-Icon--before:before, .ui-accordion .c-Icon--pauseCircleOutline.ui-accordion-header:before, .c-Icon--pauseCircleOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pauseCircleOutline.c-Icon--after:after, .ui-accordion .c-Icon--pauseCircleOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--pauseCircleOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pausePresentation.c-Icon--before:before, .ui-accordion .c-Icon--pausePresentation.ui-accordion-header:before, .c-Icon--pausePresentation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pausePresentation.c-Icon--after:after, .ui-accordion .c-Icon--pausePresentation.c-Icon--after.ui-accordion-header:after, .c-Icon--pausePresentation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--payment.c-Icon--before:before, .ui-accordion .c-Icon--payment.ui-accordion-header:before, .c-Icon--payment.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--payment.c-Icon--after:after, .ui-accordion .c-Icon--payment.c-Icon--after.ui-accordion-header:after, .c-Icon--payment.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--people.c-Icon--before:before, .ui-accordion .c-Icon--people.ui-accordion-header:before, .c-Icon--people.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--people.c-Icon--after:after, .ui-accordion .c-Icon--people.c-Icon--after.ui-accordion-header:after, .c-Icon--people.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--peopleOutline.c-Icon--before:before, .ui-accordion .c-Icon--peopleOutline.ui-accordion-header:before, .c-Icon--peopleOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--peopleOutline.c-Icon--after:after, .ui-accordion .c-Icon--peopleOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--peopleOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--permCameraMic.c-Icon--before:before, .ui-accordion .c-Icon--permCameraMic.ui-accordion-header:before, .c-Icon--permCameraMic.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--permCameraMic.c-Icon--after:after, .ui-accordion .c-Icon--permCameraMic.c-Icon--after.ui-accordion-header:after, .c-Icon--permCameraMic.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--permContactCalendar.c-Icon--before:before, .ui-accordion .c-Icon--permContactCalendar.ui-accordion-header:before, .c-Icon--permContactCalendar.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--permContactCalendar.c-Icon--after:after, .ui-accordion .c-Icon--permContactCalendar.c-Icon--after.ui-accordion-header:after, .c-Icon--permContactCalendar.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--permDataSetting.c-Icon--before:before, .ui-accordion .c-Icon--permDataSetting.ui-accordion-header:before, .c-Icon--permDataSetting.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--permDataSetting.c-Icon--after:after, .ui-accordion .c-Icon--permDataSetting.c-Icon--after.ui-accordion-header:after, .c-Icon--permDataSetting.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--permDeviceInformation.c-Icon--before:before, .ui-accordion .c-Icon--permDeviceInformation.ui-accordion-header:before, .c-Icon--permDeviceInformation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--permDeviceInformation.c-Icon--after:after, .ui-accordion .c-Icon--permDeviceInformation.c-Icon--after.ui-accordion-header:after, .c-Icon--permDeviceInformation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--permMedia.c-Icon--before:before, .ui-accordion .c-Icon--permMedia.ui-accordion-header:before, .c-Icon--permMedia.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--permMedia.c-Icon--after:after, .ui-accordion .c-Icon--permMedia.c-Icon--after.ui-accordion-header:after, .c-Icon--permMedia.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--permPhoneMsg.c-Icon--before:before, .ui-accordion .c-Icon--permPhoneMsg.ui-accordion-header:before, .c-Icon--permPhoneMsg.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--permPhoneMsg.c-Icon--after:after, .ui-accordion .c-Icon--permPhoneMsg.c-Icon--after.ui-accordion-header:after, .c-Icon--permPhoneMsg.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--permScanWifi.c-Icon--before:before, .ui-accordion .c-Icon--permScanWifi.ui-accordion-header:before, .c-Icon--permScanWifi.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--permScanWifi.c-Icon--after:after, .ui-accordion .c-Icon--permScanWifi.c-Icon--after.ui-accordion-header:after, .c-Icon--permScanWifi.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--person.c-Icon--before:before, .ui-accordion .c-Icon--person.ui-accordion-header:before, .c-Icon--person.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--person.c-Icon--after:after, .ui-accordion .c-Icon--person.c-Icon--after.ui-accordion-header:after, .c-Icon--person.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--personAdd.c-Icon--before:before, .ui-accordion .c-Icon--personAdd.ui-accordion-header:before, .c-Icon--personAdd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--personAdd.c-Icon--after:after, .ui-accordion .c-Icon--personAdd.c-Icon--after.ui-accordion-header:after, .c-Icon--personAdd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--personAddDisabled.c-Icon--before:before, .ui-accordion .c-Icon--personAddDisabled.ui-accordion-header:before, .c-Icon--personAddDisabled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--personAddDisabled.c-Icon--after:after, .ui-accordion .c-Icon--personAddDisabled.c-Icon--after.ui-accordion-header:after, .c-Icon--personAddDisabled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--personOutline.c-Icon--before:before, .ui-accordion .c-Icon--personOutline.ui-accordion-header:before, .c-Icon--personOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--personOutline.c-Icon--after:after, .ui-accordion .c-Icon--personOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--personOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--personPin.c-Icon--before:before, .ui-accordion .c-Icon--personPin.ui-accordion-header:before, .c-Icon--personPin.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--personPin.c-Icon--after:after, .ui-accordion .c-Icon--personPin.c-Icon--after.ui-accordion-header:after, .c-Icon--personPin.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--personPinCircle.c-Icon--before:before, .ui-accordion .c-Icon--personPinCircle.ui-accordion-header:before, .c-Icon--personPinCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--personPinCircle.c-Icon--after:after, .ui-accordion .c-Icon--personPinCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--personPinCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--personalVideo.c-Icon--before:before, .ui-accordion .c-Icon--personalVideo.ui-accordion-header:before, .c-Icon--personalVideo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--personalVideo.c-Icon--after:after, .ui-accordion .c-Icon--personalVideo.c-Icon--after.ui-accordion-header:after, .c-Icon--personalVideo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pets.c-Icon--before:before, .ui-accordion .c-Icon--pets.ui-accordion-header:before, .c-Icon--pets.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pets.c-Icon--after:after, .ui-accordion .c-Icon--pets.c-Icon--after.ui-accordion-header:after, .c-Icon--pets.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phone.c-Icon--before:before, .ui-accordion .c-Icon--phone.ui-accordion-header:before, .c-Icon--phone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phone.c-Icon--after:after, .ui-accordion .c-Icon--phone.c-Icon--after.ui-accordion-header:after, .c-Icon--phone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phoneAndroid.c-Icon--before:before, .ui-accordion .c-Icon--phoneAndroid.ui-accordion-header:before, .c-Icon--phoneAndroid.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phoneAndroid.c-Icon--after:after, .ui-accordion .c-Icon--phoneAndroid.c-Icon--after.ui-accordion-header:after, .c-Icon--phoneAndroid.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phoneBluetoothSpeaker.c-Icon--before:before, .ui-accordion .c-Icon--phoneBluetoothSpeaker.ui-accordion-header:before, .c-Icon--phoneBluetoothSpeaker.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phoneBluetoothSpeaker.c-Icon--after:after, .ui-accordion .c-Icon--phoneBluetoothSpeaker.c-Icon--after.ui-accordion-header:after, .c-Icon--phoneBluetoothSpeaker.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phoneCallback.c-Icon--before:before, .ui-accordion .c-Icon--phoneCallback.ui-accordion-header:before, .c-Icon--phoneCallback.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phoneCallback.c-Icon--after:after, .ui-accordion .c-Icon--phoneCallback.c-Icon--after.ui-accordion-header:after, .c-Icon--phoneCallback.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phoneForwarded.c-Icon--before:before, .ui-accordion .c-Icon--phoneForwarded.ui-accordion-header:before, .c-Icon--phoneForwarded.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phoneForwarded.c-Icon--after:after, .ui-accordion .c-Icon--phoneForwarded.c-Icon--after.ui-accordion-header:after, .c-Icon--phoneForwarded.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phoneInTalk.c-Icon--before:before, .ui-accordion .c-Icon--phoneInTalk.ui-accordion-header:before, .c-Icon--phoneInTalk.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phoneInTalk.c-Icon--after:after, .ui-accordion .c-Icon--phoneInTalk.c-Icon--after.ui-accordion-header:after, .c-Icon--phoneInTalk.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phoneIphone.c-Icon--before:before, .ui-accordion .c-Icon--phoneIphone.ui-accordion-header:before, .c-Icon--phoneIphone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phoneIphone.c-Icon--after:after, .ui-accordion .c-Icon--phoneIphone.c-Icon--after.ui-accordion-header:after, .c-Icon--phoneIphone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phoneLocked.c-Icon--before:before, .ui-accordion .c-Icon--phoneLocked.ui-accordion-header:before, .c-Icon--phoneLocked.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phoneLocked.c-Icon--after:after, .ui-accordion .c-Icon--phoneLocked.c-Icon--after.ui-accordion-header:after, .c-Icon--phoneLocked.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phoneMissed.c-Icon--before:before, .ui-accordion .c-Icon--phoneMissed.ui-accordion-header:before, .c-Icon--phoneMissed.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phoneMissed.c-Icon--after:after, .ui-accordion .c-Icon--phoneMissed.c-Icon--after.ui-accordion-header:after, .c-Icon--phoneMissed.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phonePaused.c-Icon--before:before, .ui-accordion .c-Icon--phonePaused.ui-accordion-header:before, .c-Icon--phonePaused.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phonePaused.c-Icon--after:after, .ui-accordion .c-Icon--phonePaused.c-Icon--after.ui-accordion-header:after, .c-Icon--phonePaused.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phonelink.c-Icon--before:before, .ui-accordion .c-Icon--phonelink.ui-accordion-header:before, .c-Icon--phonelink.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phonelink.c-Icon--after:after, .ui-accordion .c-Icon--phonelink.c-Icon--after.ui-accordion-header:after, .c-Icon--phonelink.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phonelinkErase.c-Icon--before:before, .ui-accordion .c-Icon--phonelinkErase.ui-accordion-header:before, .c-Icon--phonelinkErase.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phonelinkErase.c-Icon--after:after, .ui-accordion .c-Icon--phonelinkErase.c-Icon--after.ui-accordion-header:after, .c-Icon--phonelinkErase.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phonelinkLock.c-Icon--before:before, .ui-accordion .c-Icon--phonelinkLock.ui-accordion-header:before, .c-Icon--phonelinkLock.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phonelinkLock.c-Icon--after:after, .ui-accordion .c-Icon--phonelinkLock.c-Icon--after.ui-accordion-header:after, .c-Icon--phonelinkLock.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phonelinkOff.c-Icon--before:before, .ui-accordion .c-Icon--phonelinkOff.ui-accordion-header:before, .c-Icon--phonelinkOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phonelinkOff.c-Icon--after:after, .ui-accordion .c-Icon--phonelinkOff.c-Icon--after.ui-accordion-header:after, .c-Icon--phonelinkOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phonelinkRing.c-Icon--before:before, .ui-accordion .c-Icon--phonelinkRing.ui-accordion-header:before, .c-Icon--phonelinkRing.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phonelinkRing.c-Icon--after:after, .ui-accordion .c-Icon--phonelinkRing.c-Icon--after.ui-accordion-header:after, .c-Icon--phonelinkRing.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--phonelinkSetup.c-Icon--before:before, .ui-accordion .c-Icon--phonelinkSetup.ui-accordion-header:before, .c-Icon--phonelinkSetup.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--phonelinkSetup.c-Icon--after:after, .ui-accordion .c-Icon--phonelinkSetup.c-Icon--after.ui-accordion-header:after, .c-Icon--phonelinkSetup.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--photo.c-Icon--before:before, .ui-accordion .c-Icon--photo.ui-accordion-header:before, .c-Icon--photo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--photo.c-Icon--after:after, .ui-accordion .c-Icon--photo.c-Icon--after.ui-accordion-header:after, .c-Icon--photo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--photoAlbum.c-Icon--before:before, .ui-accordion .c-Icon--photoAlbum.ui-accordion-header:before, .c-Icon--photoAlbum.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--photoAlbum.c-Icon--after:after, .ui-accordion .c-Icon--photoAlbum.c-Icon--after.ui-accordion-header:after, .c-Icon--photoAlbum.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--photoCamera.c-Icon--before:before, .ui-accordion .c-Icon--photoCamera.ui-accordion-header:before, .c-Icon--photoCamera.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--photoCamera.c-Icon--after:after, .ui-accordion .c-Icon--photoCamera.c-Icon--after.ui-accordion-header:after, .c-Icon--photoCamera.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--photoFilter.c-Icon--before:before, .ui-accordion .c-Icon--photoFilter.ui-accordion-header:before, .c-Icon--photoFilter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--photoFilter.c-Icon--after:after, .ui-accordion .c-Icon--photoFilter.c-Icon--after.ui-accordion-header:after, .c-Icon--photoFilter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--photoLibrary.c-Icon--before:before, .ui-accordion .c-Icon--photoLibrary.ui-accordion-header:before, .c-Icon--photoLibrary.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--photoLibrary.c-Icon--after:after, .ui-accordion .c-Icon--photoLibrary.c-Icon--after.ui-accordion-header:after, .c-Icon--photoLibrary.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--photoSizeSelectActual.c-Icon--before:before, .ui-accordion .c-Icon--photoSizeSelectActual.ui-accordion-header:before, .c-Icon--photoSizeSelectActual.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--photoSizeSelectActual.c-Icon--after:after, .ui-accordion .c-Icon--photoSizeSelectActual.c-Icon--after.ui-accordion-header:after, .c-Icon--photoSizeSelectActual.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--photoSizeSelectLarge.c-Icon--before:before, .ui-accordion .c-Icon--photoSizeSelectLarge.ui-accordion-header:before, .c-Icon--photoSizeSelectLarge.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--photoSizeSelectLarge.c-Icon--after:after, .ui-accordion .c-Icon--photoSizeSelectLarge.c-Icon--after.ui-accordion-header:after, .c-Icon--photoSizeSelectLarge.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--photoSizeSelectSmall.c-Icon--before:before, .ui-accordion .c-Icon--photoSizeSelectSmall.ui-accordion-header:before, .c-Icon--photoSizeSelectSmall.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--photoSizeSelectSmall.c-Icon--after:after, .ui-accordion .c-Icon--photoSizeSelectSmall.c-Icon--after.ui-accordion-header:after, .c-Icon--photoSizeSelectSmall.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pictureAsPdf.c-Icon--before:before, .ui-accordion .c-Icon--pictureAsPdf.ui-accordion-header:before, .c-Icon--pictureAsPdf.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pictureAsPdf.c-Icon--after:after, .ui-accordion .c-Icon--pictureAsPdf.c-Icon--after.ui-accordion-header:after, .c-Icon--pictureAsPdf.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pictureInPicture.c-Icon--before:before, .ui-accordion .c-Icon--pictureInPicture.ui-accordion-header:before, .c-Icon--pictureInPicture.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pictureInPicture.c-Icon--after:after, .ui-accordion .c-Icon--pictureInPicture.c-Icon--after.ui-accordion-header:after, .c-Icon--pictureInPicture.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pictureInPictureAlt.c-Icon--before:before, .ui-accordion .c-Icon--pictureInPictureAlt.ui-accordion-header:before, .c-Icon--pictureInPictureAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pictureInPictureAlt.c-Icon--after:after, .ui-accordion .c-Icon--pictureInPictureAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--pictureInPictureAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pieChart.c-Icon--before:before, .ui-accordion .c-Icon--pieChart.ui-accordion-header:before, .c-Icon--pieChart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pieChart.c-Icon--after:after, .ui-accordion .c-Icon--pieChart.c-Icon--after.ui-accordion-header:after, .c-Icon--pieChart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pieChartOutlined.c-Icon--before:before, .ui-accordion .c-Icon--pieChartOutlined.ui-accordion-header:before, .c-Icon--pieChartOutlined.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pieChartOutlined.c-Icon--after:after, .ui-accordion .c-Icon--pieChartOutlined.c-Icon--after.ui-accordion-header:after, .c-Icon--pieChartOutlined.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pinDrop.c-Icon--before:before, .ui-accordion .c-Icon--pinDrop.ui-accordion-header:before, .c-Icon--pinDrop.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pinDrop.c-Icon--after:after, .ui-accordion .c-Icon--pinDrop.c-Icon--after.ui-accordion-header:after, .c-Icon--pinDrop.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pinterest.c-Icon--before:before, .ui-accordion .c-Icon--pinterest.ui-accordion-header:before, .c-Icon--pinterest.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pinterest.c-Icon--after:after, .ui-accordion .c-Icon--pinterest.c-Icon--after.ui-accordion-header:after, .c-Icon--pinterest.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--playArrow.c-Icon--before:before, .ui-accordion .c-Icon--playArrow.ui-accordion-header:before, .c-Icon--playArrow.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--playArrow.c-Icon--after:after, .ui-accordion .c-Icon--playArrow.c-Icon--after.ui-accordion-header:after, .c-Icon--playArrow.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--playCircleFilled.c-Icon--before:before, .ui-accordion .c-Icon--playCircleFilled.ui-accordion-header:before, .c-Icon--playCircleFilled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--playCircleFilled.c-Icon--after:after, .ui-accordion .c-Icon--playCircleFilled.c-Icon--after.ui-accordion-header:after, .c-Icon--playCircleFilled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--playCircleOutline.c-Icon--before:before, .ui-accordion .c-Icon--playCircleOutline.ui-accordion-header:before, .c-Icon--playCircleOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--playCircleOutline.c-Icon--after:after, .ui-accordion .c-Icon--playCircleOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--playCircleOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--playForWork.c-Icon--before:before, .ui-accordion .c-Icon--playForWork.ui-accordion-header:before, .c-Icon--playForWork.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--playForWork.c-Icon--after:after, .ui-accordion .c-Icon--playForWork.c-Icon--after.ui-accordion-header:after, .c-Icon--playForWork.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--playlistAdd.c-Icon--before:before, .ui-accordion .c-Icon--playlistAdd.ui-accordion-header:before, .c-Icon--playlistAdd.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--playlistAdd.c-Icon--after:after, .ui-accordion .c-Icon--playlistAdd.c-Icon--after.ui-accordion-header:after, .c-Icon--playlistAdd.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--playlistAddCheck.c-Icon--before:before, .ui-accordion .c-Icon--playlistAddCheck.ui-accordion-header:before, .c-Icon--playlistAddCheck.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--playlistAddCheck.c-Icon--after:after, .ui-accordion .c-Icon--playlistAddCheck.c-Icon--after.ui-accordion-header:after, .c-Icon--playlistAddCheck.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--playlistPlay.c-Icon--before:before, .ui-accordion .c-Icon--playlistPlay.ui-accordion-header:before, .c-Icon--playlistPlay.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--playlistPlay.c-Icon--after:after, .ui-accordion .c-Icon--playlistPlay.c-Icon--after.ui-accordion-header:after, .c-Icon--playlistPlay.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--plusOne.c-Icon--before:before, .ui-accordion .c-Icon--plusOne.ui-accordion-header:before, .c-Icon--plusOne.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--plusOne.c-Icon--after:after, .ui-accordion .c-Icon--plusOne.c-Icon--after.ui-accordion-header:after, .c-Icon--plusOne.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--poll.c-Icon--before:before, .ui-accordion .c-Icon--poll.ui-accordion-header:before, .c-Icon--poll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--poll.c-Icon--after:after, .ui-accordion .c-Icon--poll.c-Icon--after.ui-accordion-header:after, .c-Icon--poll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--polymer.c-Icon--before:before, .ui-accordion .c-Icon--polymer.ui-accordion-header:before, .c-Icon--polymer.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--polymer.c-Icon--after:after, .ui-accordion .c-Icon--polymer.c-Icon--after.ui-accordion-header:after, .c-Icon--polymer.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pool.c-Icon--before:before, .ui-accordion .c-Icon--pool.ui-accordion-header:before, .c-Icon--pool.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pool.c-Icon--after:after, .ui-accordion .c-Icon--pool.c-Icon--after.ui-accordion-header:after, .c-Icon--pool.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--portableWifiOff.c-Icon--before:before, .ui-accordion .c-Icon--portableWifiOff.ui-accordion-header:before, .c-Icon--portableWifiOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--portableWifiOff.c-Icon--after:after, .ui-accordion .c-Icon--portableWifiOff.c-Icon--after.ui-accordion-header:after, .c-Icon--portableWifiOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--portrait.c-Icon--before:before, .ui-accordion .c-Icon--portrait.ui-accordion-header:before, .c-Icon--portrait.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--portrait.c-Icon--after:after, .ui-accordion .c-Icon--portrait.c-Icon--after.ui-accordion-header:after, .c-Icon--portrait.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--power.c-Icon--before:before, .ui-accordion .c-Icon--power.ui-accordion-header:before, .c-Icon--power.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--power.c-Icon--after:after, .ui-accordion .c-Icon--power.c-Icon--after.ui-accordion-header:after, .c-Icon--power.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--powerInput.c-Icon--before:before, .ui-accordion .c-Icon--powerInput.ui-accordion-header:before, .c-Icon--powerInput.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--powerInput.c-Icon--after:after, .ui-accordion .c-Icon--powerInput.c-Icon--after.ui-accordion-header:after, .c-Icon--powerInput.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--powerOff.c-Icon--before:before, .ui-accordion .c-Icon--powerOff.ui-accordion-header:before, .c-Icon--powerOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--powerOff.c-Icon--after:after, .ui-accordion .c-Icon--powerOff.c-Icon--after.ui-accordion-header:after, .c-Icon--powerOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--powerSettingsNew.c-Icon--before:before, .ui-accordion .c-Icon--powerSettingsNew.ui-accordion-header:before, .c-Icon--powerSettingsNew.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--powerSettingsNew.c-Icon--after:after, .ui-accordion .c-Icon--powerSettingsNew.c-Icon--after.ui-accordion-header:after, .c-Icon--powerSettingsNew.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--pregnantWoman.c-Icon--before:before, .ui-accordion .c-Icon--pregnantWoman.ui-accordion-header:before, .c-Icon--pregnantWoman.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--pregnantWoman.c-Icon--after:after, .ui-accordion .c-Icon--pregnantWoman.c-Icon--after.ui-accordion-header:after, .c-Icon--pregnantWoman.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--presentToAll.c-Icon--before:before, .ui-accordion .c-Icon--presentToAll.ui-accordion-header:before, .c-Icon--presentToAll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--presentToAll.c-Icon--after:after, .ui-accordion .c-Icon--presentToAll.c-Icon--after.ui-accordion-header:after, .c-Icon--presentToAll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--print.c-Icon--before:before, .ui-accordion .c-Icon--print.ui-accordion-header:before, .c-Icon--print.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--print.c-Icon--after:after, .ui-accordion .c-Icon--print.c-Icon--after.ui-accordion-header:after, .c-Icon--print.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--printDisabled.c-Icon--before:before, .ui-accordion .c-Icon--printDisabled.ui-accordion-header:before, .c-Icon--printDisabled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--printDisabled.c-Icon--after:after, .ui-accordion .c-Icon--printDisabled.c-Icon--after.ui-accordion-header:after, .c-Icon--printDisabled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--priorityHigh.c-Icon--before:before, .ui-accordion .c-Icon--priorityHigh.ui-accordion-header:before, .c-Icon--priorityHigh.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--priorityHigh.c-Icon--after:after, .ui-accordion .c-Icon--priorityHigh.c-Icon--after.ui-accordion-header:after, .c-Icon--priorityHigh.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--public.c-Icon--before:before, .ui-accordion .c-Icon--public.ui-accordion-header:before, .c-Icon--public.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--public.c-Icon--after:after, .ui-accordion .c-Icon--public.c-Icon--after.ui-accordion-header:after, .c-Icon--public.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--publish.c-Icon--before:before, .ui-accordion .c-Icon--publish.ui-accordion-header:before, .c-Icon--publish.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--publish.c-Icon--after:after, .ui-accordion .c-Icon--publish.c-Icon--after.ui-accordion-header:after, .c-Icon--publish.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--schedule.c-Icon--before:before, .ui-accordion .c-Icon--schedule.ui-accordion-header:before, .c-Icon--schedule.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--schedule.c-Icon--after:after, .ui-accordion .c-Icon--schedule.c-Icon--after.ui-accordion-header:after, .c-Icon--schedule.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--questionAnswer.c-Icon--before:before, .ui-accordion .c-Icon--questionAnswer.ui-accordion-header:before, .c-Icon--questionAnswer.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--questionAnswer.c-Icon--after:after, .ui-accordion .c-Icon--questionAnswer.c-Icon--after.ui-accordion-header:after, .c-Icon--questionAnswer.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--queue.c-Icon--before:before, .ui-accordion .c-Icon--queue.ui-accordion-header:before, .c-Icon--queue.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--queue.c-Icon--after:after, .ui-accordion .c-Icon--queue.c-Icon--after.ui-accordion-header:after, .c-Icon--queue.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--queueMusic.c-Icon--before:before, .ui-accordion .c-Icon--queueMusic.ui-accordion-header:before, .c-Icon--queueMusic.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--queueMusic.c-Icon--after:after, .ui-accordion .c-Icon--queueMusic.c-Icon--after.ui-accordion-header:after, .c-Icon--queueMusic.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--queuePlayNext.c-Icon--before:before, .ui-accordion .c-Icon--queuePlayNext.ui-accordion-header:before, .c-Icon--queuePlayNext.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--queuePlayNext.c-Icon--after:after, .ui-accordion .c-Icon--queuePlayNext.c-Icon--after.ui-accordion-header:after, .c-Icon--queuePlayNext.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--radio.c-Icon--before:before, .ui-accordion .c-Icon--radio.ui-accordion-header:before, .c-Icon--radio.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--radio.c-Icon--after:after, .ui-accordion .c-Icon--radio.c-Icon--after.ui-accordion-header:after, .c-Icon--radio.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--radioButtonChecked.c-Icon--before:before, .ui-accordion .c-Icon--radioButtonChecked.ui-accordion-header:before, .c-Icon--radioButtonChecked.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--radioButtonChecked.c-Icon--after:after, .ui-accordion .c-Icon--radioButtonChecked.c-Icon--after.ui-accordion-header:after, .c-Icon--radioButtonChecked.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--radioButtonUnchecked.c-Icon--before:before, .ui-accordion .c-Icon--radioButtonUnchecked.ui-accordion-header:before, .c-Icon--radioButtonUnchecked.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--radioButtonUnchecked.c-Icon--after:after, .ui-accordion .c-Icon--radioButtonUnchecked.c-Icon--after.ui-accordion-header:after, .c-Icon--radioButtonUnchecked.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--rateReview.c-Icon--before:before, .ui-accordion .c-Icon--rateReview.ui-accordion-header:before, .c-Icon--rateReview.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--rateReview.c-Icon--after:after, .ui-accordion .c-Icon--rateReview.c-Icon--after.ui-accordion-header:after, .c-Icon--rateReview.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--receipt.c-Icon--before:before, .ui-accordion .c-Icon--receipt.ui-accordion-header:before, .c-Icon--receipt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--receipt.c-Icon--after:after, .ui-accordion .c-Icon--receipt.c-Icon--after.ui-accordion-header:after, .c-Icon--receipt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--recentActors.c-Icon--before:before, .ui-accordion .c-Icon--recentActors.ui-accordion-header:before, .c-Icon--recentActors.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--recentActors.c-Icon--after:after, .ui-accordion .c-Icon--recentActors.c-Icon--after.ui-accordion-header:after, .c-Icon--recentActors.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--recordVoiceOver.c-Icon--before:before, .ui-accordion .c-Icon--recordVoiceOver.ui-accordion-header:before, .c-Icon--recordVoiceOver.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--recordVoiceOver.c-Icon--after:after, .ui-accordion .c-Icon--recordVoiceOver.c-Icon--after.ui-accordion-header:after, .c-Icon--recordVoiceOver.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--redeem.c-Icon--before:before, .ui-accordion .c-Icon--redeem.ui-accordion-header:before, .c-Icon--redeem.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--redeem.c-Icon--after:after, .ui-accordion .c-Icon--redeem.c-Icon--after.ui-accordion-header:after, .c-Icon--redeem.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--redo.c-Icon--before:before, .ui-accordion .c-Icon--redo.ui-accordion-header:before, .c-Icon--redo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--redo.c-Icon--after:after, .ui-accordion .c-Icon--redo.c-Icon--after.ui-accordion-header:after, .c-Icon--redo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--refresh.c-Icon--before:before, .ui-accordion .c-Icon--refresh.ui-accordion-header:before, .c-Icon--refresh.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--refresh.c-Icon--after:after, .ui-accordion .c-Icon--refresh.c-Icon--after.ui-accordion-header:after, .c-Icon--refresh.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--remove.c-Icon--before:before, .ui-accordion .c-Icon--remove.ui-accordion-header:before, .c-Icon--remove.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--remove.c-Icon--after:after, .ui-accordion .c-Icon--remove.c-Icon--after.ui-accordion-header:after, .c-Icon--remove.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--removeCircle.c-Icon--before:before, .ui-accordion .c-Icon--removeCircle.ui-accordion-header:before, .c-Icon--removeCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--removeCircle.c-Icon--after:after, .ui-accordion .c-Icon--removeCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--removeCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--removeCircleOutline.c-Icon--before:before, .ui-accordion .c-Icon--removeCircleOutline.ui-accordion-header:before, .c-Icon--removeCircleOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--removeCircleOutline.c-Icon--after:after, .ui-accordion .c-Icon--removeCircleOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--removeCircleOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--removeFromQueue.c-Icon--before:before, .ui-accordion .c-Icon--removeFromQueue.ui-accordion-header:before, .c-Icon--removeFromQueue.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--removeFromQueue.c-Icon--after:after, .ui-accordion .c-Icon--removeFromQueue.c-Icon--after.ui-accordion-header:after, .c-Icon--removeFromQueue.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--removeShoppingCart.c-Icon--before:before, .ui-accordion .c-Icon--removeShoppingCart.ui-accordion-header:before, .c-Icon--removeShoppingCart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--removeShoppingCart.c-Icon--after:after, .ui-accordion .c-Icon--removeShoppingCart.c-Icon--after.ui-accordion-header:after, .c-Icon--removeShoppingCart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--reorder.c-Icon--before:before, .ui-accordion .c-Icon--reorder.ui-accordion-header:before, .c-Icon--reorder.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--reorder.c-Icon--after:after, .ui-accordion .c-Icon--reorder.c-Icon--after.ui-accordion-header:after, .c-Icon--reorder.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--repeat.c-Icon--before:before, .ui-accordion .c-Icon--repeat.ui-accordion-header:before, .c-Icon--repeat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--repeat.c-Icon--after:after, .ui-accordion .c-Icon--repeat.c-Icon--after.ui-accordion-header:after, .c-Icon--repeat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--repeatOne.c-Icon--before:before, .ui-accordion .c-Icon--repeatOne.ui-accordion-header:before, .c-Icon--repeatOne.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--repeatOne.c-Icon--after:after, .ui-accordion .c-Icon--repeatOne.c-Icon--after.ui-accordion-header:after, .c-Icon--repeatOne.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--replay.c-Icon--before:before, .ui-accordion .c-Icon--replay.ui-accordion-header:before, .c-Icon--replay.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--replay.c-Icon--after:after, .ui-accordion .c-Icon--replay.c-Icon--after.ui-accordion-header:after, .c-Icon--replay.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--replay10.c-Icon--before:before, .ui-accordion .c-Icon--replay10.ui-accordion-header:before, .c-Icon--replay10.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--replay10.c-Icon--after:after, .ui-accordion .c-Icon--replay10.c-Icon--after.ui-accordion-header:after, .c-Icon--replay10.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--replay30.c-Icon--before:before, .ui-accordion .c-Icon--replay30.ui-accordion-header:before, .c-Icon--replay30.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--replay30.c-Icon--after:after, .ui-accordion .c-Icon--replay30.c-Icon--after.ui-accordion-header:after, .c-Icon--replay30.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--replay5.c-Icon--before:before, .ui-accordion .c-Icon--replay5.ui-accordion-header:before, .c-Icon--replay5.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--replay5.c-Icon--after:after, .ui-accordion .c-Icon--replay5.c-Icon--after.ui-accordion-header:after, .c-Icon--replay5.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--reply.c-Icon--before:before, .ui-accordion .c-Icon--reply.ui-accordion-header:before, .c-Icon--reply.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--reply.c-Icon--after:after, .ui-accordion .c-Icon--reply.c-Icon--after.ui-accordion-header:after, .c-Icon--reply.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--replyAll.c-Icon--before:before, .ui-accordion .c-Icon--replyAll.ui-accordion-header:before, .c-Icon--replyAll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--replyAll.c-Icon--after:after, .ui-accordion .c-Icon--replyAll.c-Icon--after.ui-accordion-header:after, .c-Icon--replyAll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--report.c-Icon--before:before, .ui-accordion .c-Icon--report.ui-accordion-header:before, .c-Icon--report.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--report.c-Icon--after:after, .ui-accordion .c-Icon--report.c-Icon--after.ui-accordion-header:after, .c-Icon--report.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--reportOff.c-Icon--before:before, .ui-accordion .c-Icon--reportOff.ui-accordion-header:before, .c-Icon--reportOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--reportOff.c-Icon--after:after, .ui-accordion .c-Icon--reportOff.c-Icon--after.ui-accordion-header:after, .c-Icon--reportOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--restaurant.c-Icon--before:before, .ui-accordion .c-Icon--restaurant.ui-accordion-header:before, .c-Icon--restaurant.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--restaurant.c-Icon--after:after, .ui-accordion .c-Icon--restaurant.c-Icon--after.ui-accordion-header:after, .c-Icon--restaurant.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--restaurantMenu.c-Icon--before:before, .ui-accordion .c-Icon--restaurantMenu.ui-accordion-header:before, .c-Icon--restaurantMenu.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--restaurantMenu.c-Icon--after:after, .ui-accordion .c-Icon--restaurantMenu.c-Icon--after.ui-accordion-header:after, .c-Icon--restaurantMenu.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--restore.c-Icon--before:before, .ui-accordion .c-Icon--restore.ui-accordion-header:before, .c-Icon--restore.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--restore.c-Icon--after:after, .ui-accordion .c-Icon--restore.c-Icon--after.ui-accordion-header:after, .c-Icon--restore.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--restoreFromTrash.c-Icon--before:before, .ui-accordion .c-Icon--restoreFromTrash.ui-accordion-header:before, .c-Icon--restoreFromTrash.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--restoreFromTrash.c-Icon--after:after, .ui-accordion .c-Icon--restoreFromTrash.c-Icon--after.ui-accordion-header:after, .c-Icon--restoreFromTrash.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--restorePage.c-Icon--before:before, .ui-accordion .c-Icon--restorePage.ui-accordion-header:before, .c-Icon--restorePage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--restorePage.c-Icon--after:after, .ui-accordion .c-Icon--restorePage.c-Icon--after.ui-accordion-header:after, .c-Icon--restorePage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--ringVolume.c-Icon--before:before, .ui-accordion .c-Icon--ringVolume.ui-accordion-header:before, .c-Icon--ringVolume.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--ringVolume.c-Icon--after:after, .ui-accordion .c-Icon--ringVolume.c-Icon--after.ui-accordion-header:after, .c-Icon--ringVolume.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--room.c-Icon--before:before, .ui-accordion .c-Icon--room.ui-accordion-header:before, .c-Icon--room.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--room.c-Icon--after:after, .ui-accordion .c-Icon--room.c-Icon--after.ui-accordion-header:after, .c-Icon--room.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--roomService.c-Icon--before:before, .ui-accordion .c-Icon--roomService.ui-accordion-header:before, .c-Icon--roomService.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--roomService.c-Icon--after:after, .ui-accordion .c-Icon--roomService.c-Icon--after.ui-accordion-header:after, .c-Icon--roomService.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--rotate90DegreesCcw.c-Icon--before:before, .ui-accordion .c-Icon--rotate90DegreesCcw.ui-accordion-header:before, .c-Icon--rotate90DegreesCcw.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--rotate90DegreesCcw.c-Icon--after:after, .ui-accordion .c-Icon--rotate90DegreesCcw.c-Icon--after.ui-accordion-header:after, .c-Icon--rotate90DegreesCcw.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--rotateLeft.c-Icon--before:before, .ui-accordion .c-Icon--rotateLeft.ui-accordion-header:before, .c-Icon--rotateLeft.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--rotateLeft.c-Icon--after:after, .ui-accordion .c-Icon--rotateLeft.c-Icon--after.ui-accordion-header:after, .c-Icon--rotateLeft.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--rotateRight.c-Icon--before:before, .ui-accordion .c-Icon--rotateRight.ui-accordion-header:before, .c-Icon--rotateRight.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--rotateRight.c-Icon--after:after, .ui-accordion .c-Icon--rotateRight.c-Icon--after.ui-accordion-header:after, .c-Icon--rotateRight.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--roundedCorner.c-Icon--before:before, .ui-accordion .c-Icon--roundedCorner.ui-accordion-header:before, .c-Icon--roundedCorner.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--roundedCorner.c-Icon--after:after, .ui-accordion .c-Icon--roundedCorner.c-Icon--after.ui-accordion-header:after, .c-Icon--roundedCorner.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--router.c-Icon--before:before, .ui-accordion .c-Icon--router.ui-accordion-header:before, .c-Icon--router.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--router.c-Icon--after:after, .ui-accordion .c-Icon--router.c-Icon--after.ui-accordion-header:after, .c-Icon--router.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--rowing.c-Icon--before:before, .ui-accordion .c-Icon--rowing.ui-accordion-header:before, .c-Icon--rowing.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--rowing.c-Icon--after:after, .ui-accordion .c-Icon--rowing.c-Icon--after.ui-accordion-header:after, .c-Icon--rowing.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--rssFeed.c-Icon--before:before, .ui-accordion .c-Icon--rssFeed.ui-accordion-header:before, .c-Icon--rssFeed.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--rssFeed.c-Icon--after:after, .ui-accordion .c-Icon--rssFeed.c-Icon--after.ui-accordion-header:after, .c-Icon--rssFeed.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--rvHookup.c-Icon--before:before, .ui-accordion .c-Icon--rvHookup.ui-accordion-header:before, .c-Icon--rvHookup.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--rvHookup.c-Icon--after:after, .ui-accordion .c-Icon--rvHookup.c-Icon--after.ui-accordion-header:after, .c-Icon--rvHookup.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--satellite.c-Icon--before:before, .ui-accordion .c-Icon--satellite.ui-accordion-header:before, .c-Icon--satellite.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--satellite.c-Icon--after:after, .ui-accordion .c-Icon--satellite.c-Icon--after.ui-accordion-header:after, .c-Icon--satellite.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--save.c-Icon--before:before, .ui-accordion .c-Icon--save.ui-accordion-header:before, .c-Icon--save.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--save.c-Icon--after:after, .ui-accordion .c-Icon--save.c-Icon--after.ui-accordion-header:after, .c-Icon--save.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--saveAlt.c-Icon--before:before, .ui-accordion .c-Icon--saveAlt.ui-accordion-header:before, .c-Icon--saveAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--saveAlt.c-Icon--after:after, .ui-accordion .c-Icon--saveAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--saveAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--scanner.c-Icon--before:before, .ui-accordion .c-Icon--scanner.ui-accordion-header:before, .c-Icon--scanner.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--scanner.c-Icon--after:after, .ui-accordion .c-Icon--scanner.c-Icon--after.ui-accordion-header:after, .c-Icon--scanner.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--scatterPlot.c-Icon--before:before, .ui-accordion .c-Icon--scatterPlot.ui-accordion-header:before, .c-Icon--scatterPlot.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--scatterPlot.c-Icon--after:after, .ui-accordion .c-Icon--scatterPlot.c-Icon--after.ui-accordion-header:after, .c-Icon--scatterPlot.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--school.c-Icon--before:before, .ui-accordion .c-Icon--school.ui-accordion-header:before, .c-Icon--school.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--school.c-Icon--after:after, .ui-accordion .c-Icon--school.c-Icon--after.ui-accordion-header:after, .c-Icon--school.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--score.c-Icon--before:before, .ui-accordion .c-Icon--score.ui-accordion-header:before, .c-Icon--score.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--score.c-Icon--after:after, .ui-accordion .c-Icon--score.c-Icon--after.ui-accordion-header:after, .c-Icon--score.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--screenLockLandscape.c-Icon--before:before, .ui-accordion .c-Icon--screenLockLandscape.ui-accordion-header:before, .c-Icon--screenLockLandscape.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--screenLockLandscape.c-Icon--after:after, .ui-accordion .c-Icon--screenLockLandscape.c-Icon--after.ui-accordion-header:after, .c-Icon--screenLockLandscape.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--screenLockPortrait.c-Icon--before:before, .ui-accordion .c-Icon--screenLockPortrait.ui-accordion-header:before, .c-Icon--screenLockPortrait.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--screenLockPortrait.c-Icon--after:after, .ui-accordion .c-Icon--screenLockPortrait.c-Icon--after.ui-accordion-header:after, .c-Icon--screenLockPortrait.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--screenLockRotation.c-Icon--before:before, .ui-accordion .c-Icon--screenLockRotation.ui-accordion-header:before, .c-Icon--screenLockRotation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--screenLockRotation.c-Icon--after:after, .ui-accordion .c-Icon--screenLockRotation.c-Icon--after.ui-accordion-header:after, .c-Icon--screenLockRotation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--screenRotation.c-Icon--before:before, .ui-accordion .c-Icon--screenRotation.ui-accordion-header:before, .c-Icon--screenRotation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--screenRotation.c-Icon--after:after, .ui-accordion .c-Icon--screenRotation.c-Icon--after.ui-accordion-header:after, .c-Icon--screenRotation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--screenShare.c-Icon--before:before, .ui-accordion .c-Icon--screenShare.ui-accordion-header:before, .c-Icon--screenShare.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--screenShare.c-Icon--after:after, .ui-accordion .c-Icon--screenShare.c-Icon--after.ui-accordion-header:after, .c-Icon--screenShare.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sdStorage.c-Icon--before:before, .ui-accordion .c-Icon--sdStorage.ui-accordion-header:before, .c-Icon--sdStorage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sdStorage.c-Icon--after:after, .ui-accordion .c-Icon--sdStorage.c-Icon--after.ui-accordion-header:after, .c-Icon--sdStorage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--search.c-Icon--before:before, .ui-accordion .c-Icon--search.ui-accordion-header:before, .c-Icon--search.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--search.c-Icon--after:after, .ui-accordion .c-Icon--search.c-Icon--after.ui-accordion-header:after, .c-Icon--search.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--security.c-Icon--before:before, .ui-accordion .c-Icon--security.ui-accordion-header:before, .c-Icon--security.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--security.c-Icon--after:after, .ui-accordion .c-Icon--security.c-Icon--after.ui-accordion-header:after, .c-Icon--security.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--selectAll.c-Icon--before:before, .ui-accordion .c-Icon--selectAll.ui-accordion-header:before, .c-Icon--selectAll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--selectAll.c-Icon--after:after, .ui-accordion .c-Icon--selectAll.c-Icon--after.ui-accordion-header:after, .c-Icon--selectAll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--send.c-Icon--before:before, .ui-accordion .c-Icon--send.ui-accordion-header:before, .c-Icon--send.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--send.c-Icon--after:after, .ui-accordion .c-Icon--send.c-Icon--after.ui-accordion-header:after, .c-Icon--send.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sentimentDissatisfied.c-Icon--before:before, .ui-accordion .c-Icon--sentimentDissatisfied.ui-accordion-header:before, .c-Icon--sentimentDissatisfied.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sentimentDissatisfied.c-Icon--after:after, .ui-accordion .c-Icon--sentimentDissatisfied.c-Icon--after.ui-accordion-header:after, .c-Icon--sentimentDissatisfied.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sentimentNeutral.c-Icon--before:before, .ui-accordion .c-Icon--sentimentNeutral.ui-accordion-header:before, .c-Icon--sentimentNeutral.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sentimentNeutral.c-Icon--after:after, .ui-accordion .c-Icon--sentimentNeutral.c-Icon--after.ui-accordion-header:after, .c-Icon--sentimentNeutral.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sentimentSatisfied.c-Icon--before:before, .ui-accordion .c-Icon--sentimentSatisfied.ui-accordion-header:before, .c-Icon--sentimentSatisfied.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sentimentSatisfied.c-Icon--after:after, .ui-accordion .c-Icon--sentimentSatisfied.c-Icon--after.ui-accordion-header:after, .c-Icon--sentimentSatisfied.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sentimentSatisfiedAlt.c-Icon--before:before, .ui-accordion .c-Icon--sentimentSatisfiedAlt.ui-accordion-header:before, .c-Icon--sentimentSatisfiedAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sentimentSatisfiedAlt.c-Icon--after:after, .ui-accordion .c-Icon--sentimentSatisfiedAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--sentimentSatisfiedAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sentimentVeryDissatisfied.c-Icon--before:before, .ui-accordion .c-Icon--sentimentVeryDissatisfied.ui-accordion-header:before, .c-Icon--sentimentVeryDissatisfied.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sentimentVeryDissatisfied.c-Icon--after:after, .ui-accordion .c-Icon--sentimentVeryDissatisfied.c-Icon--after.ui-accordion-header:after, .c-Icon--sentimentVeryDissatisfied.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sentimentVerySatisfied.c-Icon--before:before, .ui-accordion .c-Icon--sentimentVerySatisfied.ui-accordion-header:before, .c-Icon--sentimentVerySatisfied.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sentimentVerySatisfied.c-Icon--after:after, .ui-accordion .c-Icon--sentimentVerySatisfied.c-Icon--after.ui-accordion-header:after, .c-Icon--sentimentVerySatisfied.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settings.c-Icon--before:before, .ui-accordion .c-Icon--settings.ui-accordion-header:before, .c-Icon--settings.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settings.c-Icon--after:after, .ui-accordion .c-Icon--settings.c-Icon--after.ui-accordion-header:after, .c-Icon--settings.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsApplications.c-Icon--before:before, .ui-accordion .c-Icon--settingsApplications.ui-accordion-header:before, .c-Icon--settingsApplications.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsApplications.c-Icon--after:after, .ui-accordion .c-Icon--settingsApplications.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsApplications.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsBackupRestore.c-Icon--before:before, .ui-accordion .c-Icon--settingsBackupRestore.ui-accordion-header:before, .c-Icon--settingsBackupRestore.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsBackupRestore.c-Icon--after:after, .ui-accordion .c-Icon--settingsBackupRestore.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsBackupRestore.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsBluetooth.c-Icon--before:before, .ui-accordion .c-Icon--settingsBluetooth.ui-accordion-header:before, .c-Icon--settingsBluetooth.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsBluetooth.c-Icon--after:after, .ui-accordion .c-Icon--settingsBluetooth.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsBluetooth.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsBrightness.c-Icon--before:before, .ui-accordion .c-Icon--settingsBrightness.ui-accordion-header:before, .c-Icon--settingsBrightness.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsBrightness.c-Icon--after:after, .ui-accordion .c-Icon--settingsBrightness.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsBrightness.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsCell.c-Icon--before:before, .ui-accordion .c-Icon--settingsCell.ui-accordion-header:before, .c-Icon--settingsCell.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsCell.c-Icon--after:after, .ui-accordion .c-Icon--settingsCell.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsCell.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsEthernet.c-Icon--before:before, .ui-accordion .c-Icon--settingsEthernet.ui-accordion-header:before, .c-Icon--settingsEthernet.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsEthernet.c-Icon--after:after, .ui-accordion .c-Icon--settingsEthernet.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsEthernet.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsInputAntenna.c-Icon--before:before, .ui-accordion .c-Icon--settingsInputAntenna.ui-accordion-header:before, .c-Icon--settingsInputAntenna.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsInputAntenna.c-Icon--after:after, .ui-accordion .c-Icon--settingsInputAntenna.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsInputAntenna.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsInputComposite.c-Icon--before:before, .ui-accordion .c-Icon--settingsInputComposite.ui-accordion-header:before, .c-Icon--settingsInputComposite.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsInputComposite.c-Icon--after:after, .ui-accordion .c-Icon--settingsInputComposite.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsInputComposite.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsInputHdmi.c-Icon--before:before, .ui-accordion .c-Icon--settingsInputHdmi.ui-accordion-header:before, .c-Icon--settingsInputHdmi.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsInputHdmi.c-Icon--after:after, .ui-accordion .c-Icon--settingsInputHdmi.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsInputHdmi.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsInputSvideo.c-Icon--before:before, .ui-accordion .c-Icon--settingsInputSvideo.ui-accordion-header:before, .c-Icon--settingsInputSvideo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsInputSvideo.c-Icon--after:after, .ui-accordion .c-Icon--settingsInputSvideo.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsInputSvideo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsOverscan.c-Icon--before:before, .ui-accordion .c-Icon--settingsOverscan.ui-accordion-header:before, .c-Icon--settingsOverscan.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsOverscan.c-Icon--after:after, .ui-accordion .c-Icon--settingsOverscan.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsOverscan.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsPhone.c-Icon--before:before, .ui-accordion .c-Icon--settingsPhone.ui-accordion-header:before, .c-Icon--settingsPhone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsPhone.c-Icon--after:after, .ui-accordion .c-Icon--settingsPhone.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsPhone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsPower.c-Icon--before:before, .ui-accordion .c-Icon--settingsPower.ui-accordion-header:before, .c-Icon--settingsPower.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsPower.c-Icon--after:after, .ui-accordion .c-Icon--settingsPower.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsPower.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsRemote.c-Icon--before:before, .ui-accordion .c-Icon--settingsRemote.ui-accordion-header:before, .c-Icon--settingsRemote.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsRemote.c-Icon--after:after, .ui-accordion .c-Icon--settingsRemote.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsRemote.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsSystemDaydream.c-Icon--before:before, .ui-accordion .c-Icon--settingsSystemDaydream.ui-accordion-header:before, .c-Icon--settingsSystemDaydream.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsSystemDaydream.c-Icon--after:after, .ui-accordion .c-Icon--settingsSystemDaydream.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsSystemDaydream.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--settingsVoice.c-Icon--before:before, .ui-accordion .c-Icon--settingsVoice.ui-accordion-header:before, .c-Icon--settingsVoice.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--settingsVoice.c-Icon--after:after, .ui-accordion .c-Icon--settingsVoice.c-Icon--after.ui-accordion-header:after, .c-Icon--settingsVoice.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--share.c-Icon--before:before, .ui-accordion .c-Icon--share.ui-accordion-header:before, .c-Icon--share.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--share.c-Icon--after:after, .ui-accordion .c-Icon--share.c-Icon--after.ui-accordion-header:after, .c-Icon--share.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--shareAlt.c-Icon--before:before, .ui-accordion .c-Icon--shareAlt.ui-accordion-header:before, .c-Icon--shareAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--shareAlt.c-Icon--after:after, .ui-accordion .c-Icon--shareAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--shareAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--shop.c-Icon--before:before, .ui-accordion .c-Icon--shop.ui-accordion-header:before, .c-Icon--shop.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--shop.c-Icon--after:after, .ui-accordion .c-Icon--shop.c-Icon--after.ui-accordion-header:after, .c-Icon--shop.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--shopTwo.c-Icon--before:before, .ui-accordion .c-Icon--shopTwo.ui-accordion-header:before, .c-Icon--shopTwo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--shopTwo.c-Icon--after:after, .ui-accordion .c-Icon--shopTwo.c-Icon--after.ui-accordion-header:after, .c-Icon--shopTwo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--shoppingBasket.c-Icon--before:before, .ui-accordion .c-Icon--shoppingBasket.ui-accordion-header:before, .c-Icon--shoppingBasket.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--shoppingBasket.c-Icon--after:after, .ui-accordion .c-Icon--shoppingBasket.c-Icon--after.ui-accordion-header:after, .c-Icon--shoppingBasket.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--shoppingCart.c-Icon--before:before, .ui-accordion .c-Icon--shoppingCart.ui-accordion-header:before, .c-Icon--shoppingCart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--shoppingCart.c-Icon--after:after, .ui-accordion .c-Icon--shoppingCart.c-Icon--after.ui-accordion-header:after, .c-Icon--shoppingCart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--shortText.c-Icon--before:before, .ui-accordion .c-Icon--shortText.ui-accordion-header:before, .c-Icon--shortText.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--shortText.c-Icon--after:after, .ui-accordion .c-Icon--shortText.c-Icon--after.ui-accordion-header:after, .c-Icon--shortText.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--showChart.c-Icon--before:before, .ui-accordion .c-Icon--showChart.ui-accordion-header:before, .c-Icon--showChart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--showChart.c-Icon--after:after, .ui-accordion .c-Icon--showChart.c-Icon--after.ui-accordion-header:after, .c-Icon--showChart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--shuffle.c-Icon--before:before, .ui-accordion .c-Icon--shuffle.ui-accordion-header:before, .c-Icon--shuffle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--shuffle.c-Icon--after:after, .ui-accordion .c-Icon--shuffle.c-Icon--after.ui-accordion-header:after, .c-Icon--shuffle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--shutterSpeed.c-Icon--before:before, .ui-accordion .c-Icon--shutterSpeed.ui-accordion-header:before, .c-Icon--shutterSpeed.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--shutterSpeed.c-Icon--after:after, .ui-accordion .c-Icon--shutterSpeed.c-Icon--after.ui-accordion-header:after, .c-Icon--shutterSpeed.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--signalCellular4Bar.c-Icon--before:before, .ui-accordion .c-Icon--signalCellular4Bar.ui-accordion-header:before, .c-Icon--signalCellular4Bar.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--signalCellular4Bar.c-Icon--after:after, .ui-accordion .c-Icon--signalCellular4Bar.c-Icon--after.ui-accordion-header:after, .c-Icon--signalCellular4Bar.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--signalCellularConnectedNoInternet4Bar.c-Icon--before:before, .ui-accordion .c-Icon--signalCellularConnectedNoInternet4Bar.ui-accordion-header:before, .c-Icon--signalCellularConnectedNoInternet4Bar.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--signalCellularConnectedNoInternet4Bar.c-Icon--after:after, .ui-accordion .c-Icon--signalCellularConnectedNoInternet4Bar.c-Icon--after.ui-accordion-header:after, .c-Icon--signalCellularConnectedNoInternet4Bar.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--signalCellularNoSim.c-Icon--before:before, .ui-accordion .c-Icon--signalCellularNoSim.ui-accordion-header:before, .c-Icon--signalCellularNoSim.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--signalCellularNoSim.c-Icon--after:after, .ui-accordion .c-Icon--signalCellularNoSim.c-Icon--after.ui-accordion-header:after, .c-Icon--signalCellularNoSim.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--signalCellularNull.c-Icon--before:before, .ui-accordion .c-Icon--signalCellularNull.ui-accordion-header:before, .c-Icon--signalCellularNull.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--signalCellularNull.c-Icon--after:after, .ui-accordion .c-Icon--signalCellularNull.c-Icon--after.ui-accordion-header:after, .c-Icon--signalCellularNull.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--signalCellularOff.c-Icon--before:before, .ui-accordion .c-Icon--signalCellularOff.ui-accordion-header:before, .c-Icon--signalCellularOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--signalCellularOff.c-Icon--after:after, .ui-accordion .c-Icon--signalCellularOff.c-Icon--after.ui-accordion-header:after, .c-Icon--signalCellularOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--signalWifi4Bar.c-Icon--before:before, .ui-accordion .c-Icon--signalWifi4Bar.ui-accordion-header:before, .c-Icon--signalWifi4Bar.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--signalWifi4Bar.c-Icon--after:after, .ui-accordion .c-Icon--signalWifi4Bar.c-Icon--after.ui-accordion-header:after, .c-Icon--signalWifi4Bar.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--signalWifi4BarLock.c-Icon--before:before, .ui-accordion .c-Icon--signalWifi4BarLock.ui-accordion-header:before, .c-Icon--signalWifi4BarLock.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--signalWifi4BarLock.c-Icon--after:after, .ui-accordion .c-Icon--signalWifi4BarLock.c-Icon--after.ui-accordion-header:after, .c-Icon--signalWifi4BarLock.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--signalWifiOff.c-Icon--before:before, .ui-accordion .c-Icon--signalWifiOff.ui-accordion-header:before, .c-Icon--signalWifiOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--signalWifiOff.c-Icon--after:after, .ui-accordion .c-Icon--signalWifiOff.c-Icon--after.ui-accordion-header:after, .c-Icon--signalWifiOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--simCard.c-Icon--before:before, .ui-accordion .c-Icon--simCard.ui-accordion-header:before, .c-Icon--simCard.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--simCard.c-Icon--after:after, .ui-accordion .c-Icon--simCard.c-Icon--after.ui-accordion-header:after, .c-Icon--simCard.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--simCardAlert.c-Icon--before:before, .ui-accordion .c-Icon--simCardAlert.ui-accordion-header:before, .c-Icon--simCardAlert.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--simCardAlert.c-Icon--after:after, .ui-accordion .c-Icon--simCardAlert.c-Icon--after.ui-accordion-header:after, .c-Icon--simCardAlert.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--skipNext.c-Icon--before:before, .ui-accordion .c-Icon--skipNext.ui-accordion-header:before, .c-Icon--skipNext.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--skipNext.c-Icon--after:after, .ui-accordion .c-Icon--skipNext.c-Icon--after.ui-accordion-header:after, .c-Icon--skipNext.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--skipPrevious.c-Icon--before:before, .ui-accordion .c-Icon--skipPrevious.ui-accordion-header:before, .c-Icon--skipPrevious.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--skipPrevious.c-Icon--after:after, .ui-accordion .c-Icon--skipPrevious.c-Icon--after.ui-accordion-header:after, .c-Icon--skipPrevious.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--slideshow.c-Icon--before:before, .ui-accordion .c-Icon--slideshow.ui-accordion-header:before, .c-Icon--slideshow.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--slideshow.c-Icon--after:after, .ui-accordion .c-Icon--slideshow.c-Icon--after.ui-accordion-header:after, .c-Icon--slideshow.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--slowMotionVideo.c-Icon--before:before, .ui-accordion .c-Icon--slowMotionVideo.ui-accordion-header:before, .c-Icon--slowMotionVideo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--slowMotionVideo.c-Icon--after:after, .ui-accordion .c-Icon--slowMotionVideo.c-Icon--after.ui-accordion-header:after, .c-Icon--slowMotionVideo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--smokeFree.c-Icon--before:before, .ui-accordion .c-Icon--smokeFree.ui-accordion-header:before, .c-Icon--smokeFree.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--smokeFree.c-Icon--after:after, .ui-accordion .c-Icon--smokeFree.c-Icon--after.ui-accordion-header:after, .c-Icon--smokeFree.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--smokingRooms.c-Icon--before:before, .ui-accordion .c-Icon--smokingRooms.ui-accordion-header:before, .c-Icon--smokingRooms.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--smokingRooms.c-Icon--after:after, .ui-accordion .c-Icon--smokingRooms.c-Icon--after.ui-accordion-header:after, .c-Icon--smokingRooms.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--smsFailed.c-Icon--before:before, .ui-accordion .c-Icon--smsFailed.ui-accordion-header:before, .c-Icon--smsFailed.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--smsFailed.c-Icon--after:after, .ui-accordion .c-Icon--smsFailed.c-Icon--after.ui-accordion-header:after, .c-Icon--smsFailed.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--snooze.c-Icon--before:before, .ui-accordion .c-Icon--snooze.ui-accordion-header:before, .c-Icon--snooze.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--snooze.c-Icon--after:after, .ui-accordion .c-Icon--snooze.c-Icon--after.ui-accordion-header:after, .c-Icon--snooze.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sort.c-Icon--before:before, .ui-accordion .c-Icon--sort.ui-accordion-header:before, .c-Icon--sort.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sort.c-Icon--after:after, .ui-accordion .c-Icon--sort.c-Icon--after.ui-accordion-header:after, .c-Icon--sort.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sortByAlpha.c-Icon--before:before, .ui-accordion .c-Icon--sortByAlpha.ui-accordion-header:before, .c-Icon--sortByAlpha.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sortByAlpha.c-Icon--after:after, .ui-accordion .c-Icon--sortByAlpha.c-Icon--after.ui-accordion-header:after, .c-Icon--sortByAlpha.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--spa.c-Icon--before:before, .ui-accordion .c-Icon--spa.ui-accordion-header:before, .c-Icon--spa.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--spa.c-Icon--after:after, .ui-accordion .c-Icon--spa.c-Icon--after.ui-accordion-header:after, .c-Icon--spa.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--spaceBar.c-Icon--before:before, .ui-accordion .c-Icon--spaceBar.ui-accordion-header:before, .c-Icon--spaceBar.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--spaceBar.c-Icon--after:after, .ui-accordion .c-Icon--spaceBar.c-Icon--after.ui-accordion-header:after, .c-Icon--spaceBar.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--speaker.c-Icon--before:before, .ui-accordion .c-Icon--speaker.ui-accordion-header:before, .c-Icon--speaker.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--speaker.c-Icon--after:after, .ui-accordion .c-Icon--speaker.c-Icon--after.ui-accordion-header:after, .c-Icon--speaker.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--speakerGroup.c-Icon--before:before, .ui-accordion .c-Icon--speakerGroup.ui-accordion-header:before, .c-Icon--speakerGroup.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--speakerGroup.c-Icon--after:after, .ui-accordion .c-Icon--speakerGroup.c-Icon--after.ui-accordion-header:after, .c-Icon--speakerGroup.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--speakerNotes.c-Icon--before:before, .ui-accordion .c-Icon--speakerNotes.ui-accordion-header:before, .c-Icon--speakerNotes.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--speakerNotes.c-Icon--after:after, .ui-accordion .c-Icon--speakerNotes.c-Icon--after.ui-accordion-header:after, .c-Icon--speakerNotes.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--speakerNotesOff.c-Icon--before:before, .ui-accordion .c-Icon--speakerNotesOff.ui-accordion-header:before, .c-Icon--speakerNotesOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--speakerNotesOff.c-Icon--after:after, .ui-accordion .c-Icon--speakerNotesOff.c-Icon--after.ui-accordion-header:after, .c-Icon--speakerNotesOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--speakerPhone.c-Icon--before:before, .ui-accordion .c-Icon--speakerPhone.ui-accordion-header:before, .c-Icon--speakerPhone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--speakerPhone.c-Icon--after:after, .ui-accordion .c-Icon--speakerPhone.c-Icon--after.ui-accordion-header:after, .c-Icon--speakerPhone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--spellcheck.c-Icon--before:before, .ui-accordion .c-Icon--spellcheck.ui-accordion-header:before, .c-Icon--spellcheck.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--spellcheck.c-Icon--after:after, .ui-accordion .c-Icon--spellcheck.c-Icon--after.ui-accordion-header:after, .c-Icon--spellcheck.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--star.c-Icon--before:before, .ui-accordion .c-Icon--star.ui-accordion-header:before, .c-Icon--star.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--star.c-Icon--after:after, .ui-accordion .c-Icon--star.c-Icon--after.ui-accordion-header:after, .c-Icon--star.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--starBorder.c-Icon--before:before, .ui-accordion .c-Icon--starBorder.ui-accordion-header:before, .c-Icon--starBorder.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--starBorder.c-Icon--after:after, .ui-accordion .c-Icon--starBorder.c-Icon--after.ui-accordion-header:after, .c-Icon--starBorder.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--starHalf.c-Icon--before:before, .ui-accordion .c-Icon--starHalf.ui-accordion-header:before, .c-Icon--starHalf.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--starHalf.c-Icon--after:after, .ui-accordion .c-Icon--starHalf.c-Icon--after.ui-accordion-header:after, .c-Icon--starHalf.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--stars.c-Icon--before:before, .ui-accordion .c-Icon--stars.ui-accordion-header:before, .c-Icon--stars.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--stars.c-Icon--after:after, .ui-accordion .c-Icon--stars.c-Icon--after.ui-accordion-header:after, .c-Icon--stars.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--stayPrimaryLandscape.c-Icon--before:before, .ui-accordion .c-Icon--stayPrimaryLandscape.ui-accordion-header:before, .c-Icon--stayPrimaryLandscape.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--stayPrimaryLandscape.c-Icon--after:after, .ui-accordion .c-Icon--stayPrimaryLandscape.c-Icon--after.ui-accordion-header:after, .c-Icon--stayPrimaryLandscape.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--stayPrimaryPortrait.c-Icon--before:before, .ui-accordion .c-Icon--stayPrimaryPortrait.ui-accordion-header:before, .c-Icon--stayPrimaryPortrait.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--stayPrimaryPortrait.c-Icon--after:after, .ui-accordion .c-Icon--stayPrimaryPortrait.c-Icon--after.ui-accordion-header:after, .c-Icon--stayPrimaryPortrait.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--stop.c-Icon--before:before, .ui-accordion .c-Icon--stop.ui-accordion-header:before, .c-Icon--stop.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--stop.c-Icon--after:after, .ui-accordion .c-Icon--stop.c-Icon--after.ui-accordion-header:after, .c-Icon--stop.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--stopScreenShare.c-Icon--before:before, .ui-accordion .c-Icon--stopScreenShare.ui-accordion-header:before, .c-Icon--stopScreenShare.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--stopScreenShare.c-Icon--after:after, .ui-accordion .c-Icon--stopScreenShare.c-Icon--after.ui-accordion-header:after, .c-Icon--stopScreenShare.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--storage.c-Icon--before:before, .ui-accordion .c-Icon--storage.ui-accordion-header:before, .c-Icon--storage.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--storage.c-Icon--after:after, .ui-accordion .c-Icon--storage.c-Icon--after.ui-accordion-header:after, .c-Icon--storage.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--storeMallDirectory.c-Icon--before:before, .ui-accordion .c-Icon--storeMallDirectory.ui-accordion-header:before, .c-Icon--storeMallDirectory.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--storeMallDirectory.c-Icon--after:after, .ui-accordion .c-Icon--storeMallDirectory.c-Icon--after.ui-accordion-header:after, .c-Icon--storeMallDirectory.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--straighten.c-Icon--before:before, .ui-accordion .c-Icon--straighten.ui-accordion-header:before, .c-Icon--straighten.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--straighten.c-Icon--after:after, .ui-accordion .c-Icon--straighten.c-Icon--after.ui-accordion-header:after, .c-Icon--straighten.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--streetview.c-Icon--before:before, .ui-accordion .c-Icon--streetview.ui-accordion-header:before, .c-Icon--streetview.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--streetview.c-Icon--after:after, .ui-accordion .c-Icon--streetview.c-Icon--after.ui-accordion-header:after, .c-Icon--streetview.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--strikethroughS.c-Icon--before:before, .ui-accordion .c-Icon--strikethroughS.ui-accordion-header:before, .c-Icon--strikethroughS.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--strikethroughS.c-Icon--after:after, .ui-accordion .c-Icon--strikethroughS.c-Icon--after.ui-accordion-header:after, .c-Icon--strikethroughS.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--style.c-Icon--before:before, .ui-accordion .c-Icon--style.ui-accordion-header:before, .c-Icon--style.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--style.c-Icon--after:after, .ui-accordion .c-Icon--style.c-Icon--after.ui-accordion-header:after, .c-Icon--style.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--subdirectoryArrowLeft.c-Icon--before:before, .ui-accordion .c-Icon--subdirectoryArrowLeft.ui-accordion-header:before, .c-Icon--subdirectoryArrowLeft.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--subdirectoryArrowLeft.c-Icon--after:after, .ui-accordion .c-Icon--subdirectoryArrowLeft.c-Icon--after.ui-accordion-header:after, .c-Icon--subdirectoryArrowLeft.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--subdirectoryArrowRight.c-Icon--before:before, .ui-accordion .c-Icon--subdirectoryArrowRight.ui-accordion-header:before, .c-Icon--subdirectoryArrowRight.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--subdirectoryArrowRight.c-Icon--after:after, .ui-accordion .c-Icon--subdirectoryArrowRight.c-Icon--after.ui-accordion-header:after, .c-Icon--subdirectoryArrowRight.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--subject.c-Icon--before:before, .ui-accordion .c-Icon--subject.ui-accordion-header:before, .c-Icon--subject.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--subject.c-Icon--after:after, .ui-accordion .c-Icon--subject.c-Icon--after.ui-accordion-header:after, .c-Icon--subject.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--subscriptions.c-Icon--before:before, .ui-accordion .c-Icon--subscriptions.ui-accordion-header:before, .c-Icon--subscriptions.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--subscriptions.c-Icon--after:after, .ui-accordion .c-Icon--subscriptions.c-Icon--after.ui-accordion-header:after, .c-Icon--subscriptions.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--subtitles.c-Icon--before:before, .ui-accordion .c-Icon--subtitles.ui-accordion-header:before, .c-Icon--subtitles.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--subtitles.c-Icon--after:after, .ui-accordion .c-Icon--subtitles.c-Icon--after.ui-accordion-header:after, .c-Icon--subtitles.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--subway.c-Icon--before:before, .ui-accordion .c-Icon--subway.ui-accordion-header:before, .c-Icon--subway.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--subway.c-Icon--after:after, .ui-accordion .c-Icon--subway.c-Icon--after.ui-accordion-header:after, .c-Icon--subway.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--supervisedUserCircle.c-Icon--before:before, .ui-accordion .c-Icon--supervisedUserCircle.ui-accordion-header:before, .c-Icon--supervisedUserCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--supervisedUserCircle.c-Icon--after:after, .ui-accordion .c-Icon--supervisedUserCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--supervisedUserCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--supervisorAccount.c-Icon--before:before, .ui-accordion .c-Icon--supervisorAccount.ui-accordion-header:before, .c-Icon--supervisorAccount.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--supervisorAccount.c-Icon--after:after, .ui-accordion .c-Icon--supervisorAccount.c-Icon--after.ui-accordion-header:after, .c-Icon--supervisorAccount.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--surroundSound.c-Icon--before:before, .ui-accordion .c-Icon--surroundSound.ui-accordion-header:before, .c-Icon--surroundSound.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--surroundSound.c-Icon--after:after, .ui-accordion .c-Icon--surroundSound.c-Icon--after.ui-accordion-header:after, .c-Icon--surroundSound.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--swapCalls.c-Icon--before:before, .ui-accordion .c-Icon--swapCalls.ui-accordion-header:before, .c-Icon--swapCalls.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--swapCalls.c-Icon--after:after, .ui-accordion .c-Icon--swapCalls.c-Icon--after.ui-accordion-header:after, .c-Icon--swapCalls.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--swapHoriz.c-Icon--before:before, .ui-accordion .c-Icon--swapHoriz.ui-accordion-header:before, .c-Icon--swapHoriz.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--swapHoriz.c-Icon--after:after, .ui-accordion .c-Icon--swapHoriz.c-Icon--after.ui-accordion-header:after, .c-Icon--swapHoriz.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--swapHorizontalCircle.c-Icon--before:before, .ui-accordion .c-Icon--swapHorizontalCircle.ui-accordion-header:before, .c-Icon--swapHorizontalCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--swapHorizontalCircle.c-Icon--after:after, .ui-accordion .c-Icon--swapHorizontalCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--swapHorizontalCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--swapVert.c-Icon--before:before, .ui-accordion .c-Icon--swapVert.ui-accordion-header:before, .c-Icon--swapVert.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--swapVert.c-Icon--after:after, .ui-accordion .c-Icon--swapVert.c-Icon--after.ui-accordion-header:after, .c-Icon--swapVert.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--swapVerticalCircle.c-Icon--before:before, .ui-accordion .c-Icon--swapVerticalCircle.ui-accordion-header:before, .c-Icon--swapVerticalCircle.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--swapVerticalCircle.c-Icon--after:after, .ui-accordion .c-Icon--swapVerticalCircle.c-Icon--after.ui-accordion-header:after, .c-Icon--swapVerticalCircle.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--switchCamera.c-Icon--before:before, .ui-accordion .c-Icon--switchCamera.ui-accordion-header:before, .c-Icon--switchCamera.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--switchCamera.c-Icon--after:after, .ui-accordion .c-Icon--switchCamera.c-Icon--after.ui-accordion-header:after, .c-Icon--switchCamera.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--switchVideo.c-Icon--before:before, .ui-accordion .c-Icon--switchVideo.ui-accordion-header:before, .c-Icon--switchVideo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--switchVideo.c-Icon--after:after, .ui-accordion .c-Icon--switchVideo.c-Icon--after.ui-accordion-header:after, .c-Icon--switchVideo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--sync.c-Icon--before:before, .ui-accordion .c-Icon--sync.ui-accordion-header:before, .c-Icon--sync.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--sync.c-Icon--after:after, .ui-accordion .c-Icon--sync.c-Icon--after.ui-accordion-header:after, .c-Icon--sync.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--syncDisabled.c-Icon--before:before, .ui-accordion .c-Icon--syncDisabled.ui-accordion-header:before, .c-Icon--syncDisabled.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--syncDisabled.c-Icon--after:after, .ui-accordion .c-Icon--syncDisabled.c-Icon--after.ui-accordion-header:after, .c-Icon--syncDisabled.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--syncProblem.c-Icon--before:before, .ui-accordion .c-Icon--syncProblem.ui-accordion-header:before, .c-Icon--syncProblem.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--syncProblem.c-Icon--after:after, .ui-accordion .c-Icon--syncProblem.c-Icon--after.ui-accordion-header:after, .c-Icon--syncProblem.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--systemUpdate.c-Icon--before:before, .ui-accordion .c-Icon--systemUpdate.ui-accordion-header:before, .c-Icon--systemUpdate.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--systemUpdate.c-Icon--after:after, .ui-accordion .c-Icon--systemUpdate.c-Icon--after.ui-accordion-header:after, .c-Icon--systemUpdate.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--systemUpdateAlt.c-Icon--before:before, .ui-accordion .c-Icon--systemUpdateAlt.ui-accordion-header:before, .c-Icon--systemUpdateAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--systemUpdateAlt.c-Icon--after:after, .ui-accordion .c-Icon--systemUpdateAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--systemUpdateAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tab.c-Icon--before:before, .ui-accordion .c-Icon--tab.ui-accordion-header:before, .c-Icon--tab.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tab.c-Icon--after:after, .ui-accordion .c-Icon--tab.c-Icon--after.ui-accordion-header:after, .c-Icon--tab.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tabUnselected.c-Icon--before:before, .ui-accordion .c-Icon--tabUnselected.ui-accordion-header:before, .c-Icon--tabUnselected.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tabUnselected.c-Icon--after:after, .ui-accordion .c-Icon--tabUnselected.c-Icon--after.ui-accordion-header:after, .c-Icon--tabUnselected.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tableChart.c-Icon--before:before, .ui-accordion .c-Icon--tableChart.ui-accordion-header:before, .c-Icon--tableChart.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tableChart.c-Icon--after:after, .ui-accordion .c-Icon--tableChart.c-Icon--after.ui-accordion-header:after, .c-Icon--tableChart.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tablet.c-Icon--before:before, .ui-accordion .c-Icon--tablet.ui-accordion-header:before, .c-Icon--tablet.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tablet.c-Icon--after:after, .ui-accordion .c-Icon--tablet.c-Icon--after.ui-accordion-header:after, .c-Icon--tablet.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tabletAndroid.c-Icon--before:before, .ui-accordion .c-Icon--tabletAndroid.ui-accordion-header:before, .c-Icon--tabletAndroid.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tabletAndroid.c-Icon--after:after, .ui-accordion .c-Icon--tabletAndroid.c-Icon--after.ui-accordion-header:after, .c-Icon--tabletAndroid.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tabletMac.c-Icon--before:before, .ui-accordion .c-Icon--tabletMac.ui-accordion-header:before, .c-Icon--tabletMac.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tabletMac.c-Icon--after:after, .ui-accordion .c-Icon--tabletMac.c-Icon--after.ui-accordion-header:after, .c-Icon--tabletMac.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tagFaces.c-Icon--before:before, .ui-accordion .c-Icon--tagFaces.ui-accordion-header:before, .c-Icon--tagFaces.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tagFaces.c-Icon--after:after, .ui-accordion .c-Icon--tagFaces.c-Icon--after.ui-accordion-header:after, .c-Icon--tagFaces.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tapAndPlay.c-Icon--before:before, .ui-accordion .c-Icon--tapAndPlay.ui-accordion-header:before, .c-Icon--tapAndPlay.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tapAndPlay.c-Icon--after:after, .ui-accordion .c-Icon--tapAndPlay.c-Icon--after.ui-accordion-header:after, .c-Icon--tapAndPlay.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--terrain.c-Icon--before:before, .ui-accordion .c-Icon--terrain.ui-accordion-header:before, .c-Icon--terrain.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--terrain.c-Icon--after:after, .ui-accordion .c-Icon--terrain.c-Icon--after.ui-accordion-header:after, .c-Icon--terrain.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--textFields.c-Icon--before:before, .ui-accordion .c-Icon--textFields.ui-accordion-header:before, .c-Icon--textFields.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--textFields.c-Icon--after:after, .ui-accordion .c-Icon--textFields.c-Icon--after.ui-accordion-header:after, .c-Icon--textFields.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--textFormat.c-Icon--before:before, .ui-accordion .c-Icon--textFormat.ui-accordion-header:before, .c-Icon--textFormat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--textFormat.c-Icon--after:after, .ui-accordion .c-Icon--textFormat.c-Icon--after.ui-accordion-header:after, .c-Icon--textFormat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--textRotateUp.c-Icon--before:before, .ui-accordion .c-Icon--textRotateUp.ui-accordion-header:before, .c-Icon--textRotateUp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--textRotateUp.c-Icon--after:after, .ui-accordion .c-Icon--textRotateUp.c-Icon--after.ui-accordion-header:after, .c-Icon--textRotateUp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--textRotateVertical.c-Icon--before:before, .ui-accordion .c-Icon--textRotateVertical.ui-accordion-header:before, .c-Icon--textRotateVertical.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--textRotateVertical.c-Icon--after:after, .ui-accordion .c-Icon--textRotateVertical.c-Icon--after.ui-accordion-header:after, .c-Icon--textRotateVertical.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--textRotationDown.c-Icon--before:before, .ui-accordion .c-Icon--textRotationDown.ui-accordion-header:before, .c-Icon--textRotationDown.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--textRotationDown.c-Icon--after:after, .ui-accordion .c-Icon--textRotationDown.c-Icon--after.ui-accordion-header:after, .c-Icon--textRotationDown.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--textRotationNone.c-Icon--before:before, .ui-accordion .c-Icon--textRotationNone.ui-accordion-header:before, .c-Icon--textRotationNone.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--textRotationNone.c-Icon--after:after, .ui-accordion .c-Icon--textRotationNone.c-Icon--after.ui-accordion-header:after, .c-Icon--textRotationNone.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--textsms.c-Icon--before:before, .ui-accordion .c-Icon--textsms.ui-accordion-header:before, .c-Icon--textsms.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--textsms.c-Icon--after:after, .ui-accordion .c-Icon--textsms.c-Icon--after.ui-accordion-header:after, .c-Icon--textsms.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--texture.c-Icon--before:before, .ui-accordion .c-Icon--texture.ui-accordion-header:before, .c-Icon--texture.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--texture.c-Icon--after:after, .ui-accordion .c-Icon--texture.c-Icon--after.ui-accordion-header:after, .c-Icon--texture.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--theaters.c-Icon--before:before, .ui-accordion .c-Icon--theaters.ui-accordion-header:before, .c-Icon--theaters.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--theaters.c-Icon--after:after, .ui-accordion .c-Icon--theaters.c-Icon--after.ui-accordion-header:after, .c-Icon--theaters.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--thumbDown.c-Icon--before:before, .ui-accordion .c-Icon--thumbDown.ui-accordion-header:before, .c-Icon--thumbDown.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--thumbDown.c-Icon--after:after, .ui-accordion .c-Icon--thumbDown.c-Icon--after.ui-accordion-header:after, .c-Icon--thumbDown.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--thumbDownAlt.c-Icon--before:before, .ui-accordion .c-Icon--thumbDownAlt.ui-accordion-header:before, .c-Icon--thumbDownAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--thumbDownAlt.c-Icon--after:after, .ui-accordion .c-Icon--thumbDownAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--thumbDownAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--thumbUp.c-Icon--before:before, .ui-accordion .c-Icon--thumbUp.ui-accordion-header:before, .c-Icon--thumbUp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--thumbUp.c-Icon--after:after, .ui-accordion .c-Icon--thumbUp.c-Icon--after.ui-accordion-header:after, .c-Icon--thumbUp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--thumbUpAlt.c-Icon--before:before, .ui-accordion .c-Icon--thumbUpAlt.ui-accordion-header:before, .c-Icon--thumbUpAlt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--thumbUpAlt.c-Icon--after:after, .ui-accordion .c-Icon--thumbUpAlt.c-Icon--after.ui-accordion-header:after, .c-Icon--thumbUpAlt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--thumbsUpDown.c-Icon--before:before, .ui-accordion .c-Icon--thumbsUpDown.ui-accordion-header:before, .c-Icon--thumbsUpDown.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--thumbsUpDown.c-Icon--after:after, .ui-accordion .c-Icon--thumbsUpDown.c-Icon--after.ui-accordion-header:after, .c-Icon--thumbsUpDown.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--timeToLeave.c-Icon--before:before, .ui-accordion .c-Icon--timeToLeave.ui-accordion-header:before, .c-Icon--timeToLeave.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--timeToLeave.c-Icon--after:after, .ui-accordion .c-Icon--timeToLeave.c-Icon--after.ui-accordion-header:after, .c-Icon--timeToLeave.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--timelapse.c-Icon--before:before, .ui-accordion .c-Icon--timelapse.ui-accordion-header:before, .c-Icon--timelapse.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--timelapse.c-Icon--after:after, .ui-accordion .c-Icon--timelapse.c-Icon--after.ui-accordion-header:after, .c-Icon--timelapse.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--timeline.c-Icon--before:before, .ui-accordion .c-Icon--timeline.ui-accordion-header:before, .c-Icon--timeline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--timeline.c-Icon--after:after, .ui-accordion .c-Icon--timeline.c-Icon--after.ui-accordion-header:after, .c-Icon--timeline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--timer.c-Icon--before:before, .ui-accordion .c-Icon--timer.ui-accordion-header:before, .c-Icon--timer.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--timer.c-Icon--after:after, .ui-accordion .c-Icon--timer.c-Icon--after.ui-accordion-header:after, .c-Icon--timer.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--timer10.c-Icon--before:before, .ui-accordion .c-Icon--timer10.ui-accordion-header:before, .c-Icon--timer10.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--timer10.c-Icon--after:after, .ui-accordion .c-Icon--timer10.c-Icon--after.ui-accordion-header:after, .c-Icon--timer10.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--timer3.c-Icon--before:before, .ui-accordion .c-Icon--timer3.ui-accordion-header:before, .c-Icon--timer3.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--timer3.c-Icon--after:after, .ui-accordion .c-Icon--timer3.c-Icon--after.ui-accordion-header:after, .c-Icon--timer3.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--timerOff.c-Icon--before:before, .ui-accordion .c-Icon--timerOff.ui-accordion-header:before, .c-Icon--timerOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--timerOff.c-Icon--after:after, .ui-accordion .c-Icon--timerOff.c-Icon--after.ui-accordion-header:after, .c-Icon--timerOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--title.c-Icon--before:before, .ui-accordion .c-Icon--title.ui-accordion-header:before, .c-Icon--title.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--title.c-Icon--after:after, .ui-accordion .c-Icon--title.c-Icon--after.ui-accordion-header:after, .c-Icon--title.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--toc.c-Icon--before:before, .ui-accordion .c-Icon--toc.ui-accordion-header:before, .c-Icon--toc.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--toc.c-Icon--after:after, .ui-accordion .c-Icon--toc.c-Icon--after.ui-accordion-header:after, .c-Icon--toc.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--today.c-Icon--before:before, .ui-accordion .c-Icon--today.ui-accordion-header:before, .c-Icon--today.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--today.c-Icon--after:after, .ui-accordion .c-Icon--today.c-Icon--after.ui-accordion-header:after, .c-Icon--today.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--toggleOff.c-Icon--before:before, .ui-accordion .c-Icon--toggleOff.ui-accordion-header:before, .c-Icon--toggleOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--toggleOff.c-Icon--after:after, .ui-accordion .c-Icon--toggleOff.c-Icon--after.ui-accordion-header:after, .c-Icon--toggleOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--toggleOn.c-Icon--before:before, .ui-accordion .c-Icon--toggleOn.ui-accordion-header:before, .c-Icon--toggleOn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--toggleOn.c-Icon--after:after, .ui-accordion .c-Icon--toggleOn.c-Icon--after.ui-accordion-header:after, .c-Icon--toggleOn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--toll.c-Icon--before:before, .ui-accordion .c-Icon--toll.ui-accordion-header:before, .c-Icon--toll.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--toll.c-Icon--after:after, .ui-accordion .c-Icon--toll.c-Icon--after.ui-accordion-header:after, .c-Icon--toll.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tonality.c-Icon--before:before, .ui-accordion .c-Icon--tonality.ui-accordion-header:before, .c-Icon--tonality.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tonality.c-Icon--after:after, .ui-accordion .c-Icon--tonality.c-Icon--after.ui-accordion-header:after, .c-Icon--tonality.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--touchApp.c-Icon--before:before, .ui-accordion .c-Icon--touchApp.ui-accordion-header:before, .c-Icon--touchApp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--touchApp.c-Icon--after:after, .ui-accordion .c-Icon--touchApp.c-Icon--after.ui-accordion-header:after, .c-Icon--touchApp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--toys.c-Icon--before:before, .ui-accordion .c-Icon--toys.ui-accordion-header:before, .c-Icon--toys.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--toys.c-Icon--after:after, .ui-accordion .c-Icon--toys.c-Icon--after.ui-accordion-header:after, .c-Icon--toys.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--trackChanges.c-Icon--before:before, .ui-accordion .c-Icon--trackChanges.ui-accordion-header:before, .c-Icon--trackChanges.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--trackChanges.c-Icon--after:after, .ui-accordion .c-Icon--trackChanges.c-Icon--after.ui-accordion-header:after, .c-Icon--trackChanges.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--traffic.c-Icon--before:before, .ui-accordion .c-Icon--traffic.ui-accordion-header:before, .c-Icon--traffic.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--traffic.c-Icon--after:after, .ui-accordion .c-Icon--traffic.c-Icon--after.ui-accordion-header:after, .c-Icon--traffic.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--train.c-Icon--before:before, .ui-accordion .c-Icon--train.ui-accordion-header:before, .c-Icon--train.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--train.c-Icon--after:after, .ui-accordion .c-Icon--train.c-Icon--after.ui-accordion-header:after, .c-Icon--train.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tram.c-Icon--before:before, .ui-accordion .c-Icon--tram.ui-accordion-header:before, .c-Icon--tram.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tram.c-Icon--after:after, .ui-accordion .c-Icon--tram.c-Icon--after.ui-accordion-header:after, .c-Icon--tram.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--transferWithinAStation.c-Icon--before:before, .ui-accordion .c-Icon--transferWithinAStation.ui-accordion-header:before, .c-Icon--transferWithinAStation.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--transferWithinAStation.c-Icon--after:after, .ui-accordion .c-Icon--transferWithinAStation.c-Icon--after.ui-accordion-header:after, .c-Icon--transferWithinAStation.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--transform.c-Icon--before:before, .ui-accordion .c-Icon--transform.ui-accordion-header:before, .c-Icon--transform.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--transform.c-Icon--after:after, .ui-accordion .c-Icon--transform.c-Icon--after.ui-accordion-header:after, .c-Icon--transform.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--transitEnterexit.c-Icon--before:before, .ui-accordion .c-Icon--transitEnterexit.ui-accordion-header:before, .c-Icon--transitEnterexit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--transitEnterexit.c-Icon--after:after, .ui-accordion .c-Icon--transitEnterexit.c-Icon--after.ui-accordion-header:after, .c-Icon--transitEnterexit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--translate.c-Icon--before:before, .ui-accordion .c-Icon--translate.ui-accordion-header:before, .c-Icon--translate.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--translate.c-Icon--after:after, .ui-accordion .c-Icon--translate.c-Icon--after.ui-accordion-header:after, .c-Icon--translate.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--trendingDown.c-Icon--before:before, .ui-accordion .c-Icon--trendingDown.ui-accordion-header:before, .c-Icon--trendingDown.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--trendingDown.c-Icon--after:after, .ui-accordion .c-Icon--trendingDown.c-Icon--after.ui-accordion-header:after, .c-Icon--trendingDown.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--trendingFlat.c-Icon--before:before, .ui-accordion .c-Icon--trendingFlat.ui-accordion-header:before, .c-Icon--trendingFlat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--trendingFlat.c-Icon--after:after, .ui-accordion .c-Icon--trendingFlat.c-Icon--after.ui-accordion-header:after, .c-Icon--trendingFlat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--trendingUp.c-Icon--before:before, .ui-accordion .c-Icon--trendingUp.ui-accordion-header:before, .c-Icon--trendingUp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--trendingUp.c-Icon--after:after, .ui-accordion .c-Icon--trendingUp.c-Icon--after.ui-accordion-header:after, .c-Icon--trendingUp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tripOrigin.c-Icon--before:before, .ui-accordion .c-Icon--tripOrigin.ui-accordion-header:before, .c-Icon--tripOrigin.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tripOrigin.c-Icon--after:after, .ui-accordion .c-Icon--tripOrigin.c-Icon--after.ui-accordion-header:after, .c-Icon--tripOrigin.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tune.c-Icon--before:before, .ui-accordion .c-Icon--tune.ui-accordion-header:before, .c-Icon--tune.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tune.c-Icon--after:after, .ui-accordion .c-Icon--tune.c-Icon--after.ui-accordion-header:after, .c-Icon--tune.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--bookmark.c-Icon--before:before, .ui-accordion .c-Icon--bookmark.ui-accordion-header:before, .c-Icon--bookmark.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--bookmark.c-Icon--after:after, .ui-accordion .c-Icon--bookmark.c-Icon--after.ui-accordion-header:after, .c-Icon--bookmark.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--turnedIn.c-Icon--before:before, .ui-accordion .c-Icon--turnedIn.ui-accordion-header:before, .c-Icon--turnedIn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--turnedIn.c-Icon--after:after, .ui-accordion .c-Icon--turnedIn.c-Icon--after.ui-accordion-header:after, .c-Icon--turnedIn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--turnedInNot.c-Icon--before:before, .ui-accordion .c-Icon--turnedInNot.ui-accordion-header:before, .c-Icon--turnedInNot.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--turnedInNot.c-Icon--after:after, .ui-accordion .c-Icon--turnedInNot.c-Icon--after.ui-accordion-header:after, .c-Icon--turnedInNot.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tv.c-Icon--before:before, .ui-accordion .c-Icon--tv.ui-accordion-header:before, .c-Icon--tv.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tv.c-Icon--after:after, .ui-accordion .c-Icon--tv.c-Icon--after.ui-accordion-header:after, .c-Icon--tv.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--tvOff.c-Icon--before:before, .ui-accordion .c-Icon--tvOff.ui-accordion-header:before, .c-Icon--tvOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--tvOff.c-Icon--after:after, .ui-accordion .c-Icon--tvOff.c-Icon--after.ui-accordion-header:after, .c-Icon--tvOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--twitter.c-Icon--before:before, .ui-accordion .c-Icon--twitter.ui-accordion-header:before, .c-Icon--twitter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--twitter.c-Icon--after:after, .ui-accordion .c-Icon--twitter.c-Icon--after.ui-accordion-header:after, .c-Icon--twitter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--unarchive.c-Icon--before:before, .ui-accordion .c-Icon--unarchive.ui-accordion-header:before, .c-Icon--unarchive.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--unarchive.c-Icon--after:after, .ui-accordion .c-Icon--unarchive.c-Icon--after.ui-accordion-header:after, .c-Icon--unarchive.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--undo.c-Icon--before:before, .ui-accordion .c-Icon--undo.ui-accordion-header:before, .c-Icon--undo.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--undo.c-Icon--after:after, .ui-accordion .c-Icon--undo.c-Icon--after.ui-accordion-header:after, .c-Icon--undo.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--unfoldLess.c-Icon--before:before, .ui-accordion .c-Icon--unfoldLess.ui-accordion-header:before, .c-Icon--unfoldLess.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--unfoldLess.c-Icon--after:after, .ui-accordion .c-Icon--unfoldLess.c-Icon--after.ui-accordion-header:after, .c-Icon--unfoldLess.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--unfoldMore.c-Icon--before:before, .ui-accordion .c-Icon--unfoldMore.ui-accordion-header:before, .c-Icon--unfoldMore.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--unfoldMore.c-Icon--after:after, .ui-accordion .c-Icon--unfoldMore.c-Icon--after.ui-accordion-header:after, .c-Icon--unfoldMore.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--unsubscribe.c-Icon--before:before, .ui-accordion .c-Icon--unsubscribe.ui-accordion-header:before, .c-Icon--unsubscribe.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--unsubscribe.c-Icon--after:after, .ui-accordion .c-Icon--unsubscribe.c-Icon--after.ui-accordion-header:after, .c-Icon--unsubscribe.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--update.c-Icon--before:before, .ui-accordion .c-Icon--update.ui-accordion-header:before, .c-Icon--update.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--update.c-Icon--after:after, .ui-accordion .c-Icon--update.c-Icon--after.ui-accordion-header:after, .c-Icon--update.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--usb.c-Icon--before:before, .ui-accordion .c-Icon--usb.ui-accordion-header:before, .c-Icon--usb.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--usb.c-Icon--after:after, .ui-accordion .c-Icon--usb.c-Icon--after.ui-accordion-header:after, .c-Icon--usb.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--verifiedUser.c-Icon--before:before, .ui-accordion .c-Icon--verifiedUser.ui-accordion-header:before, .c-Icon--verifiedUser.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--verifiedUser.c-Icon--after:after, .ui-accordion .c-Icon--verifiedUser.c-Icon--after.ui-accordion-header:after, .c-Icon--verifiedUser.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--verticalAlignBottom.c-Icon--before:before, .ui-accordion .c-Icon--verticalAlignBottom.ui-accordion-header:before, .c-Icon--verticalAlignBottom.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--verticalAlignBottom.c-Icon--after:after, .ui-accordion .c-Icon--verticalAlignBottom.c-Icon--after.ui-accordion-header:after, .c-Icon--verticalAlignBottom.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--verticalAlignCenter.c-Icon--before:before, .ui-accordion .c-Icon--verticalAlignCenter.ui-accordion-header:before, .c-Icon--verticalAlignCenter.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--verticalAlignCenter.c-Icon--after:after, .ui-accordion .c-Icon--verticalAlignCenter.c-Icon--after.ui-accordion-header:after, .c-Icon--verticalAlignCenter.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--verticalAlignTop.c-Icon--before:before, .ui-accordion .c-Icon--verticalAlignTop.ui-accordion-header:before, .c-Icon--verticalAlignTop.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--verticalAlignTop.c-Icon--after:after, .ui-accordion .c-Icon--verticalAlignTop.c-Icon--after.ui-accordion-header:after, .c-Icon--verticalAlignTop.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--verticalSplit.c-Icon--before:before, .ui-accordion .c-Icon--verticalSplit.ui-accordion-header:before, .c-Icon--verticalSplit.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--verticalSplit.c-Icon--after:after, .ui-accordion .c-Icon--verticalSplit.c-Icon--after.ui-accordion-header:after, .c-Icon--verticalSplit.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--vibration.c-Icon--before:before, .ui-accordion .c-Icon--vibration.ui-accordion-header:before, .c-Icon--vibration.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--vibration.c-Icon--after:after, .ui-accordion .c-Icon--vibration.c-Icon--after.ui-accordion-header:after, .c-Icon--vibration.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--videoCall.c-Icon--before:before, .ui-accordion .c-Icon--videoCall.ui-accordion-header:before, .c-Icon--videoCall.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--videoCall.c-Icon--after:after, .ui-accordion .c-Icon--videoCall.c-Icon--after.ui-accordion-header:after, .c-Icon--videoCall.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--videoLabel.c-Icon--before:before, .ui-accordion .c-Icon--videoLabel.ui-accordion-header:before, .c-Icon--videoLabel.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--videoLabel.c-Icon--after:after, .ui-accordion .c-Icon--videoLabel.c-Icon--after.ui-accordion-header:after, .c-Icon--videoLabel.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--videoLibrary.c-Icon--before:before, .ui-accordion .c-Icon--videoLibrary.ui-accordion-header:before, .c-Icon--videoLibrary.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--videoLibrary.c-Icon--after:after, .ui-accordion .c-Icon--videoLibrary.c-Icon--after.ui-accordion-header:after, .c-Icon--videoLibrary.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--videocam.c-Icon--before:before, .ui-accordion .c-Icon--videocam.ui-accordion-header:before, .c-Icon--videocam.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--videocam.c-Icon--after:after, .ui-accordion .c-Icon--videocam.c-Icon--after.ui-accordion-header:after, .c-Icon--videocam.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--videocamOff.c-Icon--before:before, .ui-accordion .c-Icon--videocamOff.ui-accordion-header:before, .c-Icon--videocamOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--videocamOff.c-Icon--after:after, .ui-accordion .c-Icon--videocamOff.c-Icon--after.ui-accordion-header:after, .c-Icon--videocamOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--videogameAsset.c-Icon--before:before, .ui-accordion .c-Icon--videogameAsset.ui-accordion-header:before, .c-Icon--videogameAsset.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--videogameAsset.c-Icon--after:after, .ui-accordion .c-Icon--videogameAsset.c-Icon--after.ui-accordion-header:after, .c-Icon--videogameAsset.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewAgenda.c-Icon--before:before, .ui-accordion .c-Icon--viewAgenda.ui-accordion-header:before, .c-Icon--viewAgenda.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewAgenda.c-Icon--after:after, .ui-accordion .c-Icon--viewAgenda.c-Icon--after.ui-accordion-header:after, .c-Icon--viewAgenda.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewArray.c-Icon--before:before, .ui-accordion .c-Icon--viewArray.ui-accordion-header:before, .c-Icon--viewArray.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewArray.c-Icon--after:after, .ui-accordion .c-Icon--viewArray.c-Icon--after.ui-accordion-header:after, .c-Icon--viewArray.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewCarousel.c-Icon--before:before, .ui-accordion .c-Icon--viewCarousel.ui-accordion-header:before, .c-Icon--viewCarousel.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewCarousel.c-Icon--after:after, .ui-accordion .c-Icon--viewCarousel.c-Icon--after.ui-accordion-header:after, .c-Icon--viewCarousel.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewColumn.c-Icon--before:before, .ui-accordion .c-Icon--viewColumn.ui-accordion-header:before, .c-Icon--viewColumn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewColumn.c-Icon--after:after, .ui-accordion .c-Icon--viewColumn.c-Icon--after.ui-accordion-header:after, .c-Icon--viewColumn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewComfy.c-Icon--before:before, .ui-accordion .c-Icon--viewComfy.ui-accordion-header:before, .c-Icon--viewComfy.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewComfy.c-Icon--after:after, .ui-accordion .c-Icon--viewComfy.c-Icon--after.ui-accordion-header:after, .c-Icon--viewComfy.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewCompact.c-Icon--before:before, .ui-accordion .c-Icon--viewCompact.ui-accordion-header:before, .c-Icon--viewCompact.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewCompact.c-Icon--after:after, .ui-accordion .c-Icon--viewCompact.c-Icon--after.ui-accordion-header:after, .c-Icon--viewCompact.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewDay.c-Icon--before:before, .ui-accordion .c-Icon--viewDay.ui-accordion-header:before, .c-Icon--viewDay.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewDay.c-Icon--after:after, .ui-accordion .c-Icon--viewDay.c-Icon--after.ui-accordion-header:after, .c-Icon--viewDay.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewHeadline.c-Icon--before:before, .ui-accordion .c-Icon--viewHeadline.ui-accordion-header:before, .c-Icon--viewHeadline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewHeadline.c-Icon--after:after, .ui-accordion .c-Icon--viewHeadline.c-Icon--after.ui-accordion-header:after, .c-Icon--viewHeadline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewList.c-Icon--before:before, .ui-accordion .c-Icon--viewList.ui-accordion-header:before, .c-Icon--viewList.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewList.c-Icon--after:after, .ui-accordion .c-Icon--viewList.c-Icon--after.ui-accordion-header:after, .c-Icon--viewList.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewModule.c-Icon--before:before, .ui-accordion .c-Icon--viewModule.ui-accordion-header:before, .c-Icon--viewModule.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewModule.c-Icon--after:after, .ui-accordion .c-Icon--viewModule.c-Icon--after.ui-accordion-header:after, .c-Icon--viewModule.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewQuilt.c-Icon--before:before, .ui-accordion .c-Icon--viewQuilt.ui-accordion-header:before, .c-Icon--viewQuilt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewQuilt.c-Icon--after:after, .ui-accordion .c-Icon--viewQuilt.c-Icon--after.ui-accordion-header:after, .c-Icon--viewQuilt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewStream.c-Icon--before:before, .ui-accordion .c-Icon--viewStream.ui-accordion-header:before, .c-Icon--viewStream.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewStream.c-Icon--after:after, .ui-accordion .c-Icon--viewStream.c-Icon--after.ui-accordion-header:after, .c-Icon--viewStream.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--viewWeek.c-Icon--before:before, .ui-accordion .c-Icon--viewWeek.ui-accordion-header:before, .c-Icon--viewWeek.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--viewWeek.c-Icon--after:after, .ui-accordion .c-Icon--viewWeek.c-Icon--after.ui-accordion-header:after, .c-Icon--viewWeek.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--vignette.c-Icon--before:before, .ui-accordion .c-Icon--vignette.ui-accordion-header:before, .c-Icon--vignette.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--vignette.c-Icon--after:after, .ui-accordion .c-Icon--vignette.c-Icon--after.ui-accordion-header:after, .c-Icon--vignette.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--visibility.c-Icon--before:before, .ui-accordion .c-Icon--visibility.ui-accordion-header:before, .c-Icon--visibility.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--visibility.c-Icon--after:after, .ui-accordion .c-Icon--visibility.c-Icon--after.ui-accordion-header:after, .c-Icon--visibility.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--visibilityOff.c-Icon--before:before, .ui-accordion .c-Icon--visibilityOff.ui-accordion-header:before, .c-Icon--visibilityOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--visibilityOff.c-Icon--after:after, .ui-accordion .c-Icon--visibilityOff.c-Icon--after.ui-accordion-header:after, .c-Icon--visibilityOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--voiceChat.c-Icon--before:before, .ui-accordion .c-Icon--voiceChat.ui-accordion-header:before, .c-Icon--voiceChat.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--voiceChat.c-Icon--after:after, .ui-accordion .c-Icon--voiceChat.c-Icon--after.ui-accordion-header:after, .c-Icon--voiceChat.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--voiceOverOff.c-Icon--before:before, .ui-accordion .c-Icon--voiceOverOff.ui-accordion-header:before, .c-Icon--voiceOverOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--voiceOverOff.c-Icon--after:after, .ui-accordion .c-Icon--voiceOverOff.c-Icon--after.ui-accordion-header:after, .c-Icon--voiceOverOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--voicemail.c-Icon--before:before, .ui-accordion .c-Icon--voicemail.ui-accordion-header:before, .c-Icon--voicemail.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--voicemail.c-Icon--after:after, .ui-accordion .c-Icon--voicemail.c-Icon--after.ui-accordion-header:after, .c-Icon--voicemail.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--volumeDown.c-Icon--before:before, .ui-accordion .c-Icon--volumeDown.ui-accordion-header:before, .c-Icon--volumeDown.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--volumeDown.c-Icon--after:after, .ui-accordion .c-Icon--volumeDown.c-Icon--after.ui-accordion-header:after, .c-Icon--volumeDown.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--volumeMute.c-Icon--before:before, .ui-accordion .c-Icon--volumeMute.ui-accordion-header:before, .c-Icon--volumeMute.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--volumeMute.c-Icon--after:after, .ui-accordion .c-Icon--volumeMute.c-Icon--after.ui-accordion-header:after, .c-Icon--volumeMute.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--volumeOff.c-Icon--before:before, .ui-accordion .c-Icon--volumeOff.ui-accordion-header:before, .c-Icon--volumeOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--volumeOff.c-Icon--after:after, .ui-accordion .c-Icon--volumeOff.c-Icon--after.ui-accordion-header:after, .c-Icon--volumeOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--volumeUp.c-Icon--before:before, .ui-accordion .c-Icon--volumeUp.ui-accordion-header:before, .c-Icon--volumeUp.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--volumeUp.c-Icon--after:after, .ui-accordion .c-Icon--volumeUp.c-Icon--after.ui-accordion-header:after, .c-Icon--volumeUp.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--vpnKey.c-Icon--before:before, .ui-accordion .c-Icon--vpnKey.ui-accordion-header:before, .c-Icon--vpnKey.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--vpnKey.c-Icon--after:after, .ui-accordion .c-Icon--vpnKey.c-Icon--after.ui-accordion-header:after, .c-Icon--vpnKey.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--vpnLock.c-Icon--before:before, .ui-accordion .c-Icon--vpnLock.ui-accordion-header:before, .c-Icon--vpnLock.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--vpnLock.c-Icon--after:after, .ui-accordion .c-Icon--vpnLock.c-Icon--after.ui-accordion-header:after, .c-Icon--vpnLock.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wallpaper.c-Icon--before:before, .ui-accordion .c-Icon--wallpaper.ui-accordion-header:before, .c-Icon--wallpaper.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wallpaper.c-Icon--after:after, .ui-accordion .c-Icon--wallpaper.c-Icon--after.ui-accordion-header:after, .c-Icon--wallpaper.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--warning.c-Icon--before:before, .ui-accordion .c-Icon--warning.ui-accordion-header:before, .c-Icon--warning.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--warning.c-Icon--after:after, .ui-accordion .c-Icon--warning.c-Icon--after.ui-accordion-header:after, .c-Icon--warning.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--watch.c-Icon--before:before, .ui-accordion .c-Icon--watch.ui-accordion-header:before, .c-Icon--watch.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--watch.c-Icon--after:after, .ui-accordion .c-Icon--watch.c-Icon--after.ui-accordion-header:after, .c-Icon--watch.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--watchLater.c-Icon--before:before, .ui-accordion .c-Icon--watchLater.ui-accordion-header:before, .c-Icon--watchLater.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--watchLater.c-Icon--after:after, .ui-accordion .c-Icon--watchLater.c-Icon--after.ui-accordion-header:after, .c-Icon--watchLater.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--waves.c-Icon--before:before, .ui-accordion .c-Icon--waves.ui-accordion-header:before, .c-Icon--waves.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--waves.c-Icon--after:after, .ui-accordion .c-Icon--waves.c-Icon--after.ui-accordion-header:after, .c-Icon--waves.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wbAuto.c-Icon--before:before, .ui-accordion .c-Icon--wbAuto.ui-accordion-header:before, .c-Icon--wbAuto.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wbAuto.c-Icon--after:after, .ui-accordion .c-Icon--wbAuto.c-Icon--after.ui-accordion-header:after, .c-Icon--wbAuto.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wbCloudy.c-Icon--before:before, .ui-accordion .c-Icon--wbCloudy.ui-accordion-header:before, .c-Icon--wbCloudy.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wbCloudy.c-Icon--after:after, .ui-accordion .c-Icon--wbCloudy.c-Icon--after.ui-accordion-header:after, .c-Icon--wbCloudy.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wbIncandescent.c-Icon--before:before, .ui-accordion .c-Icon--wbIncandescent.ui-accordion-header:before, .c-Icon--wbIncandescent.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wbIncandescent.c-Icon--after:after, .ui-accordion .c-Icon--wbIncandescent.c-Icon--after.ui-accordion-header:after, .c-Icon--wbIncandescent.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wbIridescent.c-Icon--before:before, .ui-accordion .c-Icon--wbIridescent.ui-accordion-header:before, .c-Icon--wbIridescent.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wbIridescent.c-Icon--after:after, .ui-accordion .c-Icon--wbIridescent.c-Icon--after.ui-accordion-header:after, .c-Icon--wbIridescent.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wbSunny.c-Icon--before:before, .ui-accordion .c-Icon--wbSunny.ui-accordion-header:before, .c-Icon--wbSunny.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wbSunny.c-Icon--after:after, .ui-accordion .c-Icon--wbSunny.c-Icon--after.ui-accordion-header:after, .c-Icon--wbSunny.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wc.c-Icon--before:before, .ui-accordion .c-Icon--wc.ui-accordion-header:before, .c-Icon--wc.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wc.c-Icon--after:after, .ui-accordion .c-Icon--wc.c-Icon--after.ui-accordion-header:after, .c-Icon--wc.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--web.c-Icon--before:before, .ui-accordion .c-Icon--web.ui-accordion-header:before, .c-Icon--web.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--web.c-Icon--after:after, .ui-accordion .c-Icon--web.c-Icon--after.ui-accordion-header:after, .c-Icon--web.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--webAsset.c-Icon--before:before, .ui-accordion .c-Icon--webAsset.ui-accordion-header:before, .c-Icon--webAsset.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--webAsset.c-Icon--after:after, .ui-accordion .c-Icon--webAsset.c-Icon--after.ui-accordion-header:after, .c-Icon--webAsset.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--weekend.c-Icon--before:before, .ui-accordion .c-Icon--weekend.ui-accordion-header:before, .c-Icon--weekend.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--weekend.c-Icon--after:after, .ui-accordion .c-Icon--weekend.c-Icon--after.ui-accordion-header:after, .c-Icon--weekend.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--whatshot.c-Icon--before:before, .ui-accordion .c-Icon--whatshot.ui-accordion-header:before, .c-Icon--whatshot.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--whatshot.c-Icon--after:after, .ui-accordion .c-Icon--whatshot.c-Icon--after.ui-accordion-header:after, .c-Icon--whatshot.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--whereToVote.c-Icon--before:before, .ui-accordion .c-Icon--whereToVote.ui-accordion-header:before, .c-Icon--whereToVote.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--whereToVote.c-Icon--after:after, .ui-accordion .c-Icon--whereToVote.c-Icon--after.ui-accordion-header:after, .c-Icon--whereToVote.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--widgets.c-Icon--before:before, .ui-accordion .c-Icon--widgets.ui-accordion-header:before, .c-Icon--widgets.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--widgets.c-Icon--after:after, .ui-accordion .c-Icon--widgets.c-Icon--after.ui-accordion-header:after, .c-Icon--widgets.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wifi.c-Icon--before:before, .ui-accordion .c-Icon--wifi.ui-accordion-header:before, .c-Icon--wifi.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wifi.c-Icon--after:after, .ui-accordion .c-Icon--wifi.c-Icon--after.ui-accordion-header:after, .c-Icon--wifi.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wifiLock.c-Icon--before:before, .ui-accordion .c-Icon--wifiLock.ui-accordion-header:before, .c-Icon--wifiLock.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wifiLock.c-Icon--after:after, .ui-accordion .c-Icon--wifiLock.c-Icon--after.ui-accordion-header:after, .c-Icon--wifiLock.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wifiOff.c-Icon--before:before, .ui-accordion .c-Icon--wifiOff.ui-accordion-header:before, .c-Icon--wifiOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wifiOff.c-Icon--after:after, .ui-accordion .c-Icon--wifiOff.c-Icon--after.ui-accordion-header:after, .c-Icon--wifiOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wifiTethering.c-Icon--before:before, .ui-accordion .c-Icon--wifiTethering.ui-accordion-header:before, .c-Icon--wifiTethering.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wifiTethering.c-Icon--after:after, .ui-accordion .c-Icon--wifiTethering.c-Icon--after.ui-accordion-header:after, .c-Icon--wifiTethering.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--work.c-Icon--before:before, .ui-accordion .c-Icon--work.ui-accordion-header:before, .c-Icon--work.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--work.c-Icon--after:after, .ui-accordion .c-Icon--work.c-Icon--after.ui-accordion-header:after, .c-Icon--work.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--workOff.c-Icon--before:before, .ui-accordion .c-Icon--workOff.ui-accordion-header:before, .c-Icon--workOff.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--workOff.c-Icon--after:after, .ui-accordion .c-Icon--workOff.c-Icon--after.ui-accordion-header:after, .c-Icon--workOff.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--workOutline.c-Icon--before:before, .ui-accordion .c-Icon--workOutline.ui-accordion-header:before, .c-Icon--workOutline.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--workOutline.c-Icon--after:after, .ui-accordion .c-Icon--workOutline.c-Icon--after.ui-accordion-header:after, .c-Icon--workOutline.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--wrapText.c-Icon--before:before, .ui-accordion .c-Icon--wrapText.ui-accordion-header:before, .c-Icon--wrapText.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--wrapText.c-Icon--after:after, .ui-accordion .c-Icon--wrapText.c-Icon--after.ui-accordion-header:after, .c-Icon--wrapText.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--youtube.c-Icon--before:before, .ui-accordion .c-Icon--youtube.ui-accordion-header:before, .c-Icon--youtube.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--youtube.c-Icon--after:after, .ui-accordion .c-Icon--youtube.c-Icon--after.ui-accordion-header:after, .c-Icon--youtube.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--youtubeSearchedFor.c-Icon--before:before, .ui-accordion .c-Icon--youtubeSearchedFor.ui-accordion-header:before, .c-Icon--youtubeSearchedFor.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--youtubeSearchedFor.c-Icon--after:after, .ui-accordion .c-Icon--youtubeSearchedFor.c-Icon--after.ui-accordion-header:after, .c-Icon--youtubeSearchedFor.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--zoomIn.c-Icon--before:before, .ui-accordion .c-Icon--zoomIn.ui-accordion-header:before, .c-Icon--zoomIn.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--zoomIn.c-Icon--after:after, .ui-accordion .c-Icon--zoomIn.c-Icon--after.ui-accordion-header:after, .c-Icon--zoomIn.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--zoomOut.c-Icon--before:before, .ui-accordion .c-Icon--zoomOut.ui-accordion-header:before, .c-Icon--zoomOut.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--zoomOut.c-Icon--after:after, .ui-accordion .c-Icon--zoomOut.c-Icon--after.ui-accordion-header:after, .c-Icon--zoomOut.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--zoomOutMap.c-Icon--before:before, .ui-accordion .c-Icon--zoomOutMap.ui-accordion-header:before, .c-Icon--zoomOutMap.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--zoomOutMap.c-Icon--after:after, .ui-accordion .c-Icon--zoomOutMap.c-Icon--after.ui-accordion-header:after, .c-Icon--zoomOutMap.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file.c-Icon--before:before, .ui-accordion .c-Icon--file.ui-accordion-header:before, .c-Icon--file.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file.c-Icon--after:after, .ui-accordion .c-Icon--file.c-Icon--after.ui-accordion-header:after, .c-Icon--file.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-alt.c-Icon--before:before, .ui-accordion .c-Icon--file-alt.ui-accordion-header:before, .c-Icon--file-alt.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-alt.c-Icon--after:after, .ui-accordion .c-Icon--file-alt.c-Icon--after.ui-accordion-header:after, .c-Icon--file-alt.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-archive.c-Icon--before:before, .ui-accordion .c-Icon--file-archive.ui-accordion-header:before, .c-Icon--file-archive.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-archive.c-Icon--after:after, .ui-accordion .c-Icon--file-archive.c-Icon--after.ui-accordion-header:after, .c-Icon--file-archive.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-audio.c-Icon--before:before, .ui-accordion .c-Icon--file-audio.ui-accordion-header:before, .c-Icon--file-audio.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-audio.c-Icon--after:after, .ui-accordion .c-Icon--file-audio.c-Icon--after.ui-accordion-header:after, .c-Icon--file-audio.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-code.c-Icon--before:before, .ui-accordion .c-Icon--file-code.ui-accordion-header:before, .c-Icon--file-code.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-code.c-Icon--after:after, .ui-accordion .c-Icon--file-code.c-Icon--after.ui-accordion-header:after, .c-Icon--file-code.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-csv.c-Icon--before:before, .ui-accordion .c-Icon--file-csv.ui-accordion-header:before, .c-Icon--file-csv.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-csv.c-Icon--after:after, .ui-accordion .c-Icon--file-csv.c-Icon--after.ui-accordion-header:after, .c-Icon--file-csv.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-excel.c-Icon--before:before, .ui-accordion .c-Icon--file-excel.ui-accordion-header:before, .c-Icon--file-excel.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-excel.c-Icon--after:after, .ui-accordion .c-Icon--file-excel.c-Icon--after.ui-accordion-header:after, .c-Icon--file-excel.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-image.c-Icon--before:before, .ui-accordion .c-Icon--file-image.ui-accordion-header:before, .c-Icon--file-image.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-image.c-Icon--after:after, .ui-accordion .c-Icon--file-image.c-Icon--after.ui-accordion-header:after, .c-Icon--file-image.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-pdf.c-Icon--before:before, .ui-accordion .c-Icon--file-pdf.ui-accordion-header:before, .c-Icon--file-pdf.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-pdf.c-Icon--after:after, .ui-accordion .c-Icon--file-pdf.c-Icon--after.ui-accordion-header:after, .c-Icon--file-pdf.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-powerpoint.c-Icon--before:before, .ui-accordion .c-Icon--file-powerpoint.ui-accordion-header:before, .c-Icon--file-powerpoint.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-powerpoint.c-Icon--after:after, .ui-accordion .c-Icon--file-powerpoint.c-Icon--after.ui-accordion-header:after, .c-Icon--file-powerpoint.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-video.c-Icon--before:before, .ui-accordion .c-Icon--file-video.ui-accordion-header:before, .c-Icon--file-video.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-video.c-Icon--after:after, .ui-accordion .c-Icon--file-video.c-Icon--after.ui-accordion-header:after, .c-Icon--file-video.goog-te-gadget-simple:after {
  content: "" !important;
}
.c-Icon.c-Icon--file-word.c-Icon--before:before, .ui-accordion .c-Icon--file-word.ui-accordion-header:before, .c-Icon--file-word.c-Icon--before.goog-te-gadget-simple:before, .c-Icon.c-Icon--file-word.c-Icon--after:after, .ui-accordion .c-Icon--file-word.c-Icon--after.ui-accordion-header:after, .c-Icon--file-word.goog-te-gadget-simple:after {
  content: "" !important;
}

/**
 * @atom Paper
 * @section Component > Paper
 * @description
 *  In Material Design, the physical properties of paper are translated to the screen.
 *  The background of an application resembles the flat, opaque texture of a sheet of
 *  paper, and an application’s behavior mimics paper’s ability to be re-sized, shuffled,
 *  and bound together in multiple sheets.
 * @modifiers
 *  .c-Paper--elevation-0 Material shadow depth of 0.
 *  .c-Paper--elevation-1 Material shadow depth of 1.
 *  .c-Paper--elevation-2 Material shadow depth of 2.
 *  .c-Paper--elevation-3 Material shadow depth of 3.
 *  .c-Paper--elevation-4 Material shadow depth of 4.
 *  .c-Paper--elevation-5 Material shadow depth of 5.
 *  .c-Paper--elevation-6 Material shadow depth of 6.
 *  .c-Paper--elevation-7 Material shadow depth of 7.
 *  .c-Paper--elevation-8 Material shadow depth of 8.
 *  .c-Paper--elevation-9 Material shadow depth of 9.
 *  .c-Paper--elevation-10 Material shadow depth of 10.
 *  .c-Paper--elevation-11 Material shadow depth of 11.
 *  .c-Paper--elevation-12 Material shadow depth of 12.
 *  .c-Paper--elevation-13 Material shadow depth of 13.
 *  .c-Paper--elevation-14 Material shadow depth of 14.
 *  .c-Paper--elevation-15 Material shadow depth of 15.
 *  .c-Paper--elevation-16 Material shadow depth of 16.
 *  .c-Paper--elevation-17 Material shadow depth of 17.
 *  .c-Paper--elevation-18 Material shadow depth of 18.
 *  .c-Paper--elevation-19 Material shadow depth of 19.
 *  .c-Paper--elevation-20 Material shadow depth of 20.
 *  .c-Paper--elevation-21 Material shadow depth of 21.
 *  .c-Paper--elevation-22 Material shadow depth of 22.
 *  .c-Paper--elevation-23 Material shadow depth of 23.
 *  .c-Paper--elevation-24 Material shadow depth of 24.
 * @markup
 *   <div class="flex flex-wrap">
 *     <div class="c-Paper c-Paper--elevation-0 m-4"><div class="demo-paper">0</div></div>
 *     <div class="c-Paper c-Paper--elevation-1 m-4"><div class="demo-paper">1</div></div>
 *     <div class="c-Paper c-Paper--elevation-2 m-4"><div class="demo-paper">2</div></div>
 *     <div class="c-Paper c-Paper--elevation-3 m-4"><div class="demo-paper">3</div></div>
 *     <div class="c-Paper c-Paper--elevation-4 m-4"><div class="demo-paper">4</div></div>
 *     <div class="c-Paper c-Paper--elevation-5 m-4"><div class="demo-paper">5</div></div>
 *     <div class="c-Paper c-Paper--elevation-6 m-4"><div class="demo-paper">6</div></div>
 *     <div class="c-Paper c-Paper--elevation-7 m-4"><div class="demo-paper">7</div></div>
 *     <div class="c-Paper c-Paper--elevation-8 m-4"><div class="demo-paper">8</div></div>
 *     <div class="c-Paper c-Paper--elevation-9 m-4"><div class="demo-paper">9</div></div>
 *     <div class="c-Paper c-Paper--elevation-10 m-4"><div class="demo-paper">10</div></div>
 *     <div class="c-Paper c-Paper--elevation-11 m-4"><div class="demo-paper">11</div></div>
 *     <div class="c-Paper c-Paper--elevation-12 m-4"><div class="demo-paper">12</div></div>
 *     <div class="c-Paper c-Paper--elevation-13 m-4"><div class="demo-paper">13</div></div>
 *     <div class="c-Paper c-Paper--elevation-14 m-4"><div class="demo-paper">14</div></div>
 *     <div class="c-Paper c-Paper--elevation-15 m-4"><div class="demo-paper">15</div></div>
 *     <div class="c-Paper c-Paper--elevation-16 m-4"><div class="demo-paper">16</div></div>
 *     <div class="c-Paper c-Paper--elevation-17 m-4"><div class="demo-paper">17</div></div>
 *     <div class="c-Paper c-Paper--elevation-18 m-4"><div class="demo-paper">18</div></div>
 *     <div class="c-Paper c-Paper--elevation-19 m-4"><div class="demo-paper">19</div></div>
 *     <div class="c-Paper c-Paper--elevation-20 m-4"><div class="demo-paper">20</div></div>
 *     <div class="c-Paper c-Paper--elevation-21 m-4"><div class="demo-paper">21</div></div>
 *     <div class="c-Paper c-Paper--elevation-22 m-4"><div class="demo-paper">22</div></div>
 *     <div class="c-Paper c-Paper--elevation-23 m-4"><div class="demo-paper">23</div></div>
 *     <div class="c-Paper c-Paper--elevation-24 m-4"><div class="demo-paper">24</div></div>
 *   </div>
 */
.c-Paper {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),0px 2px 2px 0px rgba(0, 0, 0, 0.1),0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  background-color: white;
  transition: box-shadow  195ms cubic-bezier(0.4, 0, 1, 1);
}
.c-Paper--elevation-0 {
  box-shadow: none;
}
.c-Paper--elevation-1 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15),0px 1px 1px 0px rgba(0, 0, 0, 0.1),0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-1 {
  cursor: pointer;
}
.c-Paper--elevation-hover-1:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15),0px 1px 1px 0px rgba(0, 0, 0, 0.1),0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-2 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),0px 2px 2px 0px rgba(0, 0, 0, 0.1),0px 3px 1px -2px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-2 {
  cursor: pointer;
}
.c-Paper--elevation-hover-2:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),0px 2px 2px 0px rgba(0, 0, 0, 0.1),0px 3px 1px -2px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-3 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.15),0px 3px 4px 0px rgba(0, 0, 0, 0.1),0px 3px 3px -2px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-3 {
  cursor: pointer;
}
.c-Paper--elevation-hover-3:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.15),0px 3px 4px 0px rgba(0, 0, 0, 0.1),0px 3px 3px -2px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-4 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.15),0px 4px 5px 0px rgba(0, 0, 0, 0.1),0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-4 {
  cursor: pointer;
}
.c-Paper--elevation-hover-4:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.15),0px 4px 5px 0px rgba(0, 0, 0, 0.1),0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-5 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.15),0px 5px 8px 0px rgba(0, 0, 0, 0.1),0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-5 {
  cursor: pointer;
}
.c-Paper--elevation-hover-5:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.15),0px 5px 8px 0px rgba(0, 0, 0, 0.1),0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-6 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.15),0px 6px 10px 0px rgba(0, 0, 0, 0.1),0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-6 {
  cursor: pointer;
}
.c-Paper--elevation-hover-6:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.15),0px 6px 10px 0px rgba(0, 0, 0, 0.1),0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-7 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.15),0px 7px 10px 1px rgba(0, 0, 0, 0.1),0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-7 {
  cursor: pointer;
}
.c-Paper--elevation-hover-7:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.15),0px 7px 10px 1px rgba(0, 0, 0, 0.1),0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-8 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15),0px 8px 10px 1px rgba(0, 0, 0, 0.1),0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-8 {
  cursor: pointer;
}
.c-Paper--elevation-hover-8:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15),0px 8px 10px 1px rgba(0, 0, 0, 0.1),0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-9 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.15),0px 9px 12px 1px rgba(0, 0, 0, 0.1),0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-9 {
  cursor: pointer;
}
.c-Paper--elevation-hover-9:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.15),0px 9px 12px 1px rgba(0, 0, 0, 0.1),0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-10 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.15),0px 10px 14px 1px rgba(0, 0, 0, 0.1),0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-10 {
  cursor: pointer;
}
.c-Paper--elevation-hover-10:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.15),0px 10px 14px 1px rgba(0, 0, 0, 0.1),0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-11 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.15),0px 11px 15px 1px rgba(0, 0, 0, 0.1),0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-11 {
  cursor: pointer;
}
.c-Paper--elevation-hover-11:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.15),0px 11px 15px 1px rgba(0, 0, 0, 0.1),0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-12 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.15),0px 12px 17px 2px rgba(0, 0, 0, 0.1),0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-12 {
  cursor: pointer;
}
.c-Paper--elevation-hover-12:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.15),0px 12px 17px 2px rgba(0, 0, 0, 0.1),0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-13 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.15),0px 13px 19px 2px rgba(0, 0, 0, 0.1),0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-13 {
  cursor: pointer;
}
.c-Paper--elevation-hover-13:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.15),0px 13px 19px 2px rgba(0, 0, 0, 0.1),0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-14 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.15),0px 14px 21px 2px rgba(0, 0, 0, 0.1),0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-14 {
  cursor: pointer;
}
.c-Paper--elevation-hover-14:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.15),0px 14px 21px 2px rgba(0, 0, 0, 0.1),0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-15 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.15),0px 15px 22px 2px rgba(0, 0, 0, 0.1),0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-15 {
  cursor: pointer;
}
.c-Paper--elevation-hover-15:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.15),0px 15px 22px 2px rgba(0, 0, 0, 0.1),0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-16 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.15),0px 16px 24px 2px rgba(0, 0, 0, 0.1),0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-16 {
  cursor: pointer;
}
.c-Paper--elevation-hover-16:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.15),0px 16px 24px 2px rgba(0, 0, 0, 0.1),0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-17 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.15),0px 17px 26px 2px rgba(0, 0, 0, 0.1),0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-17 {
  cursor: pointer;
}
.c-Paper--elevation-hover-17:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.15),0px 17px 26px 2px rgba(0, 0, 0, 0.1),0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-18 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.15),0px 18px 28px 2px rgba(0, 0, 0, 0.1),0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-18 {
  cursor: pointer;
}
.c-Paper--elevation-hover-18:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.15),0px 18px 28px 2px rgba(0, 0, 0, 0.1),0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-19 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.15),0px 19px 29px 2px rgba(0, 0, 0, 0.1),0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-19 {
  cursor: pointer;
}
.c-Paper--elevation-hover-19:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.15),0px 19px 29px 2px rgba(0, 0, 0, 0.1),0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-20 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.15),0px 20px 31px 3px rgba(0, 0, 0, 0.1),0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-20 {
  cursor: pointer;
}
.c-Paper--elevation-hover-20:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.15),0px 20px 31px 3px rgba(0, 0, 0, 0.1),0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-21 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.15),0px 21px 33px 3px rgba(0, 0, 0, 0.1),0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-21 {
  cursor: pointer;
}
.c-Paper--elevation-hover-21:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.15),0px 21px 33px 3px rgba(0, 0, 0, 0.1),0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-22 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.15),0px 22px 35px 3px rgba(0, 0, 0, 0.1),0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-22 {
  cursor: pointer;
}
.c-Paper--elevation-hover-22:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.15),0px 22px 35px 3px rgba(0, 0, 0, 0.1),0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-23 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.15),0px 23px 36px 3px rgba(0, 0, 0, 0.1),0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-23 {
  cursor: pointer;
}
.c-Paper--elevation-hover-23:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.15),0px 23px 36px 3px rgba(0, 0, 0, 0.1),0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-24 {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.15),0px 24px 38px 3px rgba(0, 0, 0, 0.1),0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.c-Paper--elevation-hover-24 {
  cursor: pointer;
}
.c-Paper--elevation-hover-24:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.15),0px 24px 38px 3px rgba(0, 0, 0, 0.1),0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.c-Container, .component-taxonomy-list .grid, .component-featured-content-list .grid, .ui-tabs .container-tabs ~ .container-body .container-item .component-content-pdf, .ui-tabs .container-tabs ~ .container-body .container-item, .taxonomy-page .type-taxonomy-node, .page-form #pageBody, .page-homepage #pageBody > .configurable-layout, body:not(.page-home) #pageBody > .configurable-layout > .layout > .column-group > .centerColumn > .column-contents {
  position: relative;
  min-width: 1px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.c-Container--constrained {
  max-width: 1400px;
}
.c-Container--guttered {
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 768px) {
  .c-Container--guttered {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1152px) {
  .c-Container--guttered {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.c-Container--flush {
  padding: 0px;
}

.no-configurable-layout .c-Container, .no-configurable-layout .component-taxonomy-list .grid, .component-taxonomy-list .no-configurable-layout .grid, .no-configurable-layout .component-featured-content-list .grid, .component-featured-content-list .no-configurable-layout .grid, .no-configurable-layout .ui-tabs .container-tabs ~ .container-body .container-item .component-content-pdf, .ui-tabs .container-tabs ~ .container-body .container-item .no-configurable-layout .component-content-pdf, .no-configurable-layout .ui-tabs .container-tabs ~ .container-body .container-item, .ui-tabs .container-tabs ~ .container-body .no-configurable-layout .container-item, .no-configurable-layout .taxonomy-page .type-taxonomy-node, .taxonomy-page .no-configurable-layout .type-taxonomy-node, .no-configurable-layout .page-form #pageBody, .page-form .no-configurable-layout #pageBody, .no-configurable-layout .page-homepage #pageBody > .configurable-layout, .page-homepage .no-configurable-layout #pageBody > .configurable-layout, .no-configurable-layout body:not(.page-home) #pageBody > .configurable-layout > .layout > .column-group > .centerColumn > .column-contents, body:not(.page-home) .no-configurable-layout #pageBody > .configurable-layout > .layout > .column-group > .centerColumn > .column-contents {
  max-width: 1400px;
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 768px) {
  .no-configurable-layout .c-Container, .no-configurable-layout .component-taxonomy-list .grid, .component-taxonomy-list .no-configurable-layout .grid, .no-configurable-layout .component-featured-content-list .grid, .component-featured-content-list .no-configurable-layout .grid, .no-configurable-layout .ui-tabs .container-tabs ~ .container-body .container-item .component-content-pdf, .ui-tabs .container-tabs ~ .container-body .container-item .no-configurable-layout .component-content-pdf, .no-configurable-layout .ui-tabs .container-tabs ~ .container-body .container-item, .ui-tabs .container-tabs ~ .container-body .no-configurable-layout .container-item, .no-configurable-layout .taxonomy-page .type-taxonomy-node, .taxonomy-page .no-configurable-layout .type-taxonomy-node, .no-configurable-layout .page-form #pageBody, .page-form .no-configurable-layout #pageBody, .no-configurable-layout .page-homepage #pageBody > .configurable-layout, .page-homepage .no-configurable-layout #pageBody > .configurable-layout, .no-configurable-layout body:not(.page-home) #pageBody > .configurable-layout > .layout > .column-group > .centerColumn > .column-contents, body:not(.page-home) .no-configurable-layout #pageBody > .configurable-layout > .layout > .column-group > .centerColumn > .column-contents {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1152px) {
  .no-configurable-layout .c-Container, .no-configurable-layout .component-taxonomy-list .grid, .component-taxonomy-list .no-configurable-layout .grid, .no-configurable-layout .component-featured-content-list .grid, .component-featured-content-list .no-configurable-layout .grid, .no-configurable-layout .ui-tabs .container-tabs ~ .container-body .container-item .component-content-pdf, .ui-tabs .container-tabs ~ .container-body .container-item .no-configurable-layout .component-content-pdf, .no-configurable-layout .ui-tabs .container-tabs ~ .container-body .container-item, .ui-tabs .container-tabs ~ .container-body .no-configurable-layout .container-item, .no-configurable-layout .taxonomy-page .type-taxonomy-node, .taxonomy-page .no-configurable-layout .type-taxonomy-node, .no-configurable-layout .page-form #pageBody, .page-form .no-configurable-layout #pageBody, .no-configurable-layout .page-homepage #pageBody > .configurable-layout, .page-homepage .no-configurable-layout #pageBody > .configurable-layout, .no-configurable-layout body:not(.page-home) #pageBody > .configurable-layout > .layout > .column-group > .centerColumn > .column-contents, body:not(.page-home) .no-configurable-layout #pageBody > .configurable-layout > .layout > .column-group > .centerColumn > .column-contents {
    padding-left: 32px;
    padding-right: 32px;
  }
}

#pageBody > .configurable-layout {
  overflow: hidden;
  width: 100%;
}

body:not(.page-home) #pageBody > .configurable-layout > .layout > .column-group > .centerColumn {
  margin: 32px;
}
@media (min-width: 1152px) {
  .ie-11 .column-group.flex.flex\@md-row > .column {
    flex-basis: 0%;
  }
}
.ie-11 #pageBody.flex > #mainContent {
  height: 100%;
}

#pageBody > .configurable-layout > .layout > .column-group .beforeColumns {
  width: 100%;
}

.page-homepage .twitter-timeline {
  width: 100% !important;
}

.c-Card, body.page-advancedsearchpage .advanced-search, .taxonomy-page .type-taxonomy-node > .column-group, .page-form #pageBody, .type-homepage > .column-group > .column > .column-contents > .component-static, .type-homepage > .column-group > .column > .column-contents > .component-most-viewed-content, .type-homepage > .column-group > .column > .column-contents > .component-most-cited, .type-homepage > .column-group > .column > .column-contents > .ui-tabs {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow  195ms cubic-bezier(0.4, 0, 1, 1);
}
.c-Card--raises:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
}
.c-Card--square {
  border-radius: 0px;
}
.c-Card--raised {
  -webkit-transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
}
.c-Card--flush, .type-homepage > .column-group > .column > .column-contents > .component-static, .type-homepage > .column-group > .column > .column-contents > .component-most-viewed-content, .type-homepage > .column-group > .column > .column-contents > .component-most-cited, .type-homepage > .column-group > .column > .column-contents > .ui-tabs {
  padding: 0px;
}
.c-Card--gutters {
  padding: 8px;
}

body.page-advancedsearchpage .advanced-search {
  margin-top: 32px;
  margin-bottom: 32px;
}

.c-CoverImage, .cover-image {
  z-index: 2;
  position: relative;
}
.c-CoverImage .c-CoverImage__image, .c-CoverImage img, .cover-image .c-CoverImage__image, .cover-image img {
  margin: auto;
  display: block;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),0px 2px 2px 0px rgba(0, 0, 0, 0.1),0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  transition: box-shadow  195ms cubic-bezier(0.4, 0, 1, 1);
  border-radius: 0px;
}
.c-CoverImage .c-CoverImage__image:hover, .c-CoverImage img:hover, .cover-image .c-CoverImage__image:hover, .cover-image img:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15),0px 8px 10px 1px rgba(0, 0, 0, 0.1),0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.c-CoverImage.configurable-index-card-cover-image, .cover-image.configurable-index-card-cover-image {
  padding-right: 16px;
  padding-left: 16px;
}
.c-CoverImage.result-cover-image, .cover-image.result-cover-image {
  padding-right: 16px;
}
.c-CoverImage.metadata-cover-image, .cover-image.metadata-cover-image {
  padding-right: 16px;
}

.c-ActionBar {
  padding: 0px 4px;
  color: white;
  background-color: #0f356c;
}
.c-ActionBar:not(.c-ActionBar--standalone) {
  height: 100%;
}
.c-ActionBar .c-ActionBar__actions {
  list-style: none;
}
.c-ActionBar--standalone, .taxonomy-page .c-ActionBar {
  z-index: 8;
  position: fixed;
  height: auto;
  min-width: unset;
  padding: 2px;
  transition: box-shadow  195ms cubic-bezier(0.4, 0, 1, 1);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.15),0px 6px 10px 0px rgba(0, 0, 0, 0.1),0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  top: 240px;
  border-radius: 0px;
}
@media (min-width: 768px) {
  .c-ActionBar--standalone, .taxonomy-page .c-ActionBar {
    padding: 4px;
  }
}
.c-ActionBar--standalone:hover, .taxonomy-page .c-ActionBar:hover {
  transition: box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.15),0px 12px 17px 2px rgba(0, 0, 0, 0.1),0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.c-ActionBar--anchored-page-right {
  min-width: 56px;
  right: 6px;
}
.c-ActionBar--anchored-page-right .c-ActionBar__actions {
  display: flex;
  align-items: center;
}
.c-ActionBar--anchored-page-left {
  min-width: 56px;
  left: 6px;
}
.c-ActionBar--anchored-page-left .c-ActionBar__actions {
  display: flex;
  align-items: center;
}
.page-page .c-ActionBar, .page-news .c-ActionBar, .page-newsitem .c-ActionBar {
  display: none;
}

.taxonomy-page .c-ActionBar > .c-ActionBar__actions {
  position: relative;
  width: unset;
}

.c-ActionBar .ico-print, .c-ActionBar .c-IconButton--print {
  display: none;
}

.c-Dialog {
  z-index: 10001;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: 96px !important;
  transform: translate3d(-50%, -50%, 0);
  background-color: white;
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.15),0px 24px 38px 3px rgba(0, 0, 0, 0.1),0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
.c-Dialog--fullScreen {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 0px;
}
.c-Dialog--fullWidth {
  width: 100%;
}
.c-Dialog--xs {
  width: 100%;
  max-width: 480px;
  margin: 96px !important;
}
.c-Dialog--sm {
  width: 100%;
  max-width: 768px;
}
@media (min-width: 768px) {
  .c-Dialog--sm {
    margin: 96px !important;
  }
}
.c-Dialog--lg {
  width: 100%;
  max-width: 1152px;
}
@media (min-width: 1152px) {
  .c-Dialog--lg {
    margin: 96px !important;
  }
}
.c-Dialog--xl {
  width: 100%;
  max-width: 1300px;
}
@media (min-width: 1300px) {
  .c-Dialog--xl {
    margin: 96px !important;
  }
}

/**
 * @atom Button
 * @section Component > Button
 * @description
 *
 * @modifiers
 *
 * @markup
 *
 */
.c-Button, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .goog-te-gadget-simple.goog-te-gadget-simple {
  contain: paint;
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4rem;
  border: none;
  cursor: pointer;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-tap-highlight-color: transparent;
  color: #414141;
  background-color: transparent;
  will-change: background-color, color, box-shadow, opacity;
  transition: background-color  195ms cubic-bezier(0.4, 0, 1, 1), color  195ms cubic-bezier(0.4, 0, 1, 1), box-shadow  195ms cubic-bezier(0.4, 0, 1, 1), opacity  195ms cubic-bezier(0.4, 0, 1, 1);
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 4px;
}
.c-Button:focus, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:focus, .goog-te-gadget-simple:focus {
  outline: 2px solid #00abc5;
}
.c-Button:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:hover, .goog-te-gadget-simple:hover {
  background-color: rgba(195, 195, 195, 0.1);
  transition: background-color  225ms cubic-bezier(0, 0, 0.2, 1), color  225ms cubic-bezier(0, 0, 0.2, 1), box-shadow  225ms cubic-bezier(0, 0, 0.2, 1), opacity  195ms cubic-bezier(0.4, 0, 1, 1);
  outline: 0;
}
.c-Button--disabled {
  pointer-events: none;
  color: rgba(0, 0, 0, 0.26) !important;
}
.c-Button--disableRipple .c-Button__ripple {
  display: none !important;
}
.c-Button--small, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a {
  font-size: calc(1rem - 7.5%) !important;
  min-width: 64px;
  min-height: 32px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 8px;
  padding-left: 8px;
}
.c-Button--large {
  font-size: calc(1rem + 8%) !important;
  min-width: 112px;
  min-height: 40px;
  padding: 4px 24px;
}
.c-Button--full {
  width: 100%;
}
.c-Button--primary.c-Button--primary, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, [data-rhoton-links-visible=true] [data-rhoton], .goog-te-gadget-simple.goog-te-gadget-simple {
  color: #0f356c;
  background-color: transparent;
}
.c-Button--primary.c-Button--primary:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:hover:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:hover, [data-rhoton-links-visible=true] [data-rhoton]:hover, .goog-te-gadget-simple:hover {
  color: #0f356c;
  background-color: rgba(15, 53, 108, 0.1);
}
.c-Button--primary.c-Button--primary:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:before:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:before, [data-rhoton-links-visible=true] [data-rhoton]:before, .goog-te-gadget-simple:before, .c-Button--primary.c-Button--primary:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:after:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:after, [data-rhoton-links-visible=true] [data-rhoton]:after, .goog-te-gadget-simple:after {
  color: #0f356c;
}
.c-Button--secondary.c-Button--secondary {
  color: #f0f0f0;
  background-color: transparent;
}
.c-Button--secondary.c-Button--secondary:hover {
  color: #f0f0f0;
  background-color: rgba(240, 240, 240, 0.1);
}
.c-Button--secondary.c-Button--secondary:before, .c-Button--secondary.c-Button--secondary:after {
  color: #f0f0f0;
}
.c-Button--tertiary.c-Button--tertiary {
  color: #00abc5;
  background-color: transparent;
}
.c-Button--tertiary.c-Button--tertiary:hover {
  color: #00abc5;
  background-color: rgba(0, 171, 197, 0.1);
}
.c-Button--tertiary.c-Button--tertiary:before, .c-Button--tertiary.c-Button--tertiary:after {
  color: #00abc5;
}
.c-Button--contrast.c-Button--contrast {
  color: white;
  background-color: transparent;
}
.c-Button--contrast.c-Button--contrast:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.c-Button--contrast.c-Button--contrast:before, .c-Button--contrast.c-Button--contrast:after {
  color: white;
}
.c-Button--link, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode, [data-rhoton-links-visible=true] [data-rhoton], [class^=content-contributor-] .contributor-line a, .component-content-summary :not(.t-data-grid-pager) > a:not(.pdf-download):not(.toggle),
.component-content-html :not(.t-data-grid-pager) > a:not(.pdf-download):not(.toggle),
.page-page #pageContent :not(.t-data-grid-pager) > a:not(.pdf-download):not(.toggle),
.page-form #mainContent :not(.t-data-grid-pager) > a:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a:not(.pdf-download):not(.toggle) {
  min-width: auto;
  min-height: auto;
  margin: 0px;
  padding: 0px;
  text-transform: unset;
  text-decoration: none;
  color: #007f92;
}
.c-Button--link:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:hover:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode:hover, [data-rhoton-links-visible=true] [data-rhoton]:hover, [class^=content-contributor-] .contributor-line a:hover, .component-content-summary :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-content-html :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-page #pageContent :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-form #mainContent :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle) {
  background-color: rgba(0, 127, 146, 0.1);
}
.c-Button--link:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:after:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode:after, [data-rhoton-links-visible=true] [data-rhoton]:after, [class^=content-contributor-] .contributor-line a:after, .component-content-summary :not(.t-data-grid-pager) > a:after:not(.pdf-download):not(.toggle),
.component-content-html :not(.t-data-grid-pager) > a:after:not(.pdf-download):not(.toggle),
.page-page #pageContent :not(.t-data-grid-pager) > a:after:not(.pdf-download):not(.toggle),
.page-form #mainContent :not(.t-data-grid-pager) > a:after:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a:after:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a:after:not(.pdf-download):not(.toggle) {
  content: unset;
}
.c-Button--outlined, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .fancybox-close, .goog-te-gadget-simple.goog-te-gadget-simple {
  border: 1px solid #c3c3c3;
}
.c-Button--outlined--disabled {
  border: 1px solid rgba(0, 0, 0, 0.26) !important;
}
.c-Button--contained {
  background-color: #c3c3c3;
}
.c-Button--contained:hover, .c-Button--contained:focus {
  background-color: #aaaaaa;
}
.c-Button--contained.c-Button--primary, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a.c-Button--contained:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.c-Button--contained.taxonomyNode, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a.c-Button--contained, [data-rhoton-links-visible=true] .c-Button--contained[data-rhoton], .c-Button--contained.goog-te-gadget-simple {
  color: white;
  background-color: #0f356c;
}
.c-Button--contained.c-Button--primary:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a.c-Button--contained:hover:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.c-Button--contained.taxonomyNode:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a.c-Button--contained:hover, [data-rhoton-links-visible=true] .c-Button--contained[data-rhoton]:hover, .c-Button--contained.goog-te-gadget-simple:hover, .c-Button--contained.c-Button--primary:focus, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a.c-Button--contained:focus:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.c-Button--contained.taxonomyNode:focus, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a.c-Button--contained:focus, [data-rhoton-links-visible=true] .c-Button--contained[data-rhoton]:focus, .c-Button--contained.goog-te-gadget-simple:focus {
  color: white;
  background-color: #091f3f;
}
.c-Button--contained.c-Button--primary:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a.c-Button--contained:before:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.c-Button--contained.taxonomyNode:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a.c-Button--contained:before, [data-rhoton-links-visible=true] .c-Button--contained[data-rhoton]:before, .c-Button--contained.goog-te-gadget-simple:before, .c-Button--contained.c-Button--primary:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a.c-Button--contained:after:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.c-Button--contained.taxonomyNode:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a.c-Button--contained:after, [data-rhoton-links-visible=true] .c-Button--contained[data-rhoton]:after, .c-Button--contained.goog-te-gadget-simple:after {
  color: white;
}
.c-Button--contained.c-Button--secondary {
  color: white;
  background-color: #f0f0f0;
}
.c-Button--contained.c-Button--secondary:hover, .c-Button--contained.c-Button--secondary:focus {
  color: white;
  background-color: #d7d7d7;
}
.c-Button--contained.c-Button--secondary:before, .c-Button--contained.c-Button--secondary:after {
  color: white;
}
.c-Button--contained.c-Button--tertiary {
  color: white;
  background-color: #00abc5;
}
.c-Button--contained.c-Button--tertiary:hover, .c-Button--contained.c-Button--tertiary:focus {
  color: white;
  background-color: #007f92;
}
.c-Button--contained.c-Button--tertiary:before, .c-Button--contained.c-Button--tertiary:after {
  color: white;
}
.c-Button--contained.c-Button--contrast {
  color: black;
  background-color: white;
}
.c-Button--contained.c-Button--contrast:hover, .c-Button--contained.c-Button--contrast:focus {
  color: black;
  background-color: #e6e6e6;
}
.c-Button--contained.c-Button--disabled:not(.c-Button--contrast) {
  box-shadow: none !important;
  color: rgba(0, 0, 0, 0.26) !important;
  background-color: rgba(0, 0, 0, 0.12) !important;
}
.c-Button--fab {
  min-width: 56px;
  width: 56px;
  min-height: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  color: black;
  background-color: #c3c3c3;
}
.c-Button--fab:hover, .c-Button--fab:focus {
  color: black;
  background-color: #aaaaaa;
}
.c-Button--fab:after {
  background-color: black;
}
.c-Button--fab.c-Button--small, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a.c-Button--fab {
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  height: 40px;
}
.c-Button--fab.c-Button--primary, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a.c-Button--fab:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.c-Button--fab.taxonomyNode, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a.c-Button--fab, [data-rhoton-links-visible=true] .c-Button--fab[data-rhoton], .c-Button--fab.goog-te-gadget-simple {
  color: white;
  background-color: #091f3f;
}
.c-Button--fab.c-Button--secondary {
  color: white;
  background-color: #d7d7d7;
}
.c-Button--fab.c-Button--tertiary {
  color: white;
  background-color: #007f92;
}

.ico-email:before {
  padding-left: 0.3rem;
}

.c-Button__ripple {
  z-index: 10001;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3) !important;
  will-change: background-color, transform;
}

.c-Button__ripple--primaryContained, .c-Button__ripple--secondaryContained, .c-Button__ripple--contrast {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3) !important;
  will-change: background-color, transform;
}

.c-Button__ripple--primary {
  position: absolute;
  background-color: rgba(11, 40, 81, 0.3) !important;
  will-change: background-color, transform;
}

.c-Button__ripple--secondary {
  position: absolute;
  background-color: rgba(225, 225, 225, 0.3) !important;
  will-change: background-color, transform;
}

.c-Button__ripple--tertiary {
  position: absolute;
  background-color: rgba(0, 144, 166, 0.3) !important;
  will-change: background-color, transform;
}

.component-content-item .component-content-metadata a:not(.pdf-download) {
  word-wrap: break-word;
}

.goog-te-gadget-simple.goog-te-gadget-simple .goog-te-menu-value.goog-te-menu-value > span:nth-child(n+2) {
  display: none;
}

.c-Button--crossMark:before,
.c-Icon--crossMark:before {
  content: "";
  background: url(../img/icons/crossmark_bw.svg) 0px 0px no-repeat;
  background-origin: content-box;
  width: 24px;
}

.ui-accordion-header .c-Button, .ui-accordion-header .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .ui-accordion-header a, .ui-accordion-header .goog-te-gadget-simple.goog-te-gadget-simple {
  text-transform: inherit;
  color: inherit;
}

.c-Chip {
  position: relative;
  display: flex;
  align-items: center;
  top: 0px;
  height: 32px;
  padding: 0px;
  margin: 0px;
  border: 0px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  background-color: #00abc5;
  transition: background-color  225ms cubic-bezier(0.4, 0, 0.6, 1), color  225ms cubic-bezier(0.4, 0, 0.6, 1);
  will-change: background-color, color;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
}
.c-Chip--button {
  cursor: pointer;
  transition: background-color  225ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c-Chip--button:hover {
  background-color: #508a3c;
}
.c-Chip:hover {
  color: white;
  background-color: #508a3c;
}
.c-Chip:hover .c-Chip__label {
  color: white;
}
.c-Chip:hover .c-Chip__icon__link {
  color: white;
}

.c-Chip__label {
  padding-right: 12px;
  padding-left: 12px;
  padding-top: 0%;
  padding-bottom: 0%;
  font-family: "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: white;
  transition: color  225ms cubic-bezier(0.4, 0, 0.6, 1);
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-Chip__icon__link {
  display: flex;
  color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
  margin: 0 4px 0-8px;
  padding: 0px;
  text-decoration: none;
}
.c-Chip__icon__link--button {
  cursor: pointer;
  background-color: transparent;
}
.c-Chip__icon__link--button:before {
  transition: color  225ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c-Chip__icon__link--button:hover:before {
  color: white;
}
.c-Chip__icon__link--remove:before {
  content: "\" !important;
}
.c-Chip__icon__link--remove:before {
  top: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  height: 24px;
  width: 24px;
  -webkit-transform: none;
  transform: none;
  font-size: 24px;
  line-height: 24px;
  font-family: "pf2-icons", "Material Icons", "FontAwesome";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-transition: color  195ms cubic-bezier(0.4, 0, 1, 1);
  transition: color  195ms cubic-bezier(0.4, 0, 1, 1);
  float: none !important;
  display: inline-flex !important;
  flex-grow: unset !important;
  flex-shrink: unset !important;
  align-items: center !important;
  justify-content: center !important;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}
.c-Chip__icon__link > span {
  display: none;
}

.searchTerm {
  max-width: 100%;
}

.c-Backdrop, .c-alertDialog--backdrop {
  z-index: 999;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  opacity: 0;
  will-change: top, width, margin, opacity, transform;
  transition: opacity  195ms cubic-bezier(0.4, 0, 1, 1);
}
.c-Backdrop--dark, .c-alertDialog--backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}
.c-Backdrop--light {
  background-color: rgba(255, 255, 255, 0.4);
}
.c-Backdrop--visible, .c-alertDialog--backdrop {
  visibility: visible;
  opacity: 1;
  transition: opacity  225ms cubic-bezier(0, 0, 0.2, 1);
}

.c-DrawerOffset {
  will-change: padding;
  transition: padding  195ms cubic-bezier(0.4, 0, 1, 1);
}
.c-DrawerOffset--right.c-DrawerOffset--close {
  padding-right: 0px;
}
.c-DrawerOffset--right.c-DrawerOffset--open {
  padding-right: 425px;
  transition: padding  225ms cubic-bezier(0, 0, 0.2, 1);
}
.c-DrawerOffset--left.c-DrawerOffset--close {
  padding-left: 0px;
}
.c-DrawerOffset--left.c-DrawerOffset--open {
  padding-left: 425px;
  transition: padding  225ms cubic-bezier(0, 0, 0.2, 1);
}
.c-DrawerOffset--mini.c-DrawerOffset--right.c-DrawerOffset--close {
  padding-right: 53px;
}
.c-DrawerOffset--mini.c-DrawerOffset--right.c-DrawerOffset--minimize {
  padding-right: 12px;
}
.c-DrawerOffset--mini.c-DrawerOffset--left.c-DrawerOffset--close {
  padding-left: 53px;
}
.c-DrawerOffset--mini.c-DrawerOffset--left.c-DrawerOffset--minimize {
  padding-left: 12px;
}

.c-Drawer {
  contain: layout;
  z-index: 1000;
  position: fixed;
  top: 0px;
  bottom: 0px;
  width: 425px;
  display: flex;
  background-color: white;
  overflow-y: auto;
  will-change: width, transform, box-shadow;
  transition: transform  225ms cubic-bezier(0, 0, 0.2, 1), top  225ms cubic-bezier(0, 0, 0.2, 1), width  195ms cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 480px) {
  .c-Drawer {
    width: 100vw;
  }
}
.c-Drawer--top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
.c-Drawer--right {
  border-left: 1px solid rgba(0, 0, 0, 0.075);
}
.c-Drawer--bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.075);
}
.c-Drawer--left {
  border-right: 1px solid rgba(0, 0, 0, 0.075);
}
.c-Drawer--top {
  top: 0px;
  right: 0px;
  bottom: auto;
  left: 0px;
}
.c-Drawer--right {
  right: 0px;
  left: auto;
}
.c-Drawer--bottom {
  top: auto;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.c-Drawer--left {
  left: 0px;
  right: auto;
}
.c-Drawer--expand {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15),0px 2px 2px 0px rgba(0, 0, 0, 0.1),0px 3px 1px -2px rgba(0, 0, 0, 0.12);
}
@media (min-width: 1152px) {
  .c-Drawer--expand {
    width: 60vw;
    transition: transform  195ms cubic-bezier(0.4, 0, 1, 1), top  225ms cubic-bezier(0, 0, 0.2, 1), width  225ms cubic-bezier(0, 0, 0.2, 1);
  }
}
.c-Drawer--close {
  transition: transform  195ms cubic-bezier(0.4, 0, 1, 1), top  225ms cubic-bezier(0, 0, 0.2, 1);
}
.c-Drawer--close.c-Drawer--left {
  transform: translate3d(-110%, 0, 0);
}
.c-Drawer--close.c-Drawer--right {
  transform: translate3d(110%, 0, 0);
}
.c-Drawer--mini {
  overflow-y: visible !important;
}
.c-Drawer--mini.c-Drawer--close.c-Drawer--left {
  transform: translateX(-100%) translateX(53px);
}
.c-Drawer--mini.c-Drawer--close.c-Drawer--right {
  transform: translateX(100%) translateX(-53px);
}
.c-Drawer--mini.c-Drawer--minimize.c-Drawer--left {
  transform: translateX(-100%) translateX(12px);
}
.c-Drawer--mini.c-Drawer--minimize.c-Drawer--right {
  transform: translateX(100%) translateX(-12px);
}
.c-Drawer__content {
  contain: layout;
  width: 100%;
  height: 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 16px;
  overscroll-behavior: none;
  background-color: white;
}
.c-Drawer .column-controls {
  z-index: 2;
}
.c-Drawer--temporary {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.15),0px 16px 24px 2px rgba(0, 0, 0, 0.1),0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
@media (min-width: 1152px) {
  .c-Drawer--persistent {
    box-shadow: none !important;
  }
}

.c-Drawer .component-content-metadata, .c-Drawer .component-volume-issue-selector {
  margin: 0 32px 24px;
}
.c-Drawer .ui-accordion .component-content-metadata {
  margin: 0px;
}
.c-Drawer .citationText {
  word-break: break-word;
}

.c-Footer {
  z-index: 1001;
  position: relative;
  background-color: #0f356c;
  text-align: center;
}
.c-Footer a:not(.c-Button):not(.goog-te-gadget-simple.goog-te-gadget-simple) {
  text-decoration: none;
}
.c-Footer a:not(.c-Button):not(.goog-te-gadget-simple.goog-te-gadget-simple):hover {
  text-decoration: underline;
}
.c-Footer ul {
  list-style: none;
}
.c-Footer ul li {
  display: inline-block;
}
.c-Footer #footerCopyright {
  margin-bottom: 20px;
}
.c-Footer #footerLogoWrap {
  margin-bottom: 20px;
}
.c-Footer p.attribution {
  display: inline-block;
  margin: 0;
}
.c-Footer #footerLogo {
  display: inline-block;
}

@media screen and (min-width: 1200px) {
  #footerWrap #footerCopyright {
    float: left;
    clear: left;
  }
  #footerWrap #footerNav {
    float: right;
    clear: right;
  }
  #footerWrap #footerLogoWrap {
    float: right;
    clear: right;
  }
}
.ie-11 body {
  height: 100%;
}
.ie-11 body .c-App {
  height: 0;
}
.ie-11 body #headerWrap,
.ie-11 body #footerWrap,
.ie-11 body #columnWrapper {
  flex-shrink: 0;
}

.c-FormControl {
  position: relative !important;
  min-width: 0 !important;
  padding: 0px !important;
  margin-top: 0px !important;
  margin-left: 0px !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
  display: inline-flex !important;
  flex-direction: column !important;
}
.c-FormControl--fullWidth {
  width: 100% !important;
  min-width: 100% !important;
}
.c-FormControl--dense {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.c-FormControl--normal {
  margin-top: 16px !important;
  margin-bottom: 8px !important;
}
.c-FormControl--isDisabled {
  pointer-events: none;
}

.c-FormHelperText {
  position: relative !important;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  float: none !important;
  margin: 8px 0px 0px 0px !important;
  font-family: "Noto Sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  text-align: left !important;
  color: black !important;
  -webkit-font-smoothing: subpixel-antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  transition: opacity  225ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c-FormHelperText--isVisible {
  opacity: 1;
}

.c-FormHelperText_message {
  display: flex;
  -webkit-font-smoothing: subpixel-antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
.c-FormHelperText_message--error {
  color: #f44336 !important;
}

.c-FormHelperText_counter--error {
  color: #f44336 !important;
}

.c-Header {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.c-Header .header-placeholders, .c-Header__placeholder {
  order: 1;
  min-width: 100%;
  padding-bottom: 8px;
}

.c-IconButton, [data-js=hitHighlightingClose], [data-js=hitHighlightingNext], [data-js=hitHighlightingPrev], [data-js=hitHighlightingContent] {
  position: relative;
  margin: 0;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  border: 0;
  font-size: 1.5rem;
  border-radius: 50%;
  overflow: visible;
  cursor: pointer;
  background-color: transparent;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 200ms cubic-bezier(0.4, 0, 1, 1), color 200ms cubic-bezier(0.4, 0, 1, 1);
  color: rgba(0, 0, 0, 0.54);
}
.c-IconButton:focus, [data-js=hitHighlightingClose]:focus, [data-js=hitHighlightingNext]:focus, [data-js=hitHighlightingPrev]:focus, [data-js=hitHighlightingContent]:focus {
  outline: 2px solid #00abc5;
}
.c-IconButton:hover, [data-js=hitHighlightingClose]:hover, [data-js=hitHighlightingNext]:hover, [data-js=hitHighlightingPrev]:hover, [data-js=hitHighlightingContent]:hover {
  background-color: rgba(0, 0, 0, 0.08);
  outline: 0;
}
.c-IconButton--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-IconButton::moz-focus-inner, [data-js=hitHighlightingClose]::moz-focus-inner, [data-js=hitHighlightingNext]::moz-focus-inner, [data-js=hitHighlightingPrev]::moz-focus-inner, [data-js=hitHighlightingContent]::moz-focus-inner {
  border-style: none;
}
.c-IconButton.c-IconButton--disabled, .c-IconButton--disabled[data-js=hitHighlightingClose], .c-IconButton--disabled[data-js=hitHighlightingNext], .c-IconButton--disabled[data-js=hitHighlightingPrev], .c-IconButton--disabled[data-js=hitHighlightingContent] {
  pointer-events: none !important;
  cursor: default !important;
  color: rgba(0, 0, 0, 0.26) !important;
  background-color: transparent !important;
}
.c-IconButton--disableRipple .c-IconButton__ripple {
  display: none !important;
}
.c-IconButton.c-IconButton--disableHover:hover, .c-IconButton--disableHover[data-js=hitHighlightingClose]:hover, .c-IconButton--disableHover[data-js=hitHighlightingNext]:hover, .c-IconButton--disableHover[data-js=hitHighlightingPrev]:hover, .c-IconButton--disableHover[data-js=hitHighlightingContent]:hover {
  background-color: transparent !important;
}
.c-IconButton.c-IconButton--disableRipple.c-IconButton__ripple, .c-IconButton--disableRipple.c-IconButton__ripple[data-js=hitHighlightingClose], .c-IconButton--disableRipple.c-IconButton__ripple[data-js=hitHighlightingNext], .c-IconButton--disableRipple.c-IconButton__ripple[data-js=hitHighlightingPrev], .c-IconButton--disableRipple.c-IconButton__ripple[data-js=hitHighlightingContent] {
  display: none !important;
}
.c-IconButton.c-IconButton--inherit, .c-IconButton--inherit[data-js=hitHighlightingClose], .c-IconButton--inherit[data-js=hitHighlightingNext], .c-IconButton--inherit[data-js=hitHighlightingPrev], .c-IconButton--inherit[data-js=hitHighlightingContent] {
  color: inherit;
}
.c-IconButton.c-IconButton--primary, .c-IconButton--primary[data-js=hitHighlightingClose], .c-IconButton--primary[data-js=hitHighlightingNext], .c-IconButton--primary[data-js=hitHighlightingPrev], .c-IconButton--primary[data-js=hitHighlightingContent] {
  color: #0f356c;
}
.c-IconButton.c-IconButton--primary:focus, .c-IconButton--primary[data-js=hitHighlightingClose]:focus, .c-IconButton--primary[data-js=hitHighlightingNext]:focus, .c-IconButton--primary[data-js=hitHighlightingPrev]:focus, .c-IconButton--primary[data-js=hitHighlightingContent]:focus {
  outline: 2px solid #00abc5;
}
.c-IconButton.c-IconButton--primary:hover, .c-IconButton--primary[data-js=hitHighlightingClose]:hover, .c-IconButton--primary[data-js=hitHighlightingNext]:hover, .c-IconButton--primary[data-js=hitHighlightingPrev]:hover, .c-IconButton--primary[data-js=hitHighlightingContent]:hover {
  background-color: rgba(15, 53, 108, 0.08);
  outline: 0;
}
.c-IconButton.c-IconButton--primary--no-ripple:hover, .c-IconButton--primary--no-ripple[data-js=hitHighlightingClose]:hover, .c-IconButton--primary--no-ripple[data-js=hitHighlightingNext]:hover, .c-IconButton--primary--no-ripple[data-js=hitHighlightingPrev]:hover, .c-IconButton--primary--no-ripple[data-js=hitHighlightingContent]:hover {
  background-color: initial;
  outline: initial;
}
.c-IconButton.c-IconButton--secondary, .c-IconButton--secondary[data-js=hitHighlightingClose], .c-IconButton--secondary[data-js=hitHighlightingNext], .c-IconButton--secondary[data-js=hitHighlightingPrev], .c-IconButton--secondary[data-js=hitHighlightingContent] {
  color: #f0f0f0;
}
.c-IconButton.c-IconButton--secondary:focus, .c-IconButton--secondary[data-js=hitHighlightingClose]:focus, .c-IconButton--secondary[data-js=hitHighlightingNext]:focus, .c-IconButton--secondary[data-js=hitHighlightingPrev]:focus, .c-IconButton--secondary[data-js=hitHighlightingContent]:focus {
  outline: 2px solid #00abc5;
}
.c-IconButton.c-IconButton--secondary:hover, .c-IconButton--secondary[data-js=hitHighlightingClose]:hover, .c-IconButton--secondary[data-js=hitHighlightingNext]:hover, .c-IconButton--secondary[data-js=hitHighlightingPrev]:hover, .c-IconButton--secondary[data-js=hitHighlightingContent]:hover {
  background-color: rgba(240, 240, 240, 0.08);
  outline: 0;
}
.c-IconButton.c-IconButton--secondary--no-ripple:hover, .c-IconButton--secondary--no-ripple[data-js=hitHighlightingClose]:hover, .c-IconButton--secondary--no-ripple[data-js=hitHighlightingNext]:hover, .c-IconButton--secondary--no-ripple[data-js=hitHighlightingPrev]:hover, .c-IconButton--secondary--no-ripple[data-js=hitHighlightingContent]:hover {
  background-color: initial;
  outline: initial;
}
.c-IconButton.c-IconButton--tertiary, .c-IconButton--tertiary[data-js=hitHighlightingClose], .c-IconButton--tertiary[data-js=hitHighlightingNext], .c-IconButton--tertiary[data-js=hitHighlightingPrev], .c-IconButton--tertiary[data-js=hitHighlightingContent] {
  color: #00abc5;
}
.c-IconButton.c-IconButton--tertiary:focus, .c-IconButton--tertiary[data-js=hitHighlightingClose]:focus, .c-IconButton--tertiary[data-js=hitHighlightingNext]:focus, .c-IconButton--tertiary[data-js=hitHighlightingPrev]:focus, .c-IconButton--tertiary[data-js=hitHighlightingContent]:focus {
  outline: 2px solid #00abc5;
}
.c-IconButton.c-IconButton--tertiary:hover, .c-IconButton--tertiary[data-js=hitHighlightingClose]:hover, .c-IconButton--tertiary[data-js=hitHighlightingNext]:hover, .c-IconButton--tertiary[data-js=hitHighlightingPrev]:hover, .c-IconButton--tertiary[data-js=hitHighlightingContent]:hover {
  background-color: rgba(0, 171, 197, 0.08);
  outline: 0;
}
.c-IconButton.c-IconButton--tertiary--no-ripple:hover, .c-IconButton--tertiary--no-ripple[data-js=hitHighlightingClose]:hover, .c-IconButton--tertiary--no-ripple[data-js=hitHighlightingNext]:hover, .c-IconButton--tertiary--no-ripple[data-js=hitHighlightingPrev]:hover, .c-IconButton--tertiary--no-ripple[data-js=hitHighlightingContent]:hover {
  background-color: initial;
  outline: initial;
}
.c-IconButton.c-IconButton--contrast, [data-js=hitHighlightingClose], [data-js=hitHighlightingNext], [data-js=hitHighlightingPrev], [data-js=hitHighlightingContent] {
  color: white;
}
.c-IconButton.c-IconButton--contrast:focus, [data-js=hitHighlightingClose]:focus, [data-js=hitHighlightingNext]:focus, [data-js=hitHighlightingPrev]:focus, [data-js=hitHighlightingContent]:focus {
  outline: 2px solid #00abc5;
}
.c-IconButton.c-IconButton--contrast:hover, [data-js=hitHighlightingClose]:hover, [data-js=hitHighlightingNext]:hover, [data-js=hitHighlightingPrev]:hover, [data-js=hitHighlightingContent]:hover {
  background-color: rgba(255, 255, 255, 0.08);
  outline: 0;
}
.c-IconButton.c-IconButton--contrast--no-ripple:hover, .c-IconButton--contrast--no-ripple[data-js=hitHighlightingClose]:hover, .c-IconButton--contrast--no-ripple[data-js=hitHighlightingNext]:hover, .c-IconButton--contrast--no-ripple[data-js=hitHighlightingPrev]:hover, .c-IconButton--contrast--no-ripple[data-js=hitHighlightingContent]:hover {
  background-color: initial;
  outline: initial;
}
.c-IconButton.c-IconButton--tiny, .c-IconButton--tiny[data-js=hitHighlightingClose], .c-IconButton--tiny[data-js=hitHighlightingNext], .c-IconButton--tiny[data-js=hitHighlightingPrev], .c-IconButton--tiny[data-js=hitHighlightingContent] {
  padding: 0%;
  font-size: 20px;
}
.c-IconButton.c-IconButton--small, .c-IconButton--small[data-js=hitHighlightingClose], .c-IconButton--small[data-js=hitHighlightingNext], .c-IconButton--small[data-js=hitHighlightingPrev], .c-IconButton--small[data-js=hitHighlightingContent] {
  padding: 8px;
  font-size: 20px;
}
.c-IconButton.c-IconButton--large, .c-IconButton--large[data-js=hitHighlightingClose], .c-IconButton--large[data-js=hitHighlightingNext], .c-IconButton--large[data-js=hitHighlightingPrev], .c-IconButton--large[data-js=hitHighlightingContent] {
  padding: 16px;
  font-size: 30px;
}
.c-IconButton:before, [data-js=hitHighlightingClose]:before, [data-js=hitHighlightingNext]:before, [data-js=hitHighlightingPrev]:before, [data-js=hitHighlightingContent]:before {
  width: 100%;
  top: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  height: 1em;
  width: 1em;
  display: flex;
  align-items: inherit;
  justify-content: inherit;
  color: currentColor;
  font-family: "pf2-icons", "Material Icons", "FontAwesome";
  font-size: inherit;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  transition: color  195ms cubic-bezier(0.4, 0, 1, 1);
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}
.c-IconButton--dRotation:before {
  content: "" !important;
}
.c-IconButton--acUnit:before {
  content: "" !important;
}
.c-IconButton--accessAlarms:before {
  content: "" !important;
}
.c-IconButton--accessibility:before {
  content: "" !important;
}
.c-IconButton--accessibilityNew:before {
  content: "" !important;
}
.c-IconButton--accessible:before {
  content: "" !important;
}
.c-IconButton--accessibleForward:before {
  content: "" !important;
}
.c-IconButton--accountBalance:before {
  content: "" !important;
}
.c-IconButton--accountBalanceWallet:before {
  content: "" !important;
}
.c-IconButton--accountBox:before {
  content: "" !important;
}
.c-IconButton--accountCircle:before {
  content: "" !important;
}
.c-IconButton--adb:before {
  content: "" !important;
}
.c-IconButton--add:before {
  content: "" !important;
}
.c-IconButton--addAPhoto:before {
  content: "" !important;
}
.c-IconButton--alarmAdd:before {
  content: "" !important;
}
.c-IconButton--addAlert:before {
  content: "" !important;
}
.c-IconButton--addBox:before {
  content: "" !important;
}
.c-IconButton--addCircle:before {
  content: "" !important;
}
.c-IconButton--controlPoint:before {
  content: "" !important;
}
.c-IconButton--addComment:before {
  content: "" !important;
}
.c-IconButton--addLocation:before {
  content: "" !important;
}
.c-IconButton--addPhotoAlternate:before {
  content: "" !important;
}
.c-IconButton--addShoppingCart:before {
  content: "" !important;
}
.c-IconButton--addToHomeScreen:before {
  content: "" !important;
}
.c-IconButton--addToPhotos:before {
  content: "" !important;
}
.c-IconButton--addToQueue:before {
  content: "" !important;
}
.c-IconButton--adjust:before {
  content: "" !important;
}
.c-IconButton--airlineSeatFlat:before {
  content: "" !important;
}
.c-IconButton--airlineSeatFlatAngled:before {
  content: "" !important;
}
.c-IconButton--airlineSeatIndividualSuite:before {
  content: "" !important;
}
.c-IconButton--airlineSeatLegroomExtra:before {
  content: "" !important;
}
.c-IconButton--airlineSeatLegroomNormal:before {
  content: "" !important;
}
.c-IconButton--airlineSeatLegroomReduced:before {
  content: "" !important;
}
.c-IconButton--airlineSeatReclineExtra:before {
  content: "" !important;
}
.c-IconButton--airlineSeatReclineNormal:before {
  content: "" !important;
}
.c-IconButton--airplanemodeInactive:before {
  content: "" !important;
}
.c-IconButton--airplay:before {
  content: "" !important;
}
.c-IconButton--airportShuttle:before {
  content: "" !important;
}
.c-IconButton--alarm:before {
  content: "" !important;
}
.c-IconButton--alarmOff:before {
  content: "" !important;
}
.c-IconButton--alarmOn:before {
  content: "" !important;
}
.c-IconButton--album:before {
  content: "" !important;
}
.c-IconButton--allInbox:before {
  content: "" !important;
}
.c-IconButton--allInclusive:before {
  content: "" !important;
}
.c-IconButton--allOut:before {
  content: "" !important;
}
.c-IconButton--alternateEmail:before {
  content: "" !important;
}
.c-IconButton--android:before {
  content: "" !important;
}
.c-IconButton--announcement:before {
  content: "" !important;
}
.c-IconButton--apps:before {
  content: "" !important;
}
.c-IconButton--archive:before {
  content: "" !important;
}
.c-IconButton--arrowBack:before {
  content: "" !important;
}
.c-IconButton--arrowBackIos:before {
  content: "" !important;
}
.c-IconButton--arrowDownward:before {
  content: "" !important;
}
.c-IconButton--arrowDropDown:before {
  content: "" !important;
}
.c-IconButton--arrowDropDownCircle:before {
  content: "" !important;
}
.c-IconButton--arrowDropUp:before {
  content: "" !important;
}
.c-IconButton--arrowForward:before {
  content: "" !important;
}
.c-IconButton--arrowForwardIos:before {
  content: "" !important;
}
.c-IconButton--arrowLeft:before {
  content: "" !important;
}
.c-IconButton--arrowRight:before {
  content: "" !important;
}
.c-IconButton--arrowRightAlt:before {
  content: "" !important;
}
.c-IconButton--arrowUpward:before {
  content: "" !important;
}
.c-IconButton--artTrack:before {
  content: "" !important;
}
.c-IconButton--aspectRatio:before {
  content: "" !important;
}
.c-IconButton--assessment:before {
  content: "" !important;
}
.c-IconButton--assignment:before {
  content: "" !important;
}
.c-IconButton--assignmentInd:before {
  content: "" !important;
}
.c-IconButton--assignmentLate:before {
  content: "" !important;
}
.c-IconButton--assignmentReturn:before {
  content: "" !important;
}
.c-IconButton--assignmentReturned:before {
  content: "" !important;
}
.c-IconButton--assignmentTurnedIn:before {
  content: "" !important;
}
.c-IconButton--assistant:before {
  content: "" !important;
}
.c-IconButton--flag:before {
  content: "" !important;
}
.c-IconButton--atm:before {
  content: "" !important;
}
.c-IconButton--attachFile:before {
  content: "" !important;
}
.c-IconButton--attachMoney:before {
  content: "" !important;
}
.c-IconButton--attachment:before {
  content: "" !important;
}
.c-IconButton--audiotrack:before {
  content: "" !important;
}
.c-IconButton--autorenew:before {
  content: "" !important;
}
.c-IconButton--avTimer:before {
  content: "" !important;
}
.c-IconButton--backspace:before {
  content: "" !important;
}
.c-IconButton--cloudUpload:before {
  content: "" !important;
}
.c-IconButton--ballot:before {
  content: "" !important;
}
.c-IconButton--barChart:before {
  content: "" !important;
}
.c-IconButton--batteryAlert:before {
  content: "" !important;
}
.c-IconButton--batteryChargingFull:before {
  content: "" !important;
}
.c-IconButton--batteryStd:before {
  content: "" !important;
}
.c-IconButton--batteryUnknown:before {
  content: "" !important;
}
.c-IconButton--beachAccess:before {
  content: "" !important;
}
.c-IconButton--beenhere:before {
  content: "" !important;
}
.c-IconButton--blank:before {
  content: " " !important;
}
.c-IconButton--block:before {
  content: "" !important;
}
.c-IconButton--bluetooth:before {
  content: "" !important;
}
.c-IconButton--bluetoothSearching:before {
  content: "" !important;
}
.c-IconButton--bluetoothConnected:before {
  content: "" !important;
}
.c-IconButton--bluetoothDisabled:before {
  content: "" !important;
}
.c-IconButton--blurCircular:before {
  content: "" !important;
}
.c-IconButton--blurLinear:before {
  content: "" !important;
}
.c-IconButton--blurOff:before {
  content: "" !important;
}
.c-IconButton--blurOn:before {
  content: "" !important;
}
.c-IconButton--book:before {
  content: "" !important;
}
.c-IconButton--bookmarks:before {
  content: "" !important;
}
.c-IconButton--borderAll:before {
  content: "" !important;
}
.c-IconButton--borderBottom:before {
  content: "" !important;
}
.c-IconButton--borderClear:before {
  content: "" !important;
}
.c-IconButton--borderColor:before {
  content: "" !important;
}
.c-IconButton--borderHorizontal:before {
  content: "" !important;
}
.c-IconButton--borderInner:before {
  content: "" !important;
}
.c-IconButton--borderLeft:before {
  content: "" !important;
}
.c-IconButton--borderOuter:before {
  content: "" !important;
}
.c-IconButton--borderRight:before {
  content: "" !important;
}
.c-IconButton--borderStyle:before {
  content: "" !important;
}
.c-IconButton--borderTop:before {
  content: "" !important;
}
.c-IconButton--borderVertical:before {
  content: "" !important;
}
.c-IconButton--brandingWatermark:before {
  content: "" !important;
}
.c-IconButton--brightness1:before {
  content: "" !important;
}
.c-IconButton--brightness2:before {
  content: "" !important;
}
.c-IconButton--brightness3:before {
  content: "" !important;
}
.c-IconButton--brightness4:before {
  content: "" !important;
}
.c-IconButton--brightnessAuto:before {
  content: "" !important;
}
.c-IconButton--brightnessHigh:before {
  content: "" !important;
}
.c-IconButton--brightnessLow:before {
  content: "" !important;
}
.c-IconButton--brightnessMedium:before {
  content: "" !important;
}
.c-IconButton--brokenImage:before {
  content: "" !important;
}
.c-IconButton--brush:before {
  content: "" !important;
}
.c-IconButton--bubbleChart:before {
  content: "" !important;
}
.c-IconButton--bugReport:before {
  content: "" !important;
}
.c-IconButton--build:before {
  content: "" !important;
}
.c-IconButton--burstMode:before {
  content: "" !important;
}
.c-IconButton--domain:before {
  content: "" !important;
}
.c-IconButton--businessCenter:before {
  content: "" !important;
}
.c-IconButton--cached:before {
  content: "" !important;
}
.c-IconButton--cake:before {
  content: "" !important;
}
.c-IconButton--calendarToday:before {
  content: "" !important;
}
.c-IconButton--calendarViewDay:before {
  content: "" !important;
}
.c-IconButton--callEnd:before {
  content: "" !important;
}
.c-IconButton--callMade:before {
  content: "" !important;
}
.c-IconButton--callMissed:before {
  content: "" !important;
}
.c-IconButton--callMissedOutgoing:before {
  content: "" !important;
}
.c-IconButton--callReceived:before {
  content: "" !important;
}
.c-IconButton--callSplit:before {
  content: "" !important;
}
.c-IconButton--callToAction:before {
  content: "" !important;
}
.c-IconButton--camera:before {
  content: "" !important;
}
.c-IconButton--cameraEnhance:before {
  content: "" !important;
}
.c-IconButton--cameraFront:before {
  content: "" !important;
}
.c-IconButton--cameraRear:before {
  content: "" !important;
}
.c-IconButton--cameraRoll:before {
  content: "" !important;
}
.c-IconButton--cancel:before {
  content: "" !important;
}
.c-IconButton--cancelPresentation:before {
  content: "" !important;
}
.c-IconButton--cardMembership:before {
  content: "" !important;
}
.c-IconButton--cardTravel:before {
  content: "" !important;
}
.c-IconButton--casino:before {
  content: "" !important;
}
.c-IconButton--cast:before {
  content: "" !important;
}
.c-IconButton--castConnected:before {
  content: "" !important;
}
.c-IconButton--cellWifi:before {
  content: "" !important;
}
.c-IconButton--centerFocusStrong:before {
  content: "" !important;
}
.c-IconButton--centerFocusWeak:before {
  content: "" !important;
}
.c-IconButton--changeHistory:before {
  content: "" !important;
}
.c-IconButton--chat:before {
  content: "" !important;
}
.c-IconButton--chatBubble:before {
  content: "" !important;
}
.c-IconButton--chatBubbleOutline:before {
  content: "" !important;
}
.c-IconButton--check:before {
  content: "" !important;
}
.c-IconButton--checkBox, .c-FormControlLabel__input[type=checkbox]:checked + .c-FormControlLabel__label {
  padding: 9px !important;
}
.c-IconButton--checkBox:before, .c-FormControlLabel__input[type=checkbox]:checked + .c-FormControlLabel__label:before {
  content: "" !important;
}
.c-IconButton--checkBoxOutlineBlank, .c-FormControlLabel__input[type=checkbox] + .c-FormControlLabel__label {
  padding: 9px !important;
}
.c-IconButton--checkBoxOutlineBlank:before, .c-FormControlLabel__input[type=checkbox] + .c-FormControlLabel__label:before {
  content: "" !important;
}
.c-IconButton--checkCircle:before {
  content: "" !important;
}
.c-IconButton--checkCircleOutline:before {
  content: "" !important;
}
.c-IconButton--childCare:before {
  content: "" !important;
}
.c-IconButton--childFriendly:before {
  content: "" !important;
}
.c-IconButton--chromeReaderMode:before {
  content: "" !important;
}
.c-IconButton--class:before {
  content: "" !important;
}
.c-IconButton--clearAll:before {
  content: "" !important;
}
.c-IconButton--close:before, [data-js=hitHighlightingClose]:before {
  content: "" !important;
}
.c-IconButton--closedCaption:before {
  content: "" !important;
}
.c-IconButton--cloudCircle:before {
  content: "" !important;
}
.c-IconButton--cloudDone:before {
  content: "" !important;
}
.c-IconButton--cloudDownload:before {
  content: "" !important;
}
.c-IconButton--cloudOff:before {
  content: "" !important;
}
.c-IconButton--cloudQueue:before {
  content: "" !important;
}
.c-IconButton--code:before {
  content: "" !important;
}
.c-IconButton--collectionsBookmark:before {
  content: "" !important;
}
.c-IconButton--colorize:before {
  content: "" !important;
}
.c-IconButton--comment:before {
  content: "" !important;
}
.c-IconButton--commute:before {
  content: "" !important;
}
.c-IconButton--compare:before {
  content: "" !important;
}
.c-IconButton--compareArrows:before {
  content: "" !important;
}
.c-IconButton--compassCalibration:before {
  content: "" !important;
}
.c-IconButton--confirmationNumber:before {
  content: "" !important;
}
.c-IconButton--contactMail:before {
  content: "" !important;
}
.c-IconButton--contactPhone:before {
  content: "" !important;
}
.c-IconButton--contactSupport:before {
  content: "" !important;
}
.c-IconButton--contacts:before {
  content: "" !important;
}
.c-IconButton--contentCopy:before {
  content: "" !important;
}
.c-IconButton--contentCut:before {
  content: "" !important;
}
.c-IconButton--contentPaste:before {
  content: "" !important;
}
.c-IconButton--controlCamera:before {
  content: "" !important;
}
.c-IconButton--controlPointDuplicate:before {
  content: "" !important;
}
.c-IconButton--copyright:before {
  content: "" !important;
}
.c-IconButton--createNewFolder:before {
  content: "" !important;
}
.c-IconButton--crop:before {
  content: "" !important;
}
.c-IconButton--crop169:before {
  content: "" !important;
}
.c-IconButton--crop32:before {
  content: "" !important;
}
.c-IconButton--cropLandscape:before {
  content: "" !important;
}
.c-IconButton--crop75:before {
  content: "" !important;
}
.c-IconButton--cropDin:before {
  content: "" !important;
}
.c-IconButton--cropFree:before {
  content: "" !important;
}
.c-IconButton--cropOriginal:before {
  content: "" !important;
}
.c-IconButton--cropPortrait:before {
  content: "" !important;
}
.c-IconButton--cropRotate:before {
  content: "" !important;
}
.c-IconButton--cropSquare:before {
  content: "" !important;
}
.c-IconButton--dashboard:before {
  content: "" !important;
}
.c-IconButton--dataUsage:before {
  content: "" !important;
}
.c-IconButton--dateRange:before {
  content: "" !important;
}
.c-IconButton--dehaze:before {
  content: "" !important;
}
.c-IconButton--delete:before {
  content: "" !important;
}
.c-IconButton--deleteForever:before {
  content: "" !important;
}
.c-IconButton--deleteOutline:before {
  content: "" !important;
}
.c-IconButton--deleteSweep:before {
  content: "" !important;
}
.c-IconButton--departureBoard:before {
  content: "" !important;
}
.c-IconButton--description:before {
  content: "" !important;
}
.c-IconButton--desktopAccessDisabled:before {
  content: "" !important;
}
.c-IconButton--desktopMac:before {
  content: "" !important;
}
.c-IconButton--desktopWindows:before {
  content: "" !important;
}
.c-IconButton--details:before {
  content: "" !important;
}
.c-IconButton--developerBoard:before {
  content: "" !important;
}
.c-IconButton--developerMode:before {
  content: "" !important;
}
.c-IconButton--deviceHub:before {
  content: "" !important;
}
.c-IconButton--deviceUnknown:before {
  content: "" !important;
}
.c-IconButton--devicesOther:before {
  content: "" !important;
}
.c-IconButton--dialerSip:before {
  content: "" !important;
}
.c-IconButton--dialpad:before {
  content: "" !important;
}
.c-IconButton--directions:before {
  content: "" !important;
}
.c-IconButton--directionsBike:before {
  content: "" !important;
}
.c-IconButton--directionsBoat:before {
  content: "" !important;
}
.c-IconButton--directionsBus:before {
  content: "" !important;
}
.c-IconButton--directionsCar:before {
  content: "" !important;
}
.c-IconButton--directionsRailway:before {
  content: "" !important;
}
.c-IconButton--directionsRun:before {
  content: "" !important;
}
.c-IconButton--directionsTransit:before {
  content: "" !important;
}
.c-IconButton--directionsWalk:before {
  content: "" !important;
}
.c-IconButton--discFull:before {
  content: "" !important;
}
.c-IconButton--dns:before {
  content: "" !important;
}
.c-IconButton--doNotDisturbAlt:before {
  content: "" !important;
}
.c-IconButton--doNotDisturbOff:before {
  content: "" !important;
}
.c-IconButton--dock:before {
  content: "" !important;
}
.c-IconButton--domainDisabled:before {
  content: "" !important;
}
.c-IconButton--done:before {
  content: "" !important;
}
.c-IconButton--doneAll:before {
  content: "" !important;
}
.c-IconButton--doneOutline:before {
  content: "" !important;
}
.c-IconButton--donutLarge:before {
  content: "" !important;
}
.c-IconButton--donutSmall:before {
  content: "" !important;
}
.c-IconButton--drafts:before {
  content: "" !important;
}
.c-IconButton--dragHandle:before {
  content: "" !important;
}
.c-IconButton--dragIndicator:before {
  content: "" !important;
}
.c-IconButton--duo:before {
  content: "" !important;
}
.c-IconButton--dvr:before {
  content: "" !important;
}
.c-IconButton--editAttributes:before {
  content: "" !important;
}
.c-IconButton--editLocation:before {
  content: "" !important;
}
.c-IconButton--eject:before {
  content: "" !important;
}
.c-IconButton--enhancedEncryption:before {
  content: "" !important;
}
.c-IconButton--equalizer:before {
  content: "" !important;
}
.c-IconButton--error:before {
  content: "" !important;
}
.c-IconButton--errorOutline:before {
  content: "" !important;
}
.c-IconButton--euroSymbol:before {
  content: "" !important;
}
.c-IconButton--evStation:before {
  content: "" !important;
}
.c-IconButton--eventAvailable:before {
  content: "" !important;
}
.c-IconButton--eventBusy:before {
  content: "" !important;
}
.c-IconButton--eventNote:before {
  content: "" !important;
}
.c-IconButton--eventSeat:before {
  content: "" !important;
}
.c-IconButton--exitToApp:before {
  content: "" !important;
}
.c-IconButton--expandLess:before {
  content: "" !important;
}
.c-IconButton--expandMore:before {
  content: "" !important;
}
.c-IconButton--explicit:before {
  content: "" !important;
}
.c-IconButton--explore:before {
  content: "" !important;
}
.c-IconButton--exploreOff:before {
  content: "" !important;
}
.c-IconButton--exposure:before {
  content: "" !important;
}
.c-IconButton--exposureNeg1:before {
  content: "" !important;
}
.c-IconButton--exposureNeg2:before {
  content: "" !important;
}
.c-IconButton--exposurePlus1:before {
  content: "" !important;
}
.c-IconButton--exposurePlus2:before {
  content: "" !important;
}
.c-IconButton--exposureZero:before {
  content: "" !important;
}
.c-IconButton--extension:before {
  content: "" !important;
}
.c-IconButton--face:before {
  content: "" !important;
}
.c-IconButton--facebook:before {
  content: "" !important;
}
.c-IconButton--fastForward:before {
  content: "" !important;
}
.c-IconButton--fastRewind:before {
  content: "" !important;
}
.c-IconButton--fastfood:before {
  content: "" !important;
}
.c-IconButton--favorite:before {
  content: "" !important;
}
.c-IconButton--favoriteBorder:before {
  content: "" !important;
}
.c-IconButton--featuredPlayList:before {
  content: "" !important;
}
.c-IconButton--featuredVideo:before {
  content: "" !important;
}
.c-IconButton--fiberDvr:before {
  content: "" !important;
}
.c-IconButton--fiberManualRecord:before {
  content: "" !important;
}
.c-IconButton--fiberNew:before {
  content: "" !important;
}
.c-IconButton--fiberPin:before {
  content: "" !important;
}
.c-IconButton--fiberSmartRecord:before {
  content: "" !important;
}
.c-IconButton--fileCopy:before {
  content: "" !important;
}
.c-IconButton--fileUpload:before {
  content: "" !important;
}
.c-IconButton--filter:before {
  content: "" !important;
}
.c-IconButton--filter1:before {
  content: "" !important;
}
.c-IconButton--filter2:before {
  content: "" !important;
}
.c-IconButton--filter3:before {
  content: "" !important;
}
.c-IconButton--filter4:before {
  content: "" !important;
}
.c-IconButton--filter5:before {
  content: "" !important;
}
.c-IconButton--filter6:before {
  content: "" !important;
}
.c-IconButton--filter7:before {
  content: "" !important;
}
.c-IconButton--filter8:before {
  content: "" !important;
}
.c-IconButton--filter9:before {
  content: "" !important;
}
.c-IconButton--filter9Plus:before {
  content: "" !important;
}
.c-IconButton--filterBAndW:before {
  content: "" !important;
}
.c-IconButton--filterCenterFocus:before {
  content: "" !important;
}
.c-IconButton--filterDrama:before {
  content: "" !important;
}
.c-IconButton--filterFrames:before {
  content: "" !important;
}
.c-IconButton--filterList:before {
  content: "" !important;
}
.c-IconButton--filterNone:before {
  content: "" !important;
}
.c-IconButton--filterTiltShift:before {
  content: "" !important;
}
.c-IconButton--filterVintage:before {
  content: "" !important;
}
.c-IconButton--findInPage:before {
  content: "" !important;
}
.c-IconButton--findReplace:before {
  content: "" !important;
}
.c-IconButton--fingerprint:before {
  content: "" !important;
}
.c-IconButton--firstPage:before {
  content: "" !important;
}
.c-IconButton--fitnessCenter:before {
  content: "" !important;
}
.c-IconButton--flare:before {
  content: "" !important;
}
.c-IconButton--flashAuto:before {
  content: "" !important;
}
.c-IconButton--flashOff:before {
  content: "" !important;
}
.c-IconButton--flashOn:before {
  content: "" !important;
}
.c-IconButton--localAirport:before {
  content: "" !important;
}
.c-IconButton--flightLand:before {
  content: "" !important;
}
.c-IconButton--flightTakeoff:before {
  content: "" !important;
}
.c-IconButton--flip:before {
  content: "" !important;
}
.c-IconButton--flipToBack:before {
  content: "" !important;
}
.c-IconButton--flipToFront:before {
  content: "" !important;
}
.c-IconButton--folder:before {
  content: "" !important;
}
.c-IconButton--folderOpen:before {
  content: "" !important;
}
.c-IconButton--folderShared:before {
  content: "" !important;
}
.c-IconButton--folderSpecial:before {
  content: "" !important;
}
.c-IconButton--fontDownload:before {
  content: "" !important;
}
.c-IconButton--formatAlignCenter:before {
  content: "" !important;
}
.c-IconButton--formatAlignJustify:before {
  content: "" !important;
}
.c-IconButton--formatAlignLeft:before {
  content: "" !important;
}
.c-IconButton--formatAlignRight:before {
  content: "" !important;
}
.c-IconButton--formatBold:before {
  content: "" !important;
}
.c-IconButton--formatClear:before {
  content: "" !important;
}
.c-IconButton--formatColorFill:before {
  content: "" !important;
}
.c-IconButton--formatColorReset:before {
  content: "" !important;
}
.c-IconButton--formatColorText:before {
  content: "" !important;
}
.c-IconButton--formatIndentDecrease:before {
  content: "" !important;
}
.c-IconButton--formatIndentIncrease:before {
  content: "" !important;
}
.c-IconButton--formatItalic:before {
  content: "" !important;
}
.c-IconButton--formatLineSpacing:before {
  content: "" !important;
}
.c-IconButton--formatListBulleted:before {
  content: "" !important;
}
.c-IconButton--formatListNumbered:before {
  content: "" !important;
}
.c-IconButton--formatListNumberedRtl:before {
  content: "" !important;
}
.c-IconButton--formatPaint:before {
  content: "" !important;
}
.c-IconButton--formatQuote:before {
  content: "" !important;
}
.c-IconButton--formatShapes:before {
  content: "" !important;
}
.c-IconButton--formatSize:before {
  content: "" !important;
}
.c-IconButton--formatStrikethrough:before {
  content: "" !important;
}
.c-IconButton--formatTextdirectionLToR:before {
  content: "" !important;
}
.c-IconButton--formatTextdirectionRToL:before {
  content: "" !important;
}
.c-IconButton--formatUnderlined:before {
  content: "" !important;
}
.c-IconButton--forward:before {
  content: "" !important;
}
.c-IconButton--forward10:before {
  content: "" !important;
}
.c-IconButton--forward30:before {
  content: "" !important;
}
.c-IconButton--forward5:before {
  content: "" !important;
}
.c-IconButton--freeBreakfast:before {
  content: "" !important;
}
.c-IconButton--fullscreen:before {
  content: "" !important;
}
.c-IconButton--fullscreenExit:before {
  content: "" !important;
}
.c-IconButton--functions:before {
  content: "" !important;
}
.c-IconButton--gTranslate:before {
  content: "" !important;
}
.c-IconButton--games:before {
  content: "" !important;
}
.c-IconButton--gavel:before {
  content: "" !important;
}
.c-IconButton--gesture:before {
  content: "" !important;
}
.c-IconButton--getApp:before {
  content: "" !important;
}
.c-IconButton--gif:before {
  content: "" !important;
}
.c-IconButton--goat:before {
  content: "" !important;
}
.c-IconButton--golfCourse:before {
  content: "" !important;
}
.c-IconButton--gradient:before {
  content: "" !important;
}
.c-IconButton--grain:before {
  content: "" !important;
}
.c-IconButton--graphicEq:before {
  content: "" !important;
}
.c-IconButton--gridOff:before {
  content: "" !important;
}
.c-IconButton--gridOn:before {
  content: "" !important;
}
.c-IconButton--groupAdd:before {
  content: "" !important;
}
.c-IconButton--groupWork:before {
  content: "" !important;
}
.c-IconButton--hd:before {
  content: "" !important;
}
.c-IconButton--hdrOff:before {
  content: "" !important;
}
.c-IconButton--hdrOn:before {
  content: "" !important;
}
.c-IconButton--hdrStrong:before {
  content: "" !important;
}
.c-IconButton--hdrWeak:before {
  content: "" !important;
}
.c-IconButton--headset:before {
  content: "" !important;
}
.c-IconButton--headsetMic:before {
  content: "" !important;
}
.c-IconButton--healing:before {
  content: "" !important;
}
.c-IconButton--hearing:before {
  content: "" !important;
}
.c-IconButton--help:before {
  content: "" !important;
}
.c-IconButton--helpOutline:before {
  content: "" !important;
}
.c-IconButton--highQuality:before {
  content: "" !important;
}
.c-IconButton--highlight:before, [data-js=hitHighlightingContent]:before {
  content: "" !important;
}
.c-IconButton--highlightOff:before {
  content: "" !important;
}
.c-IconButton--home:before {
  content: "" !important;
}
.c-IconButton--horizontalSplit:before {
  content: "" !important;
}
.c-IconButton--hotTub:before {
  content: "" !important;
}
.c-IconButton--hourglassEmpty:before {
  content: "" !important;
}
.c-IconButton--hourglassFull:before {
  content: "" !important;
}
.c-IconButton--howToReg:before {
  content: "" !important;
}
.c-IconButton--howToVote:before {
  content: "" !important;
}
.c-IconButton--http:before {
  content: "" !important;
}
.c-IconButton--imageAspectRatio:before {
  content: "" !important;
}
.c-IconButton--imageSearch:before {
  content: "" !important;
}
.c-IconButton--importContacts:before {
  content: "" !important;
}
.c-IconButton--importExport:before {
  content: "" !important;
}
.c-IconButton--importantDevices:before {
  content: "" !important;
}
.c-IconButton--inbox:before {
  content: "" !important;
}
.c-IconButton--indeterminateCheckBox {
  padding: 9px !important;
}
.c-IconButton--indeterminateCheckBox:before {
  content: "" !important;
}
.c-IconButton--info:before {
  content: "" !important;
}
.c-IconButton--infoOutline:before {
  content: "" !important;
}
.c-IconButton--input:before {
  content: "" !important;
}
.c-IconButton--insertChartOutlined:before {
  content: "" !important;
}
.c-IconButton--insertComment:before {
  content: "" !important;
}
.c-IconButton--insertDriveFile:before {
  content: "" !important;
}
.c-IconButton--insertInvitation:before {
  content: "" !important;
}
.c-IconButton--instagram:before {
  content: "" !important;
}
.c-IconButton--invertColors:before {
  content: "" !important;
}
.c-IconButton--invertColorsOff:before {
  content: "" !important;
}
.c-IconButton--iso:before {
  content: "" !important;
}
.c-IconButton--keyboard:before {
  content: "" !important;
}
.c-IconButton--keyboardArrowDown:before {
  content: "" !important;
}
.c-IconButton--keyboardArrowLeft:before {
  content: "" !important;
}
.c-IconButton--keyboardArrowRight:before {
  content: "" !important;
}
.c-IconButton--keyboardArrowUp:before {
  content: "" !important;
}
.c-IconButton--keyboardBackspace:before {
  content: "" !important;
}
.c-IconButton--keyboardCapslock:before {
  content: "" !important;
}
.c-IconButton--keyboardHide:before {
  content: "" !important;
}
.c-IconButton--keyboardReturn:before {
  content: "" !important;
}
.c-IconButton--keyboardTab:before {
  content: "" !important;
}
.c-IconButton--keyboardVoice:before {
  content: "" !important;
}
.c-IconButton--kitchen:before {
  content: "" !important;
}
.c-IconButton--label:before {
  content: "" !important;
}
.c-IconButton--labelImportant:before {
  content: "" !important;
}
.c-IconButton--labelOff:before {
  content: "" !important;
}
.c-IconButton--labelOutline:before {
  content: "" !important;
}
.c-IconButton--language:before {
  content: "" !important;
}
.c-IconButton--laptop:before {
  content: "" !important;
}
.c-IconButton--laptopChromebook:before {
  content: "" !important;
}
.c-IconButton--laptopMac:before {
  content: "" !important;
}
.c-IconButton--laptopWindows:before {
  content: "" !important;
}
.c-IconButton--lastPage:before {
  content: "" !important;
}
.c-IconButton--layers:before {
  content: "" !important;
}
.c-IconButton--layersClear:before {
  content: "" !important;
}
.c-IconButton--leakAdd:before {
  content: "" !important;
}
.c-IconButton--leakRemove:before {
  content: "" !important;
}
.c-IconButton--lens:before {
  content: "" !important;
}
.c-IconButton--libraryBooks:before {
  content: "" !important;
}
.c-IconButton--libraryMusic:before {
  content: "" !important;
}
.c-IconButton--lightbulbOutline:before {
  content: "" !important;
}
.c-IconButton--lineStyle:before {
  content: "" !important;
}
.c-IconButton--lineWeight:before {
  content: "" !important;
}
.c-IconButton--linearScale:before {
  content: "" !important;
}
.c-IconButton--link:before {
  content: "" !important;
}
.c-IconButton--linkOff:before {
  content: "" !important;
}
.c-IconButton--linkedCamera:before {
  content: "" !important;
}
.c-IconButton--linkedin:before {
  content: "" !important;
}
.c-IconButton--list:before {
  content: "" !important;
}
.c-IconButton--listAlt:before {
  content: "" !important;
}
.c-IconButton--liveHelp:before {
  content: "" !important;
}
.c-IconButton--liveTv:before {
  content: "" !important;
}
.c-IconButton--localAtm:before {
  content: "" !important;
}
.c-IconButton--localBar:before {
  content: "" !important;
}
.c-IconButton--localCafe:before {
  content: "" !important;
}
.c-IconButton--localCarWash:before {
  content: "" !important;
}
.c-IconButton--localConvenienceStore:before {
  content: "" !important;
}
.c-IconButton--localDrink:before {
  content: "" !important;
}
.c-IconButton--localFlorist:before {
  content: "" !important;
}
.c-IconButton--localGasStation:before {
  content: "" !important;
}
.c-IconButton--localHospital:before {
  content: "" !important;
}
.c-IconButton--localHotel:before {
  content: "" !important;
}
.c-IconButton--localLaundryService:before {
  content: "" !important;
}
.c-IconButton--localLibrary:before {
  content: "" !important;
}
.c-IconButton--localMall:before {
  content: "" !important;
}
.c-IconButton--localOffer:before {
  content: "" !important;
}
.c-IconButton--localParking:before {
  content: "" !important;
}
.c-IconButton--localPharmacy:before {
  content: "" !important;
}
.c-IconButton--localPizza:before {
  content: "" !important;
}
.c-IconButton--localPlay:before {
  content: "" !important;
}
.c-IconButton--localShipping:before {
  content: "" !important;
}
.c-IconButton--localTaxi:before {
  content: "" !important;
}
.c-IconButton--locationCity:before {
  content: "" !important;
}
.c-IconButton--locationDisabled:before {
  content: "" !important;
}
.c-IconButton--locationOff:before {
  content: "" !important;
}
.c-IconButton--locationSearching:before {
  content: "" !important;
}
.c-IconButton--lock:before {
  content: "" !important;
}
.c-IconButton--lockOpen:before {
  content: "" !important;
}
.c-IconButton--lockOutline:before {
  content: "" !important;
}
.c-IconButton--looks:before {
  content: "" !important;
}
.c-IconButton--looks3:before {
  content: "" !important;
}
.c-IconButton--looks4:before {
  content: "" !important;
}
.c-IconButton--looks5:before {
  content: "" !important;
}
.c-IconButton--looks6:before {
  content: "" !important;
}
.c-IconButton--looksOne:before {
  content: "" !important;
}
.c-IconButton--looksTwo:before {
  content: "" !important;
}
.c-IconButton--loupe:before {
  content: "" !important;
}
.c-IconButton--lowPriority:before {
  content: "" !important;
}
.c-IconButton--loyalty:before {
  content: "" !important;
}
.c-IconButton--mailOutline:before {
  content: "" !important;
}
.c-IconButton--map:before {
  content: "" !important;
}
.c-IconButton--markunread:before {
  content: "" !important;
}
.c-IconButton--markunreadMailbox:before {
  content: "" !important;
}
.c-IconButton--maximize:before {
  content: "" !important;
}
.c-IconButton--meetingRoom:before {
  content: "" !important;
}
.c-IconButton--memory:before {
  content: "" !important;
}
.c-IconButton--menu:before {
  content: "" !important;
}
.c-IconButton--menuBook:before {
  content: "" !important;
}
.c-IconButton--mergeType:before {
  content: "" !important;
}
.c-IconButton--message:before {
  content: "" !important;
}
.c-IconButton--mic:before {
  content: "" !important;
}
.c-IconButton--micNone:before {
  content: "" !important;
}
.c-IconButton--micOff:before {
  content: "" !important;
}
.c-IconButton--minimize:before {
  content: "" !important;
}
.c-IconButton--missedVideoCall:before {
  content: "" !important;
}
.c-IconButton--mms:before {
  content: "" !important;
}
.c-IconButton--mobileFriendly:before {
  content: "" !important;
}
.c-IconButton--mobileOff:before {
  content: "" !important;
}
.c-IconButton--mobileScreenShare:before {
  content: "" !important;
}
.c-IconButton--modeComment:before {
  content: "" !important;
}
.c-IconButton--modeEdit:before {
  content: "" !important;
}
.c-IconButton--monetizationOn:before {
  content: "" !important;
}
.c-IconButton--money:before {
  content: "" !important;
}
.c-IconButton--moneyOff:before {
  content: "" !important;
}
.c-IconButton--monochromePhotos:before {
  content: "" !important;
}
.c-IconButton--moodBad:before {
  content: "" !important;
}
.c-IconButton--more:before {
  content: "" !important;
}
.c-IconButton--moreHoriz:before {
  content: "" !important;
}
.c-IconButton--moreVert:before {
  content: "" !important;
}
.c-IconButton--motorcycle:before {
  content: "" !important;
}
.c-IconButton--mouse:before {
  content: "" !important;
}
.c-IconButton--moveToInbox:before {
  content: "" !important;
}
.c-IconButton--movieCreation:before {
  content: "" !important;
}
.c-IconButton--movieFilter:before {
  content: "" !important;
}
.c-IconButton--multilineChart:before {
  content: "" !important;
}
.c-IconButton--musicNote:before {
  content: "" !important;
}
.c-IconButton--musicOff:before {
  content: "" !important;
}
.c-IconButton--musicVideo:before {
  content: "" !important;
}
.c-IconButton--myLocation:before {
  content: "" !important;
}
.c-IconButton--nature:before {
  content: "" !important;
}
.c-IconButton--naturePeople:before {
  content: "" !important;
}
.c-IconButton--navigateBefore:before, [data-js=hitHighlightingPrev]:before {
  content: "" !important;
}
.c-IconButton--navigateNext:before, [data-js=hitHighlightingNext]:before {
  content: "" !important;
}
.c-IconButton--navigation:before {
  content: "" !important;
}
.c-IconButton--nearMe:before {
  content: "" !important;
}
.c-IconButton--networkCell:before {
  content: "" !important;
}
.c-IconButton--networkCheck:before {
  content: "" !important;
}
.c-IconButton--networkLocked:before {
  content: "" !important;
}
.c-IconButton--networkWifi:before {
  content: "" !important;
}
.c-IconButton--newReleases:before {
  content: "" !important;
}
.c-IconButton--nextWeek:before {
  content: "" !important;
}
.c-IconButton--nfc:before {
  content: "" !important;
}
.c-IconButton--noEncryption:before {
  content: "" !important;
}
.c-IconButton--noMeetingRoom:before {
  content: "" !important;
}
.c-IconButton--notInterested:before {
  content: "" !important;
}
.c-IconButton--notListedLocation:before {
  content: "" !important;
}
.c-IconButton--note:before {
  content: "" !important;
}
.c-IconButton--noteAdd:before {
  content: "" !important;
}
.c-IconButton--notes:before {
  content: "" !important;
}
.c-IconButton--notificationImportant:before {
  content: "" !important;
}
.c-IconButton--notifications:before {
  content: "" !important;
}
.c-IconButton--notificationsOn:before {
  content: "" !important;
}
.c-IconButton--notificationsActive:before {
  content: "" !important;
}
.c-IconButton--notificationsNone:before {
  content: "" !important;
}
.c-IconButton--notificationsOff:before {
  content: "" !important;
}
.c-IconButton--notificationsPaused:before {
  content: "" !important;
}
.c-IconButton--offlineBolt:before {
  content: "" !important;
}
.c-IconButton--offlinePin:before {
  content: "" !important;
}
.c-IconButton--ondemandVideo:before {
  content: "" !important;
}
.c-IconButton--opacity:before {
  content: "" !important;
}
.c-IconButton--openInBrowser:before {
  content: "" !important;
}
.c-IconButton--openInNew:before {
  content: "" !important;
}
.c-IconButton--openWith:before {
  content: "" !important;
}
.c-IconButton--outlinedFlag:before {
  content: "" !important;
}
.c-IconButton--pages:before {
  content: "" !important;
}
.c-IconButton--pageview:before {
  content: "" !important;
}
.c-IconButton--palette:before {
  content: "" !important;
}
.c-IconButton--panTool:before {
  content: "" !important;
}
.c-IconButton--panorama:before {
  content: "" !important;
}
.c-IconButton--panoramaHorizontal:before {
  content: "" !important;
}
.c-IconButton--panoramaVertical:before {
  content: "" !important;
}
.c-IconButton--panoramaWideAngle:before {
  content: "" !important;
}
.c-IconButton--partyMode:before {
  content: "" !important;
}
.c-IconButton--pause:before {
  content: "" !important;
}
.c-IconButton--pauseCircleFilled:before {
  content: "" !important;
}
.c-IconButton--pauseCircleOutline:before {
  content: "" !important;
}
.c-IconButton--pausePresentation:before {
  content: "" !important;
}
.c-IconButton--payment:before {
  content: "" !important;
}
.c-IconButton--people:before {
  content: "" !important;
}
.c-IconButton--peopleOutline:before {
  content: "" !important;
}
.c-IconButton--permCameraMic:before {
  content: "" !important;
}
.c-IconButton--permContactCalendar:before {
  content: "" !important;
}
.c-IconButton--permDataSetting:before {
  content: "" !important;
}
.c-IconButton--permDeviceInformation:before {
  content: "" !important;
}
.c-IconButton--permMedia:before {
  content: "" !important;
}
.c-IconButton--permPhoneMsg:before {
  content: "" !important;
}
.c-IconButton--permScanWifi:before {
  content: "" !important;
}
.c-IconButton--person:before {
  content: "" !important;
}
.c-IconButton--personAdd:before {
  content: "" !important;
}
.c-IconButton--personAddDisabled:before {
  content: "" !important;
}
.c-IconButton--personOutline:before {
  content: "" !important;
}
.c-IconButton--personPin:before {
  content: "" !important;
}
.c-IconButton--personPinCircle:before {
  content: "" !important;
}
.c-IconButton--personalVideo:before {
  content: "" !important;
}
.c-IconButton--pets:before {
  content: "" !important;
}
.c-IconButton--phone:before {
  content: "" !important;
}
.c-IconButton--phoneAndroid:before {
  content: "" !important;
}
.c-IconButton--phoneBluetoothSpeaker:before {
  content: "" !important;
}
.c-IconButton--phoneCallback:before {
  content: "" !important;
}
.c-IconButton--phoneForwarded:before {
  content: "" !important;
}
.c-IconButton--phoneInTalk:before {
  content: "" !important;
}
.c-IconButton--phoneIphone:before {
  content: "" !important;
}
.c-IconButton--phoneLocked:before {
  content: "" !important;
}
.c-IconButton--phoneMissed:before {
  content: "" !important;
}
.c-IconButton--phonePaused:before {
  content: "" !important;
}
.c-IconButton--phonelink:before {
  content: "" !important;
}
.c-IconButton--phonelinkErase:before {
  content: "" !important;
}
.c-IconButton--phonelinkLock:before {
  content: "" !important;
}
.c-IconButton--phonelinkOff:before {
  content: "" !important;
}
.c-IconButton--phonelinkRing:before {
  content: "" !important;
}
.c-IconButton--phonelinkSetup:before {
  content: "" !important;
}
.c-IconButton--photo:before {
  content: "" !important;
}
.c-IconButton--photoAlbum:before {
  content: "" !important;
}
.c-IconButton--photoCamera:before {
  content: "" !important;
}
.c-IconButton--photoFilter:before {
  content: "" !important;
}
.c-IconButton--photoLibrary:before {
  content: "" !important;
}
.c-IconButton--photoSizeSelectActual:before {
  content: "" !important;
}
.c-IconButton--photoSizeSelectLarge:before {
  content: "" !important;
}
.c-IconButton--photoSizeSelectSmall:before {
  content: "" !important;
}
.c-IconButton--pictureAsPdf:before {
  content: "" !important;
}
.c-IconButton--pictureInPicture:before {
  content: "" !important;
}
.c-IconButton--pictureInPictureAlt:before {
  content: "" !important;
}
.c-IconButton--pieChart:before {
  content: "" !important;
}
.c-IconButton--pieChartOutlined:before {
  content: "" !important;
}
.c-IconButton--pinDrop:before {
  content: "" !important;
}
.c-IconButton--pinterest:before {
  content: "" !important;
}
.c-IconButton--playArrow:before {
  content: "" !important;
}
.c-IconButton--playCircleFilled:before {
  content: "" !important;
}
.c-IconButton--playCircleOutline:before {
  content: "" !important;
}
.c-IconButton--playForWork:before {
  content: "" !important;
}
.c-IconButton--playlistAdd:before {
  content: "" !important;
}
.c-IconButton--playlistAddCheck:before {
  content: "" !important;
}
.c-IconButton--playlistPlay:before {
  content: "" !important;
}
.c-IconButton--plusOne:before {
  content: "" !important;
}
.c-IconButton--poll:before {
  content: "" !important;
}
.c-IconButton--polymer:before {
  content: "" !important;
}
.c-IconButton--pool:before {
  content: "" !important;
}
.c-IconButton--portableWifiOff:before {
  content: "" !important;
}
.c-IconButton--portrait:before {
  content: "" !important;
}
.c-IconButton--power:before {
  content: "" !important;
}
.c-IconButton--powerInput:before {
  content: "" !important;
}
.c-IconButton--powerOff:before {
  content: "" !important;
}
.c-IconButton--powerSettingsNew:before {
  content: "" !important;
}
.c-IconButton--pregnantWoman:before {
  content: "" !important;
}
.c-IconButton--presentToAll:before {
  content: "" !important;
}
.c-IconButton--print:before {
  content: "" !important;
}
.c-IconButton--printDisabled:before {
  content: "" !important;
}
.c-IconButton--priorityHigh:before {
  content: "" !important;
}
.c-IconButton--public:before {
  content: "" !important;
}
.c-IconButton--publish:before {
  content: "" !important;
}
.c-IconButton--schedule:before {
  content: "" !important;
}
.c-IconButton--questionAnswer:before {
  content: "" !important;
}
.c-IconButton--queue:before {
  content: "" !important;
}
.c-IconButton--queueMusic:before {
  content: "" !important;
}
.c-IconButton--queuePlayNext:before {
  content: "" !important;
}
.c-IconButton--radio:before {
  content: "" !important;
}
.c-IconButton--radioButtonChecked, .c-FormControlLabel__input[type=radio]:checked + .c-FormControlLabel__label {
  padding: 9px !important;
}
.c-IconButton--radioButtonChecked:before, .c-FormControlLabel__input[type=radio]:checked + .c-FormControlLabel__label:before {
  content: "" !important;
}
.c-IconButton--radioButtonUnchecked, .c-FormControlLabel__input[type=radio] + .c-FormControlLabel__label {
  padding: 9px !important;
}
.c-IconButton--radioButtonUnchecked:before, .c-FormControlLabel__input[type=radio] + .c-FormControlLabel__label:before {
  content: "" !important;
}
.c-IconButton--rateReview:before {
  content: "" !important;
}
.c-IconButton--receipt:before {
  content: "" !important;
}
.c-IconButton--recentActors:before {
  content: "" !important;
}
.c-IconButton--recordVoiceOver:before {
  content: "" !important;
}
.c-IconButton--redeem:before {
  content: "" !important;
}
.c-IconButton--redo:before {
  content: "" !important;
}
.c-IconButton--refresh:before {
  content: "" !important;
}
.c-IconButton--remove:before {
  content: "" !important;
}
.c-IconButton--removeCircle:before {
  content: "" !important;
}
.c-IconButton--removeCircleOutline:before {
  content: "" !important;
}
.c-IconButton--removeFromQueue:before {
  content: "" !important;
}
.c-IconButton--removeShoppingCart:before {
  content: "" !important;
}
.c-IconButton--reorder:before {
  content: "" !important;
}
.c-IconButton--repeat:before {
  content: "" !important;
}
.c-IconButton--repeatOne:before {
  content: "" !important;
}
.c-IconButton--replay:before {
  content: "" !important;
}
.c-IconButton--replay10:before {
  content: "" !important;
}
.c-IconButton--replay30:before {
  content: "" !important;
}
.c-IconButton--replay5:before {
  content: "" !important;
}
.c-IconButton--reply:before {
  content: "" !important;
}
.c-IconButton--replyAll:before {
  content: "" !important;
}
.c-IconButton--report:before {
  content: "" !important;
}
.c-IconButton--reportOff:before {
  content: "" !important;
}
.c-IconButton--restaurant:before {
  content: "" !important;
}
.c-IconButton--restaurantMenu:before {
  content: "" !important;
}
.c-IconButton--restore:before {
  content: "" !important;
}
.c-IconButton--restoreFromTrash:before {
  content: "" !important;
}
.c-IconButton--restorePage:before {
  content: "" !important;
}
.c-IconButton--ringVolume:before {
  content: "" !important;
}
.c-IconButton--room:before {
  content: "" !important;
}
.c-IconButton--roomService:before {
  content: "" !important;
}
.c-IconButton--rotate90DegreesCcw:before {
  content: "" !important;
}
.c-IconButton--rotateLeft:before {
  content: "" !important;
}
.c-IconButton--rotateRight:before {
  content: "" !important;
}
.c-IconButton--roundedCorner:before {
  content: "" !important;
}
.c-IconButton--router:before {
  content: "" !important;
}
.c-IconButton--rowing:before {
  content: "" !important;
}
.c-IconButton--rssFeed:before {
  content: "" !important;
}
.c-IconButton--rvHookup:before {
  content: "" !important;
}
.c-IconButton--satellite:before {
  content: "" !important;
}
.c-IconButton--save:before {
  content: "" !important;
}
.c-IconButton--saveAlt:before {
  content: "" !important;
}
.c-IconButton--scanner:before {
  content: "" !important;
}
.c-IconButton--scatterPlot:before {
  content: "" !important;
}
.c-IconButton--school:before {
  content: "" !important;
}
.c-IconButton--score:before {
  content: "" !important;
}
.c-IconButton--screenLockLandscape:before {
  content: "" !important;
}
.c-IconButton--screenLockPortrait:before {
  content: "" !important;
}
.c-IconButton--screenLockRotation:before {
  content: "" !important;
}
.c-IconButton--screenRotation:before {
  content: "" !important;
}
.c-IconButton--screenShare:before {
  content: "" !important;
}
.c-IconButton--sdStorage:before {
  content: "" !important;
}
.c-IconButton--search:before {
  content: "" !important;
}
.c-IconButton--security:before {
  content: "" !important;
}
.c-IconButton--selectAll:before {
  content: "" !important;
}
.c-IconButton--send:before {
  content: "" !important;
}
.c-IconButton--sentimentDissatisfied:before {
  content: "" !important;
}
.c-IconButton--sentimentNeutral:before {
  content: "" !important;
}
.c-IconButton--sentimentSatisfied:before {
  content: "" !important;
}
.c-IconButton--sentimentSatisfiedAlt:before {
  content: "" !important;
}
.c-IconButton--sentimentVeryDissatisfied:before {
  content: "" !important;
}
.c-IconButton--sentimentVerySatisfied:before {
  content: "" !important;
}
.c-IconButton--settings:before {
  content: "" !important;
}
.c-IconButton--settingsApplications:before {
  content: "" !important;
}
.c-IconButton--settingsBackupRestore:before {
  content: "" !important;
}
.c-IconButton--settingsBluetooth:before {
  content: "" !important;
}
.c-IconButton--settingsBrightness:before {
  content: "" !important;
}
.c-IconButton--settingsCell:before {
  content: "" !important;
}
.c-IconButton--settingsEthernet:before {
  content: "" !important;
}
.c-IconButton--settingsInputAntenna:before {
  content: "" !important;
}
.c-IconButton--settingsInputComposite:before {
  content: "" !important;
}
.c-IconButton--settingsInputHdmi:before {
  content: "" !important;
}
.c-IconButton--settingsInputSvideo:before {
  content: "" !important;
}
.c-IconButton--settingsOverscan:before {
  content: "" !important;
}
.c-IconButton--settingsPhone:before {
  content: "" !important;
}
.c-IconButton--settingsPower:before {
  content: "" !important;
}
.c-IconButton--settingsRemote:before {
  content: "" !important;
}
.c-IconButton--settingsSystemDaydream:before {
  content: "" !important;
}
.c-IconButton--settingsVoice:before {
  content: "" !important;
}
.c-IconButton--share:before {
  content: "" !important;
}
.c-IconButton--shareAlt:before {
  content: "" !important;
}
.c-IconButton--shop:before {
  content: "" !important;
}
.c-IconButton--shopTwo:before {
  content: "" !important;
}
.c-IconButton--shoppingBasket:before {
  content: "" !important;
}
.c-IconButton--shoppingCart:before {
  content: "" !important;
}
.c-IconButton--shortText:before {
  content: "" !important;
}
.c-IconButton--showChart:before {
  content: "" !important;
}
.c-IconButton--shuffle:before {
  content: "" !important;
}
.c-IconButton--shutterSpeed:before {
  content: "" !important;
}
.c-IconButton--signalCellular4Bar:before {
  content: "" !important;
}
.c-IconButton--signalCellularConnectedNoInternet4Bar:before {
  content: "" !important;
}
.c-IconButton--signalCellularNoSim:before {
  content: "" !important;
}
.c-IconButton--signalCellularNull:before {
  content: "" !important;
}
.c-IconButton--signalCellularOff:before {
  content: "" !important;
}
.c-IconButton--signalWifi4Bar:before {
  content: "" !important;
}
.c-IconButton--signalWifi4BarLock:before {
  content: "" !important;
}
.c-IconButton--signalWifiOff:before {
  content: "" !important;
}
.c-IconButton--simCard:before {
  content: "" !important;
}
.c-IconButton--simCardAlert:before {
  content: "" !important;
}
.c-IconButton--skipNext:before {
  content: "" !important;
}
.c-IconButton--skipPrevious:before {
  content: "" !important;
}
.c-IconButton--slideshow:before {
  content: "" !important;
}
.c-IconButton--slowMotionVideo:before {
  content: "" !important;
}
.c-IconButton--smokeFree:before {
  content: "" !important;
}
.c-IconButton--smokingRooms:before {
  content: "" !important;
}
.c-IconButton--smsFailed:before {
  content: "" !important;
}
.c-IconButton--snooze:before {
  content: "" !important;
}
.c-IconButton--sort:before {
  content: "" !important;
}
.c-IconButton--sortByAlpha:before {
  content: "" !important;
}
.c-IconButton--spa:before {
  content: "" !important;
}
.c-IconButton--spaceBar:before {
  content: "" !important;
}
.c-IconButton--speaker:before {
  content: "" !important;
}
.c-IconButton--speakerGroup:before {
  content: "" !important;
}
.c-IconButton--speakerNotes:before {
  content: "" !important;
}
.c-IconButton--speakerNotesOff:before {
  content: "" !important;
}
.c-IconButton--speakerPhone:before {
  content: "" !important;
}
.c-IconButton--spellcheck:before {
  content: "" !important;
}
.c-IconButton--star:before {
  content: "" !important;
}
.c-IconButton--starBorder:before {
  content: "" !important;
}
.c-IconButton--starHalf:before {
  content: "" !important;
}
.c-IconButton--stars:before {
  content: "" !important;
}
.c-IconButton--stayPrimaryLandscape:before {
  content: "" !important;
}
.c-IconButton--stayPrimaryPortrait:before {
  content: "" !important;
}
.c-IconButton--stop:before {
  content: "" !important;
}
.c-IconButton--stopScreenShare:before {
  content: "" !important;
}
.c-IconButton--storage:before {
  content: "" !important;
}
.c-IconButton--storeMallDirectory:before {
  content: "" !important;
}
.c-IconButton--straighten:before {
  content: "" !important;
}
.c-IconButton--streetview:before {
  content: "" !important;
}
.c-IconButton--strikethroughS:before {
  content: "" !important;
}
.c-IconButton--style:before {
  content: "" !important;
}
.c-IconButton--subdirectoryArrowLeft:before {
  content: "" !important;
}
.c-IconButton--subdirectoryArrowRight:before {
  content: "" !important;
}
.c-IconButton--subject:before {
  content: "" !important;
}
.c-IconButton--subscriptions:before {
  content: "" !important;
}
.c-IconButton--subtitles:before {
  content: "" !important;
}
.c-IconButton--subway:before {
  content: "" !important;
}
.c-IconButton--supervisedUserCircle:before {
  content: "" !important;
}
.c-IconButton--supervisorAccount:before {
  content: "" !important;
}
.c-IconButton--surroundSound:before {
  content: "" !important;
}
.c-IconButton--swapCalls:before {
  content: "" !important;
}
.c-IconButton--swapHoriz:before {
  content: "" !important;
}
.c-IconButton--swapHorizontalCircle:before {
  content: "" !important;
}
.c-IconButton--swapVert:before {
  content: "" !important;
}
.c-IconButton--swapVerticalCircle:before {
  content: "" !important;
}
.c-IconButton--switchCamera:before {
  content: "" !important;
}
.c-IconButton--switchVideo:before {
  content: "" !important;
}
.c-IconButton--sync:before {
  content: "" !important;
}
.c-IconButton--syncDisabled:before {
  content: "" !important;
}
.c-IconButton--syncProblem:before {
  content: "" !important;
}
.c-IconButton--systemUpdate:before {
  content: "" !important;
}
.c-IconButton--systemUpdateAlt:before {
  content: "" !important;
}
.c-IconButton--tab:before {
  content: "" !important;
}
.c-IconButton--tabUnselected:before {
  content: "" !important;
}
.c-IconButton--tableChart:before {
  content: "" !important;
}
.c-IconButton--tablet:before {
  content: "" !important;
}
.c-IconButton--tabletAndroid:before {
  content: "" !important;
}
.c-IconButton--tabletMac:before {
  content: "" !important;
}
.c-IconButton--tagFaces:before {
  content: "" !important;
}
.c-IconButton--tapAndPlay:before {
  content: "" !important;
}
.c-IconButton--terrain:before {
  content: "" !important;
}
.c-IconButton--textFields:before {
  content: "" !important;
}
.c-IconButton--textFormat:before {
  content: "" !important;
}
.c-IconButton--textRotateUp:before {
  content: "" !important;
}
.c-IconButton--textRotateVertical:before {
  content: "" !important;
}
.c-IconButton--textRotationDown:before {
  content: "" !important;
}
.c-IconButton--textRotationNone:before {
  content: "" !important;
}
.c-IconButton--textsms:before {
  content: "" !important;
}
.c-IconButton--texture:before {
  content: "" !important;
}
.c-IconButton--theaters:before {
  content: "" !important;
}
.c-IconButton--thumbDown:before {
  content: "" !important;
}
.c-IconButton--thumbDownAlt:before {
  content: "" !important;
}
.c-IconButton--thumbUp:before {
  content: "" !important;
}
.c-IconButton--thumbUpAlt:before {
  content: "" !important;
}
.c-IconButton--thumbsUpDown:before {
  content: "" !important;
}
.c-IconButton--timeToLeave:before {
  content: "" !important;
}
.c-IconButton--timelapse:before {
  content: "" !important;
}
.c-IconButton--timeline:before {
  content: "" !important;
}
.c-IconButton--timer:before {
  content: "" !important;
}
.c-IconButton--timer10:before {
  content: "" !important;
}
.c-IconButton--timer3:before {
  content: "" !important;
}
.c-IconButton--timerOff:before {
  content: "" !important;
}
.c-IconButton--title:before {
  content: "" !important;
}
.c-IconButton--toc:before {
  content: "" !important;
}
.c-IconButton--today:before {
  content: "" !important;
}
.c-IconButton--toggleOff:before {
  content: "" !important;
}
.c-IconButton--toggleOn:before {
  content: "" !important;
}
.c-IconButton--toll:before {
  content: "" !important;
}
.c-IconButton--tonality:before {
  content: "" !important;
}
.c-IconButton--touchApp:before {
  content: "" !important;
}
.c-IconButton--toys:before {
  content: "" !important;
}
.c-IconButton--trackChanges:before {
  content: "" !important;
}
.c-IconButton--traffic:before {
  content: "" !important;
}
.c-IconButton--train:before {
  content: "" !important;
}
.c-IconButton--tram:before {
  content: "" !important;
}
.c-IconButton--transferWithinAStation:before {
  content: "" !important;
}
.c-IconButton--transform:before {
  content: "" !important;
}
.c-IconButton--transitEnterexit:before {
  content: "" !important;
}
.c-IconButton--translate:before {
  content: "" !important;
}
.c-IconButton--trendingDown:before {
  content: "" !important;
}
.c-IconButton--trendingFlat:before {
  content: "" !important;
}
.c-IconButton--trendingUp:before {
  content: "" !important;
}
.c-IconButton--tripOrigin:before {
  content: "" !important;
}
.c-IconButton--tune:before {
  content: "" !important;
}
.c-IconButton--bookmark:before {
  content: "" !important;
}
.c-IconButton--turnedIn:before {
  content: "" !important;
}
.c-IconButton--turnedInNot:before {
  content: "" !important;
}
.c-IconButton--tv:before {
  content: "" !important;
}
.c-IconButton--tvOff:before {
  content: "" !important;
}
.c-IconButton--twitter:before {
  content: "" !important;
}
.c-IconButton--unarchive:before {
  content: "" !important;
}
.c-IconButton--undo:before {
  content: "" !important;
}
.c-IconButton--unfoldLess:before {
  content: "" !important;
}
.c-IconButton--unfoldMore:before {
  content: "" !important;
}
.c-IconButton--unsubscribe:before {
  content: "" !important;
}
.c-IconButton--update:before {
  content: "" !important;
}
.c-IconButton--usb:before {
  content: "" !important;
}
.c-IconButton--verifiedUser:before {
  content: "" !important;
}
.c-IconButton--verticalAlignBottom:before {
  content: "" !important;
}
.c-IconButton--verticalAlignCenter:before {
  content: "" !important;
}
.c-IconButton--verticalAlignTop:before {
  content: "" !important;
}
.c-IconButton--verticalSplit:before {
  content: "" !important;
}
.c-IconButton--vibration:before {
  content: "" !important;
}
.c-IconButton--videoCall:before {
  content: "" !important;
}
.c-IconButton--videoLabel:before {
  content: "" !important;
}
.c-IconButton--videoLibrary:before {
  content: "" !important;
}
.c-IconButton--videocam:before {
  content: "" !important;
}
.c-IconButton--videocamOff:before {
  content: "" !important;
}
.c-IconButton--videogameAsset:before {
  content: "" !important;
}
.c-IconButton--viewAgenda:before {
  content: "" !important;
}
.c-IconButton--viewArray:before {
  content: "" !important;
}
.c-IconButton--viewCarousel:before {
  content: "" !important;
}
.c-IconButton--viewColumn:before {
  content: "" !important;
}
.c-IconButton--viewComfy:before {
  content: "" !important;
}
.c-IconButton--viewCompact:before {
  content: "" !important;
}
.c-IconButton--viewDay:before {
  content: "" !important;
}
.c-IconButton--viewHeadline:before {
  content: "" !important;
}
.c-IconButton--viewList:before {
  content: "" !important;
}
.c-IconButton--viewModule:before {
  content: "" !important;
}
.c-IconButton--viewQuilt:before {
  content: "" !important;
}
.c-IconButton--viewStream:before {
  content: "" !important;
}
.c-IconButton--viewWeek:before {
  content: "" !important;
}
.c-IconButton--vignette:before {
  content: "" !important;
}
.c-IconButton--visibility:before {
  content: "" !important;
}
.c-IconButton--visibilityOff:before {
  content: "" !important;
}
.c-IconButton--voiceChat:before {
  content: "" !important;
}
.c-IconButton--voiceOverOff:before {
  content: "" !important;
}
.c-IconButton--voicemail:before {
  content: "" !important;
}
.c-IconButton--volumeDown:before {
  content: "" !important;
}
.c-IconButton--volumeMute:before {
  content: "" !important;
}
.c-IconButton--volumeOff:before {
  content: "" !important;
}
.c-IconButton--volumeUp:before {
  content: "" !important;
}
.c-IconButton--vpnKey:before {
  content: "" !important;
}
.c-IconButton--vpnLock:before {
  content: "" !important;
}
.c-IconButton--wallpaper:before {
  content: "" !important;
}
.c-IconButton--warning:before {
  content: "" !important;
}
.c-IconButton--watch:before {
  content: "" !important;
}
.c-IconButton--watchLater:before {
  content: "" !important;
}
.c-IconButton--waves:before {
  content: "" !important;
}
.c-IconButton--wbAuto:before {
  content: "" !important;
}
.c-IconButton--wbCloudy:before {
  content: "" !important;
}
.c-IconButton--wbIncandescent:before {
  content: "" !important;
}
.c-IconButton--wbIridescent:before {
  content: "" !important;
}
.c-IconButton--wbSunny:before {
  content: "" !important;
}
.c-IconButton--wc:before {
  content: "" !important;
}
.c-IconButton--web:before {
  content: "" !important;
}
.c-IconButton--webAsset:before {
  content: "" !important;
}
.c-IconButton--weekend:before {
  content: "" !important;
}
.c-IconButton--whatshot:before {
  content: "" !important;
}
.c-IconButton--whereToVote:before {
  content: "" !important;
}
.c-IconButton--widgets:before {
  content: "" !important;
}
.c-IconButton--wifi:before {
  content: "" !important;
}
.c-IconButton--wifiLock:before {
  content: "" !important;
}
.c-IconButton--wifiOff:before {
  content: "" !important;
}
.c-IconButton--wifiTethering:before {
  content: "" !important;
}
.c-IconButton--work:before {
  content: "" !important;
}
.c-IconButton--workOff:before {
  content: "" !important;
}
.c-IconButton--workOutline:before {
  content: "" !important;
}
.c-IconButton--wrapText:before {
  content: "" !important;
}
.c-IconButton--youtube:before {
  content: "" !important;
}
.c-IconButton--youtubeSearchedFor:before {
  content: "" !important;
}
.c-IconButton--zoomIn:before {
  content: "" !important;
}
.c-IconButton--zoomOut:before {
  content: "" !important;
}
.c-IconButton--zoomOutMap:before {
  content: "" !important;
}
.c-IconButton--file:before {
  content: "" !important;
}
.c-IconButton--file-alt:before {
  content: "" !important;
}
.c-IconButton--file-archive:before {
  content: "" !important;
}
.c-IconButton--file-audio:before {
  content: "" !important;
}
.c-IconButton--file-code:before {
  content: "" !important;
}
.c-IconButton--file-csv:before {
  content: "" !important;
}
.c-IconButton--file-excel:before {
  content: "" !important;
}
.c-IconButton--file-image:before {
  content: "" !important;
}
.c-IconButton--file-pdf:before {
  content: "" !important;
}
.c-IconButton--file-powerpoint:before {
  content: "" !important;
}
.c-IconButton--file-video:before {
  content: "" !important;
}
.c-IconButton--file-word:before {
  content: "" !important;
}

.c-IconButton__ripple {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3) !important;
  will-change: background-color, transform;
}
.c-IconButton__ripple--primaryContained, .c-IconButton__ripple--secondaryContained, .c-IconButton__ripple--tertiaryContained, .c-IconButton__ripple--contrast {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3) !important;
  will-change: background-color, transform;
}
.c-IconButton__ripple--primary {
  position: absolute;
  background-color: rgba(11, 40, 81, 0.3) !important;
  will-change: background-color, transform;
}
.c-IconButton__ripple--secondary {
  position: absolute;
  background-color: rgba(225, 225, 225, 0.3) !important;
  will-change: background-color, transform;
}
.c-IconButton__ripple--tertiary {
  position: absolute;
  background-color: rgba(0, 144, 166, 0.3) !important;
  will-change: background-color, transform;
}

.c-InputLabel, .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]) {
  z-index: 3;
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  color: black;
  transform-origin: top left;
  transform: translate(0, 24px) scale(1);
  will-change: transform;
  transition: transform  225ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: text;
}
.c-InputLabel--isFloating, .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]) {
  transform: translate(0, 1.5px) scale(0.75);
}
.c-InputLabel--isFocused {
  color: #0f356c;
}
.c-InputLabel--disabled {
  color: rgba(0, 0, 0, 0.26);
}
.c-InputLabel--error {
  color: #f44336;
}
.c-InputLabel--required:after {
  content: "*";
}

.c-Input {
  z-index: 6;
  position: relative;
  display: flex;
  align-items: baseline;
  margin-top: 16px;
  color: black;
  border: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-Input:before {
  z-index: 3;
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.075);
}
.c-Input:after {
  z-index: 3;
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 2px;
  width: 100%;
  background-color: #0f356c;
  transform: scale(0);
  transition: transform  195ms cubic-bezier(0.4, 0, 1, 1);
  will-change: transform;
}
.c-Input:hover:before {
  background-color: #757575;
}
.c-Input--isFocused:after {
  transform: scale(1);
  transition: transform  225ms cubic-bezier(0, 0, 0.2, 1);
}
.c-Input--isDisabled {
  pointer-events: none;
}
.c-Input--isDisabled:before {
  border-bottom: 1px dotted black;
}
.c-Input--error:after {
  background-color: #f44336;
  transform: scale(1);
  transition: transform  195ms cubic-bezier(0.4, 0, 1, 1);
  will-change: transform;
}
.c-Input--fullWidth {
  width: 100%;
}

.c-InputField, .page-page #pageContent input:not([type=checkbox]), .page-form #mainContent input:not([type=checkbox]) {
  z-index: 2;
  position: relative;
  width: 100%;
  display: block;
  margin: 0px;
  padding-top: 8px;
  padding-bottom: 4px;
  padding-right: 0px;
  padding-left: 0px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  text-indent: 0px;
  border: 0px solid transparent;
  color: black;
  background-color: transparent;
  caret-color: black;
  border-radius: 0;
  outline: none;
  box-shadow: none !important;
}
.c-InputField::placeholder, .page-page #pageContent input:not([type=checkbox])::placeholder, .page-form #mainContent input:not([type=checkbox])::placeholder {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  color: transparent;
  opacity: 0;
  transition: all 0.2s;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-InputField:-ms-input-placeholder, .page-page #pageContent input:-ms-input-placeholder:not([type=checkbox]), .page-form #mainContent input:-ms-input-placeholder:not([type=checkbox]) {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  color: transparent;
  opacity: 0;
  transition: all 0.2s;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-InputField::-ms-input-placeholder, .page-page #pageContent input:not([type=checkbox])::-ms-input-placeholder, .page-form #mainContent input:not([type=checkbox])::-ms-input-placeholder {
  color: transparent;
}
.c-InputField--noLabel::placeholder {
  opacity: 1 !important;
  color: black;
}
.c-InputField--noLabel:-moz-placeholder {
  opacity: 1 !important;
  color: black;
}
.c-InputField--noLabel:-ms-input-placeholder {
  opacity: 1 !important;
  color: black;
}
.c-InputField--noLabel::-ms-input-placeholder {
  opacity: 1 !important;
  color: black;
}
.c-InputField:disabled, .page-page #pageContent input:disabled:not([type=checkbox]), .page-form #mainContent input:disabled:not([type=checkbox]), .c-InputField--isDisabled, .c-InputField-disabled, .c-InputField--disabled {
  pointer-events: none;
  color: black;
}
.c-InputField-error, .c-InputField--error {
  color: #f44336;
  caret-color: #f44336;
}
.c-InputField--native, .page-page #pageContent input:not([type=checkbox]), .page-form #mainContent input:not([type=checkbox]) {
  padding-top: 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
.c-InputField--native::placeholder, .page-page #pageContent input:not([type=checkbox])::placeholder, .page-form #mainContent input:not([type=checkbox])::placeholder {
  opacity: 1 !important;
}
.c-InputField--native:-ms-input-placeholder, .page-page #pageContent input:-ms-input-placeholder:not([type=checkbox]), .page-form #mainContent input:-ms-input-placeholder:not([type=checkbox]) {
  opacity: 1 !important;
}
.c-InputField--native:hover, .page-page #pageContent input:hover:not([type=checkbox]), .page-form #mainContent input:hover:not([type=checkbox]) {
  border-bottom: 1px solid #757575 !important;
}

input#q_within::-ms-input-placeholder {
  color: transparent;
}

input#q_within:-ms-input-placeholder {
  color: transparent;
}

input#q_within::-ms-input-placeholder {
  color: transparent;
}

.c-InputField--underline {
  margin-top: 16px;
  transition: border-color  225ms cubic-bezier(0, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
.c-InputField--underline:focus {
  border-color: #0f356c;
}
.c-InputField--underline::placeholder {
  opacity: 1;
}
.c-InputField--underline:-ms-input-placeholder {
  opacity: 1;
}

.c-InputAffix {
  z-index: 4;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0px;
  min-width: 48px;
  min-height: 48px;
  margin: -20px 0px -16px 0px;
  color: black;
}
.c-InputAffix:before {
  color: black;
}
.c-InputAffix > * {
  color: black;
}
.c-InputAffix > *:before {
  color: black;
}
.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--primary.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--primary.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--primary.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--primary.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--secondary.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--secondary.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--secondary.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--secondary.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--accent.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--accent.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--accent.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--accent.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--warning.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--warning.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--warning.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--warning.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--error.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--error.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--error.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--error.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--success.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--success.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--success.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--success.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--info.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--info.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--info.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--info.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--muted.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--muted.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--muted.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--muted.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--disabled.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--disabled.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--disabled.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--disabled.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--google.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--google.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--google.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--google.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--facebook.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--facebook.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--facebook.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--facebook.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--twitter.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--twitter.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--twitter.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--twitter.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--orcid.c-InputAffix--isFocused {
  color: #0f356c;
}
.c-InputAffix--orcid.c-InputAffix--isFocused:before {
  color: #0f356c;
}
.c-InputAffix--orcid.c-InputAffix--isFocused > * {
  color: #0f356c;
}
.c-InputAffix--orcid.c-InputAffix--isFocused > *:before {
  color: #0f356c;
}
.c-InputAffix--error {
  color: #f44336;
}
.c-InputAffix--error:before {
  color: #f44336;
}
.c-InputAffix--error > * {
  color: #f44336;
}
.c-InputAffix--error > *:before {
  color: #f44336;
}

.c-InputCheckboxRow .c-InputCheckbox,
.checkboxUnit .c-InputCheckbox {
  cursor: pointer;
  display: none !important;
}
.c-InputCheckboxRow .c-InputCheckbox ~ .c-InputCheckboxLabel.c-Icon--before:before, .c-InputCheckboxRow .ui-accordion .c-InputCheckbox ~ .c-InputCheckboxLabel.ui-accordion-header:before, .ui-accordion .c-InputCheckboxRow .c-InputCheckbox ~ .c-InputCheckboxLabel.ui-accordion-header:before,
.checkboxUnit .c-InputCheckbox ~ .c-InputCheckboxLabel.c-Icon--before:before,
.checkboxUnit .ui-accordion .c-InputCheckbox ~ .c-InputCheckboxLabel.ui-accordion-header:before,
.ui-accordion .checkboxUnit .c-InputCheckbox ~ .c-InputCheckboxLabel.ui-accordion-header:before {
  content: "check_box_outline_blank";
  vertical-align: middle;
  line-height: inherit !important;
  font-size: inherit !important;
  color: #0f356c;
  margin-right: 0.3rem;
}
.c-InputCheckboxRow .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.c-Icon--before:before, .c-InputCheckboxRow .ui-accordion .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.ui-accordion-header:before, .ui-accordion .c-InputCheckboxRow .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.ui-accordion-header:before,
.checkboxUnit .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.c-Icon--before:before,
.checkboxUnit .ui-accordion .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.ui-accordion-header:before,
.ui-accordion .checkboxUnit .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.ui-accordion-header:before {
  content: "check_box";
}
.c-InputCheckboxRow .c-InputCheckbox ~ .c-InputCheckboxLabel.c-Icon--after:after, .c-InputCheckboxRow .c-InputCheckbox ~ .c-InputCheckboxLabel.goog-te-gadget-simple:after,
.checkboxUnit .c-InputCheckbox ~ .c-InputCheckboxLabel.c-Icon--after:after,
.checkboxUnit .c-InputCheckbox ~ .c-InputCheckboxLabel.goog-te-gadget-simple:after {
  content: "check_box_outline_blank";
  vertical-align: middle;
  line-height: inherit !important;
  font-size: inherit !important;
  color: #0f356c;
  margin-right: 0.3rem;
}
.c-InputCheckboxRow .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.c-Icon--after:after, .c-InputCheckboxRow .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.goog-te-gadget-simple:after,
.checkboxUnit .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.c-Icon--after:after,
.checkboxUnit .c-InputCheckbox:checked ~ .c-InputCheckboxLabel.goog-te-gadget-simple:after {
  content: "check_box";
}

form .formRow .checkboxRow label {
  top: 0;
}

.page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]) {
  margin-top: 8px;
  position: relative;
}
.page-page #pageContent form div:not(.checkboxUnit):not(.c-InputCheckboxRow) > input[type=checkbox]:not(.c-InputCheckbox) ~ label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form div:not(.checkboxUnit):not(.c-InputCheckboxRow) > input[type=checkbox]:not(.c-InputCheckbox) ~ label:not(.c-InputLabel):not([data-component-inputlabel]) {
  display: inline;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}

.page-checkout .c-Input:hover:before {
  display: none;
}
.page-checkout .c-Input--isFocused:after {
  display: none;
}
.page-checkout .c-Input--isFocused .c-InputField, .page-checkout .c-Input--isFocused .page-page #pageContent input:not([type=checkbox]), .page-page #pageContent .page-checkout .c-Input--isFocused input:not([type=checkbox]), .page-checkout .c-Input--isFocused .page-form #mainContent input:not([type=checkbox]), .page-form #mainContent .page-checkout .c-Input--isFocused input:not([type=checkbox]) {
  border-color: #0f356c;
}
.page-checkout .c-InputField, .page-checkout .page-page #pageContent input:not([type=checkbox]), .page-page #pageContent .page-checkout input:not([type=checkbox]), .page-checkout .page-form #mainContent input:not([type=checkbox]), .page-form #mainContent .page-checkout input:not([type=checkbox]) {
  border: solid 1px grey;
  padding-left: 8px;
}
.page-checkout .c-InputField.js-readonly-field, .page-checkout .page-page #pageContent input.js-readonly-field:not([type=checkbox]), .page-page #pageContent .page-checkout input.js-readonly-field:not([type=checkbox]), .page-checkout .page-form #mainContent input.js-readonly-field:not([type=checkbox]), .page-form #mainContent .page-checkout input.js-readonly-field:not([type=checkbox]) {
  color: grey;
  border-color: #c3c3c3;
}
.page-checkout .c-InputLabel, .page-checkout .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form .page-checkout div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-checkout .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form .page-checkout div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]) {
  width: auto;
  padding-left: 8px;
}
.page-checkout .c-InputLabel--isFloating, .page-checkout .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form .page-checkout div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-checkout .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form .page-checkout div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]) {
  background: white;
  z-index: 100;
  transform: translate(0, 4.5px) scale(0.75);
  margin-left: 8px;
  padding-left: 8px;
  padding-right: 8px;
  color: grey;
}

.c-InputSwitch {
  display: flex;
  align-items: center;
}
.c-InputSwitch--input {
  visibility: hidden;
  flex-shrink: 0;
  margin: 0px;
  font-size: inherit;
  width: 2.5em;
  height: 1.25em;
}
.c-InputSwitch--label {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}
.c-InputSwitch--label:before, .c-InputSwitch--label:after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
  border-radius: 1.25em;
  top: 50%;
  transform: translateY(-50%);
  left: -2.5em;
}
.c-InputSwitch--label:before {
  width: 2.5em;
  height: 0.875em;
  background-color: rgba(128, 128, 128, 0.3);
}
.c-InputSwitch--label:after {
  width: 1.25em;
  height: 1.25em;
  background-color: white;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}
.c-InputSwitch--input:checked + .c-InputSwitch--label:before {
  background-color: rgba(15, 53, 108, 0.3);
}
.c-InputSwitch--input:checked + .c-InputSwitch--label:after {
  left: -1.25em;
  background-color: #0f356c;
}

.c-InputSwitch.c-InputSwitch--primary .c-InputSwitch--input:checked + .c-InputSwitch--label:before {
  background-color: rgba(15, 53, 108, 0.3);
}
.c-InputSwitch.c-InputSwitch--primary .c-InputSwitch--input:checked + .c-InputSwitch--label:after {
  background-color: #0f356c;
}

.c-InputSwitch.c-InputSwitch--secondary .c-InputSwitch--input:checked + .c-InputSwitch--label:before {
  background-color: rgba(240, 240, 240, 0.3);
}
.c-InputSwitch.c-InputSwitch--secondary .c-InputSwitch--input:checked + .c-InputSwitch--label:after {
  background-color: #f0f0f0;
}

.c-InputSwitch.c-InputSwitch--tertiary .c-InputSwitch--input:checked + .c-InputSwitch--label:before {
  background-color: rgba(0, 171, 197, 0.3);
}
.c-InputSwitch.c-InputSwitch--tertiary .c-InputSwitch--input:checked + .c-InputSwitch--label:after {
  background-color: #00abc5;
}

a, a.link {
  color: inherit;
}

.c-Link {
  position: relative;
  min-width: 88px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4em;
  border: none;
  border-radius: 4px;
  outline: none;
  overflow: hidden;
  color: #007f92;
  background-color: transparent;
  text-decoration: none;
  -webkit-font-smoothing: subpixel-antialiased;
  will-change: background-color, color, box-shadow;
  transition: background-color  195ms cubic-bezier(0.4, 0, 1, 1), color  195ms cubic-bezier(0.4, 0, 1, 1), box-shadow  195ms cubic-bezier(0.4, 0, 1, 1);
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.c-Link > a {
  text-decoration: none;
}
.c-Link > a:not(.c-Link--active):hover {
  text-decoration: underline;
}
.c-Link:hover {
  background-color: rgba(195, 195, 195, 0.1);
  transition: background-color  225ms cubic-bezier(0, 0, 0.2, 1), color  225ms cubic-bezier(0, 0, 0.2, 1), box-shadow  225ms cubic-bezier(0, 0, 0.2, 1);
}
.c-Link:after {
  content: unset;
}
.c-Link--small {
  font-size: 0.925rem !important;
  min-width: 64px;
  min-height: 32px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 8px;
  padding-left: 8px;
}
.c-Link--large {
  min-width: 112px;
  min-height: 40px;
  padding-right: 24px;
  padding-left: 24px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.c-Link--full {
  width: 100%;
}
.c-Link--primary {
  color: #0f356c;
  background-color: transparent;
}
.c-Link--primary:hover {
  color: #0f356c;
  background-color: rgba(15, 53, 108, 0.1);
}
.c-Link--primary.c-Link--active {
  color: #0f356c;
  background-color: rgba(15, 53, 108, 0.1);
}
.c-Link--secondary {
  color: #f0f0f0;
  background-color: transparent;
}
.c-Link--secondary:hover {
  color: #f0f0f0;
  background-color: rgba(240, 240, 240, 0.1);
}
.c-Link--secondary.c-Link--active {
  color: #f0f0f0;
  background-color: rgba(240, 240, 240, 0.1);
}
.c-Link--error {
  color: #f44336;
  background-color: transparent;
}
.c-Link--error:hover {
  color: #f44336;
  background-color: rgba(244, 67, 54, 0.1);
}
.c-Link--error.c-Link--active {
  color: #f44336;
  background-color: rgba(244, 67, 54, 0.1);
}

.c-Link__ripple {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3) !important;
  will-change: background-color, transform;
}

.c-Link__ripple--primaryContained, .c-Link__ripple--secondaryContained {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3) !important;
  will-change: background-color, transform;
}

.c-Link__ripple--primary {
  position: absolute;
  background-color: rgba(11, 40, 81, 0.3) !important;
  will-change: background-color, transform;
}

.c-Link__ripple--secondary {
  position: absolute;
  background-color: rgba(225, 225, 225, 0.3) !important;
  will-change: background-color, transform;
}

[data-rhoton-links-visible=true] [data-rhoton] {
  cursor: pointer;
}

.c-List {
  position: relative;
  margin: 0px;
  list-style-type: none;
}
.c-List .c-List {
  position: relative;
  margin-left: 32px;
  list-style-type: none;
}
.c-List__subheader {
  margin: 0px 0px 8px 0px;
  outline: none !important;
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.c-List__subheader--divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
.c-List__subheader > a {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.c-List__items {
  position: relative;
  margin-top: 0px;
  margin-bottom: 4px;
  padding: 0px;
  list-style-type: none;
}
.c-List__items--mb-2 {
  margin-bottom: 8px;
}
.c-List__item {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.c-List__item--dense {
  padding-top: 2px;
  padding-bottom: 2px;
}
.c-List__item--py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.c-List__item--primary {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.c-List__item--primary ~ .c-List__item--secondary {
  margin: 0px;
  padding-left: 4px;
}
.c-List__item--secondary {
  margin: 0px;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.c-List .c-Ripple {
  position: absolute !important;
  top: 0px !important;
}
.page-page #pageContent ul {
  margin-left: 32px;
  margin-bottom: 16px;
}
.page-page #pageContent ul li {
  padding-bottom: 2px;
}

.Modal {
  z-index: 10000;
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
}
.Modal.fullscreen {
  background: rgba(255, 255, 255, 0.9);
}
.Modal--hidden {
  visibility: hidden;
  display: none;
}
.Modal--no-backdrop {
  bottom: auto;
  right: auto;
}
.Modal .within-popup {
  width: 100%;
}
.Modal .within-popup .c-Button, .Modal .within-popup .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .Modal .within-popup a, .Modal .within-popup .goog-te-gadget-simple.goog-te-gadget-simple {
  width: 80%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1300px) {
  .Modal .within-popup .c-Button, .Modal .within-popup .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .Modal .within-popup a, .Modal .within-popup .goog-te-gadget-simple.goog-te-gadget-simple {
    width: 100%;
    justify-content: flex-start;
  }
}
.Modal .within-popup > .c-Button, .Modal .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .within-popup > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .Modal .within-popup > a, .Modal .within-popup > .goog-te-gadget-simple.goog-te-gadget-simple, .Modal .within-popup > .c-IconButton, .Modal .within-popup > [data-js=hitHighlightingClose], .Modal .within-popup > [data-js=hitHighlightingNext], .Modal .within-popup > [data-js=hitHighlightingPrev], .Modal .within-popup > [data-js=hitHighlightingContent] {
  width: 100%;
  justify-content: flex-start;
  color: black;
}
.Modal .within-popup > .c-Button:before, .Modal .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .within-popup > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .Modal .within-popup > a:before, .Modal .within-popup > .goog-te-gadget-simple:before, .Modal .within-popup > .c-Button:after, .Modal .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .within-popup > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .Modal .within-popup > a:after, .Modal .within-popup > .goog-te-gadget-simple:after, .Modal .within-popup > .c-IconButton:before, .Modal .within-popup > [data-js=hitHighlightingClose]:before, .Modal .within-popup > [data-js=hitHighlightingNext]:before, .Modal .within-popup > [data-js=hitHighlightingPrev]:before, .Modal .within-popup > [data-js=hitHighlightingContent]:before, .Modal .within-popup > .c-IconButton:after, .Modal .within-popup > [data-js=hitHighlightingClose]:after, .Modal .within-popup > [data-js=hitHighlightingNext]:after, .Modal .within-popup > [data-js=hitHighlightingPrev]:after, .Modal .within-popup > [data-js=hitHighlightingContent]:after {
  color: black;
}
.Modal .within-popup > .c-Button:hover, .Modal .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .within-popup > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .Modal .within-popup > a:hover, .Modal .within-popup > .goog-te-gadget-simple:hover, .Modal .within-popup > .c-IconButton:hover, .Modal .within-popup > [data-js=hitHighlightingClose]:hover, .Modal .within-popup > [data-js=hitHighlightingNext]:hover, .Modal .within-popup > [data-js=hitHighlightingPrev]:hover, .Modal .within-popup > [data-js=hitHighlightingContent]:hover {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.15),0px 24px 38px 3px rgba(0, 0, 0, 0.1),0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.fancybox-close {
  position: absolute;
  padding: 5px 0 0 0;
  z-index: 8042;
  background-image: none !important;
  background-color: white;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  outline: none;
}
.fancybox-close:before {
  position: relative;
  transform: unset;
  top: unset;
  left: unset;
  opacity: 1;
  height: 1em;
  width: 1em;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-family: "pf2-icons", "FontAwesome", "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  background: transparent;
  user-select: none;
  overflow: hidden;
  color: inherit;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "";
  font-size: 20px;
  margin-top: 2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  color: #0f356c;
}

.fancybox-skin {
  padding-right: 17px;
}

.fancybox-inner {
  padding-right: 17px;
}

.c-alertDialog {
  top: 0;
  left: 0;
  z-index: 9999;
}
.c-alertDialog--container {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-alertDialog--backdrop {
  z-index: 0;
}

.rhotonMediaWrapper {
  position: relative;
  width: 854px;
  max-width: calc( 95vw - 16px - 16px);
  height: 0;
  max-height: 53.3957845433vw;
  padding-bottom: 56.206088993%;
}
@media (min-width: 1152px) {
  .rhotonMediaWrapper {
    max-width: 854px;
    padding-bottom: 480px;
    max-height: 480px;
  }
}
.rhotonMediaWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-Popover, .page-homepage .tt-menu, .page-homepage .tt-dropdown-menu, .appbar-configurable .c-Appbar .tt-menu, .appbar-configurable .c-Appbar .tt-dropdown-menu, #quickLinks .tt-menu, #quickLinks .tt-dropdown-menu {
  z-index: 2;
  position: absolute;
  outline: none;
  color: black;
  background-color: white;
  max-height: 400px;
  overflow-y: auto;
  list-style: none;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15),0px 8px 10px 1px rgba(0, 0, 0, 0.1),0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
.c-Popover .c-Button:not(.c-Button--contained), .c-Popover .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Popover a:not(.c-Button--contained), .page-homepage .tt-menu .c-Button:not(.c-Button--contained), .page-homepage .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-menu a:not(.c-Button--contained), .page-homepage .tt-dropdown-menu .c-Button:not(.c-Button--contained), .page-homepage .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-dropdown-menu a:not(.c-Button--contained), .appbar-configurable .c-Appbar .tt-menu .c-Button:not(.c-Button--contained), .appbar-configurable .c-Appbar .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-menu a:not(.c-Button--contained), .appbar-configurable .c-Appbar .tt-dropdown-menu .c-Button:not(.c-Button--contained), .appbar-configurable .c-Appbar .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-dropdown-menu a:not(.c-Button--contained), #quickLinks .tt-menu .c-Button:not(.c-Button--contained), #quickLinks .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-menu a:not(.c-Button--contained), #quickLinks .tt-dropdown-menu .c-Button:not(.c-Button--contained), #quickLinks .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-dropdown-menu a:not(.c-Button--contained), .c-Popover .goog-te-gadget-simple:not(.c-Button--contained), .page-homepage .tt-menu .goog-te-gadget-simple:not(.c-Button--contained), .page-homepage .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained), .appbar-configurable .c-Appbar .tt-menu .goog-te-gadget-simple:not(.c-Button--contained), .appbar-configurable .c-Appbar .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained), #quickLinks .tt-menu .goog-te-gadget-simple:not(.c-Button--contained), #quickLinks .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained), .c-Popover .c-IconButton, .c-Popover [data-js=hitHighlightingClose], .c-Popover [data-js=hitHighlightingNext], .c-Popover [data-js=hitHighlightingPrev], .c-Popover [data-js=hitHighlightingContent], .page-homepage .tt-menu .c-IconButton, .page-homepage .tt-menu [data-js=hitHighlightingClose], .page-homepage .tt-menu [data-js=hitHighlightingNext], .page-homepage .tt-menu [data-js=hitHighlightingPrev], .page-homepage .tt-menu [data-js=hitHighlightingContent], .page-homepage .tt-dropdown-menu .c-IconButton, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingClose], .page-homepage .tt-dropdown-menu [data-js=hitHighlightingNext], .page-homepage .tt-dropdown-menu [data-js=hitHighlightingPrev], .page-homepage .tt-dropdown-menu [data-js=hitHighlightingContent], .appbar-configurable .c-Appbar .tt-menu .c-IconButton, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingClose], .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingNext], .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingPrev], .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingContent], .appbar-configurable .c-Appbar .tt-dropdown-menu .c-IconButton, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingClose], .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingNext], .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingPrev], .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingContent], #quickLinks .tt-menu .c-IconButton, #quickLinks .tt-menu [data-js=hitHighlightingClose], #quickLinks .tt-menu [data-js=hitHighlightingNext], #quickLinks .tt-menu [data-js=hitHighlightingPrev], #quickLinks .tt-menu [data-js=hitHighlightingContent], #quickLinks .tt-dropdown-menu .c-IconButton, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingClose], #quickLinks .tt-dropdown-menu [data-js=hitHighlightingNext], #quickLinks .tt-dropdown-menu [data-js=hitHighlightingPrev], #quickLinks .tt-dropdown-menu [data-js=hitHighlightingContent] {
  color: black !important;
}
.c-Popover .c-Button:not(.c-Button--contained):before, .c-Popover .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Popover a:not(.c-Button--contained):before, .page-homepage .tt-menu .c-Button:not(.c-Button--contained):before, .page-homepage .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-menu a:not(.c-Button--contained):before, .page-homepage .tt-dropdown-menu .c-Button:not(.c-Button--contained):before, .page-homepage .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-dropdown-menu a:not(.c-Button--contained):before, .appbar-configurable .c-Appbar .tt-menu .c-Button:not(.c-Button--contained):before, .appbar-configurable .c-Appbar .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-menu a:not(.c-Button--contained):before, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-Button:not(.c-Button--contained):before, .appbar-configurable .c-Appbar .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-dropdown-menu a:not(.c-Button--contained):before, #quickLinks .tt-menu .c-Button:not(.c-Button--contained):before, #quickLinks .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-menu a:not(.c-Button--contained):before, #quickLinks .tt-dropdown-menu .c-Button:not(.c-Button--contained):before, #quickLinks .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-dropdown-menu a:not(.c-Button--contained):before, .c-Popover .goog-te-gadget-simple:not(.c-Button--contained):before, .page-homepage .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):before, .page-homepage .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):before, .appbar-configurable .c-Appbar .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):before, .appbar-configurable .c-Appbar .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):before, #quickLinks .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):before, #quickLinks .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):before, .c-Popover .c-Button:not(.c-Button--contained):after, .c-Popover .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Popover a:not(.c-Button--contained):after, .page-homepage .tt-menu .c-Button:not(.c-Button--contained):after, .page-homepage .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-menu a:not(.c-Button--contained):after, .page-homepage .tt-dropdown-menu .c-Button:not(.c-Button--contained):after, .page-homepage .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-dropdown-menu a:not(.c-Button--contained):after, .appbar-configurable .c-Appbar .tt-menu .c-Button:not(.c-Button--contained):after, .appbar-configurable .c-Appbar .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-menu a:not(.c-Button--contained):after, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-Button:not(.c-Button--contained):after, .appbar-configurable .c-Appbar .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-dropdown-menu a:not(.c-Button--contained):after, #quickLinks .tt-menu .c-Button:not(.c-Button--contained):after, #quickLinks .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-menu a:not(.c-Button--contained):after, #quickLinks .tt-dropdown-menu .c-Button:not(.c-Button--contained):after, #quickLinks .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-dropdown-menu a:not(.c-Button--contained):after, .c-Popover .goog-te-gadget-simple:not(.c-Button--contained):after, .page-homepage .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):after, .page-homepage .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):after, .appbar-configurable .c-Appbar .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):after, .appbar-configurable .c-Appbar .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):after, #quickLinks .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):after, #quickLinks .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):after, .c-Popover .c-IconButton:before, .c-Popover [data-js=hitHighlightingClose]:before, .c-Popover [data-js=hitHighlightingNext]:before, .c-Popover [data-js=hitHighlightingPrev]:before, .c-Popover [data-js=hitHighlightingContent]:before, .page-homepage .tt-menu .c-IconButton:before, .page-homepage .tt-menu [data-js=hitHighlightingClose]:before, .page-homepage .tt-menu [data-js=hitHighlightingNext]:before, .page-homepage .tt-menu [data-js=hitHighlightingPrev]:before, .page-homepage .tt-menu [data-js=hitHighlightingContent]:before, .page-homepage .tt-dropdown-menu .c-IconButton:before, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingClose]:before, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingNext]:before, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingPrev]:before, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingContent]:before, .appbar-configurable .c-Appbar .tt-menu .c-IconButton:before, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingClose]:before, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingNext]:before, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingPrev]:before, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingContent]:before, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-IconButton:before, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingClose]:before, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingNext]:before, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingPrev]:before, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingContent]:before, #quickLinks .tt-menu .c-IconButton:before, #quickLinks .tt-menu [data-js=hitHighlightingClose]:before, #quickLinks .tt-menu [data-js=hitHighlightingNext]:before, #quickLinks .tt-menu [data-js=hitHighlightingPrev]:before, #quickLinks .tt-menu [data-js=hitHighlightingContent]:before, #quickLinks .tt-dropdown-menu .c-IconButton:before, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingClose]:before, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingNext]:before, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingPrev]:before, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingContent]:before, .c-Popover .c-IconButton:after, .c-Popover [data-js=hitHighlightingClose]:after, .c-Popover [data-js=hitHighlightingNext]:after, .c-Popover [data-js=hitHighlightingPrev]:after, .c-Popover [data-js=hitHighlightingContent]:after, .page-homepage .tt-menu .c-IconButton:after, .page-homepage .tt-menu [data-js=hitHighlightingClose]:after, .page-homepage .tt-menu [data-js=hitHighlightingNext]:after, .page-homepage .tt-menu [data-js=hitHighlightingPrev]:after, .page-homepage .tt-menu [data-js=hitHighlightingContent]:after, .page-homepage .tt-dropdown-menu .c-IconButton:after, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingClose]:after, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingNext]:after, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingPrev]:after, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingContent]:after, .appbar-configurable .c-Appbar .tt-menu .c-IconButton:after, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingClose]:after, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingNext]:after, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingPrev]:after, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingContent]:after, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-IconButton:after, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingClose]:after, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingNext]:after, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingPrev]:after, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingContent]:after, #quickLinks .tt-menu .c-IconButton:after, #quickLinks .tt-menu [data-js=hitHighlightingClose]:after, #quickLinks .tt-menu [data-js=hitHighlightingNext]:after, #quickLinks .tt-menu [data-js=hitHighlightingPrev]:after, #quickLinks .tt-menu [data-js=hitHighlightingContent]:after, #quickLinks .tt-dropdown-menu .c-IconButton:after, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingClose]:after, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingNext]:after, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingPrev]:after, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingContent]:after {
  color: black !important;
}
.c-Popover .c-Button:not(.c-Button--contained):hover, .c-Popover .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Popover a:not(.c-Button--contained):hover, .page-homepage .tt-menu .c-Button:not(.c-Button--contained):hover, .page-homepage .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-menu a:not(.c-Button--contained):hover, .page-homepage .tt-dropdown-menu .c-Button:not(.c-Button--contained):hover, .page-homepage .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-dropdown-menu a:not(.c-Button--contained):hover, .appbar-configurable .c-Appbar .tt-menu .c-Button:not(.c-Button--contained):hover, .appbar-configurable .c-Appbar .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-menu a:not(.c-Button--contained):hover, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-Button:not(.c-Button--contained):hover, .appbar-configurable .c-Appbar .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-dropdown-menu a:not(.c-Button--contained):hover, #quickLinks .tt-menu .c-Button:not(.c-Button--contained):hover, #quickLinks .tt-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-menu a:not(.c-Button--contained):hover, #quickLinks .tt-dropdown-menu .c-Button:not(.c-Button--contained):hover, #quickLinks .tt-dropdown-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:not(.c-Button--contained):hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-dropdown-menu a:not(.c-Button--contained):hover, .c-Popover .goog-te-gadget-simple:not(.c-Button--contained):hover, .page-homepage .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):hover, .page-homepage .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):hover, .appbar-configurable .c-Appbar .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):hover, .appbar-configurable .c-Appbar .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):hover, #quickLinks .tt-menu .goog-te-gadget-simple:not(.c-Button--contained):hover, #quickLinks .tt-dropdown-menu .goog-te-gadget-simple:not(.c-Button--contained):hover, .c-Popover .c-IconButton:hover, .c-Popover [data-js=hitHighlightingClose]:hover, .c-Popover [data-js=hitHighlightingNext]:hover, .c-Popover [data-js=hitHighlightingPrev]:hover, .c-Popover [data-js=hitHighlightingContent]:hover, .page-homepage .tt-menu .c-IconButton:hover, .page-homepage .tt-menu [data-js=hitHighlightingClose]:hover, .page-homepage .tt-menu [data-js=hitHighlightingNext]:hover, .page-homepage .tt-menu [data-js=hitHighlightingPrev]:hover, .page-homepage .tt-menu [data-js=hitHighlightingContent]:hover, .page-homepage .tt-dropdown-menu .c-IconButton:hover, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingClose]:hover, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingNext]:hover, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingPrev]:hover, .page-homepage .tt-dropdown-menu [data-js=hitHighlightingContent]:hover, .appbar-configurable .c-Appbar .tt-menu .c-IconButton:hover, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingClose]:hover, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingNext]:hover, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingPrev]:hover, .appbar-configurable .c-Appbar .tt-menu [data-js=hitHighlightingContent]:hover, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-IconButton:hover, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingClose]:hover, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingNext]:hover, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingPrev]:hover, .appbar-configurable .c-Appbar .tt-dropdown-menu [data-js=hitHighlightingContent]:hover, #quickLinks .tt-menu .c-IconButton:hover, #quickLinks .tt-menu [data-js=hitHighlightingClose]:hover, #quickLinks .tt-menu [data-js=hitHighlightingNext]:hover, #quickLinks .tt-menu [data-js=hitHighlightingPrev]:hover, #quickLinks .tt-menu [data-js=hitHighlightingContent]:hover, #quickLinks .tt-dropdown-menu .c-IconButton:hover, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingClose]:hover, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingNext]:hover, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingPrev]:hover, #quickLinks .tt-dropdown-menu [data-js=hitHighlightingContent]:hover {
  color: black !important;
  background-color: rgba(0, 0, 0, 0.1) !important;
}
.c-Popover li, .page-homepage .tt-menu li, .page-homepage .tt-dropdown-menu li, .appbar-configurable .c-Appbar .tt-menu li, .appbar-configurable .c-Appbar .tt-dropdown-menu li, #quickLinks .tt-menu li, #quickLinks .tt-dropdown-menu li {
  width: 100%;
  padding: 0px 8px;
  padding-left: 0;
}
.c-Popover li span, .page-homepage .tt-menu li span, .page-homepage .tt-dropdown-menu li span, .appbar-configurable .c-Appbar .tt-menu li span, .appbar-configurable .c-Appbar .tt-dropdown-menu li span, #quickLinks .tt-menu li span, #quickLinks .tt-dropdown-menu li span {
  flex: 1 1 0;
  -webkit-flex: 1 1 0;
}
.c-Popover li span .c-Button, .c-Popover li span .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Popover li span a, .page-homepage .tt-menu li span .c-Button, .page-homepage .tt-menu li span .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-menu li span a, .page-homepage .tt-dropdown-menu li span .c-Button, .page-homepage .tt-dropdown-menu li span .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-homepage .tt-dropdown-menu li span a, .appbar-configurable .c-Appbar .tt-menu li span .c-Button, .appbar-configurable .c-Appbar .tt-menu li span .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-menu li span a, .appbar-configurable .c-Appbar .tt-dropdown-menu li span .c-Button, .appbar-configurable .c-Appbar .tt-dropdown-menu li span .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-configurable .c-Appbar .tt-dropdown-menu li span a, #quickLinks .tt-menu li span .c-Button, #quickLinks .tt-menu li span .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-menu li span a, #quickLinks .tt-dropdown-menu li span .c-Button, #quickLinks .tt-dropdown-menu li span .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more #quickLinks .tt-dropdown-menu li span a, .c-Popover li span .goog-te-gadget-simple.goog-te-gadget-simple, .page-homepage .tt-menu li span .goog-te-gadget-simple.goog-te-gadget-simple, .page-homepage .tt-dropdown-menu li span .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-configurable .c-Appbar .tt-menu li span .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-configurable .c-Appbar .tt-dropdown-menu li span .goog-te-gadget-simple.goog-te-gadget-simple, #quickLinks .tt-menu li span .goog-te-gadget-simple.goog-te-gadget-simple, #quickLinks .tt-dropdown-menu li span .goog-te-gadget-simple.goog-te-gadget-simple {
  width: 100%;
  justify-content: flex-start;
}
.c-Popover .c-InputLabel, .page-homepage .tt-menu .c-InputLabel, .page-homepage .tt-dropdown-menu .c-InputLabel, .appbar-configurable .c-Appbar .tt-menu .c-InputLabel, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputLabel, #quickLinks .tt-menu .c-InputLabel, #quickLinks .tt-dropdown-menu .c-InputLabel, .c-Popover .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-homepage .tt-menu .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-homepage .tt-dropdown-menu .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .appbar-configurable .c-Appbar .tt-menu .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .appbar-configurable .c-Appbar .tt-dropdown-menu .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), #quickLinks .tt-menu .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), #quickLinks .tt-dropdown-menu .page-page #pageContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form .c-Popover div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form .page-homepage .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-homepage .page-page #pageContent form .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form .page-homepage .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-homepage .page-page #pageContent form .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form .appbar-configurable .c-Appbar .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .appbar-configurable .c-Appbar .page-page #pageContent form .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form .appbar-configurable .c-Appbar .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .appbar-configurable .c-Appbar .page-page #pageContent form .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form #quickLinks .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), #quickLinks .page-page #pageContent form .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-page #pageContent form #quickLinks .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), #quickLinks .page-page #pageContent form .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .c-Popover .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-homepage .tt-menu .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-homepage .tt-dropdown-menu .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .appbar-configurable .c-Appbar .tt-menu .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .appbar-configurable .c-Appbar .tt-dropdown-menu .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), #quickLinks .tt-menu .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), #quickLinks .tt-dropdown-menu .page-form #mainContent form div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form .c-Popover div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form .page-homepage .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-homepage .page-form #mainContent form .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form .page-homepage .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-homepage .page-form #mainContent form .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form .appbar-configurable .c-Appbar .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .appbar-configurable .c-Appbar .page-form #mainContent form .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form .appbar-configurable .c-Appbar .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .appbar-configurable .c-Appbar .page-form #mainContent form .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form #quickLinks .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), #quickLinks .page-form #mainContent form .tt-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), .page-form #mainContent form #quickLinks .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]), #quickLinks .page-form #mainContent form .tt-dropdown-menu div:not(.c-FormControl):not([data-component-formcontrol]) > label:not(.c-InputLabel):not([data-component-inputlabel]) {
  color: rgba(0, 0, 0, 0.8);
}
.c-Popover .c-InputLabel--isFocused, .page-homepage .tt-menu .c-InputLabel--isFocused, .page-homepage .tt-dropdown-menu .c-InputLabel--isFocused, .appbar-configurable .c-Appbar .tt-menu .c-InputLabel--isFocused, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputLabel--isFocused, #quickLinks .tt-menu .c-InputLabel--isFocused, #quickLinks .tt-dropdown-menu .c-InputLabel--isFocused {
  color: rgba(0, 0, 0, 0.8);
}
.c-Popover .c-Input, .page-homepage .tt-menu .c-Input, .page-homepage .tt-dropdown-menu .c-Input, .appbar-configurable .c-Appbar .tt-menu .c-Input, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-Input, #quickLinks .tt-menu .c-Input, #quickLinks .tt-dropdown-menu .c-Input {
  color: black;
}
.c-Popover .c-Input:before, .page-homepage .tt-menu .c-Input:before, .page-homepage .tt-dropdown-menu .c-Input:before, .appbar-configurable .c-Appbar .tt-menu .c-Input:before, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-Input:before, #quickLinks .tt-menu .c-Input:before, #quickLinks .tt-dropdown-menu .c-Input:before {
  background-color: rgba(0, 0, 0, 0.3);
}
.c-Popover .c-Input:after, .page-homepage .tt-menu .c-Input:after, .page-homepage .tt-dropdown-menu .c-Input:after, .appbar-configurable .c-Appbar .tt-menu .c-Input:after, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-Input:after, #quickLinks .tt-menu .c-Input:after, #quickLinks .tt-dropdown-menu .c-Input:after {
  background-color: black;
}
.c-Popover .c-Input:hover:before, .page-homepage .tt-menu .c-Input:hover:before, .page-homepage .tt-dropdown-menu .c-Input:hover:before, .appbar-configurable .c-Appbar .tt-menu .c-Input:hover:before, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-Input:hover:before, #quickLinks .tt-menu .c-Input:hover:before, #quickLinks .tt-dropdown-menu .c-Input:hover:before {
  background-color: rgba(0, 0, 0, 0.65);
}
.c-Popover .c-InputField, .page-homepage .tt-menu .c-InputField, .page-homepage .tt-dropdown-menu .c-InputField, .appbar-configurable .c-Appbar .tt-menu .c-InputField, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputField, #quickLinks .tt-menu .c-InputField, #quickLinks .tt-dropdown-menu .c-InputField, .c-Popover .page-page #pageContent input:not([type=checkbox]), .page-homepage .tt-menu .page-page #pageContent input:not([type=checkbox]), .page-homepage .tt-dropdown-menu .page-page #pageContent input:not([type=checkbox]), .appbar-configurable .c-Appbar .tt-menu .page-page #pageContent input:not([type=checkbox]), .appbar-configurable .c-Appbar .tt-dropdown-menu .page-page #pageContent input:not([type=checkbox]), #quickLinks .tt-menu .page-page #pageContent input:not([type=checkbox]), #quickLinks .tt-dropdown-menu .page-page #pageContent input:not([type=checkbox]), .page-page #pageContent .c-Popover input:not([type=checkbox]), .page-page #pageContent .page-homepage .tt-menu input:not([type=checkbox]), .page-homepage .page-page #pageContent .tt-menu input:not([type=checkbox]), .page-page #pageContent .page-homepage .tt-dropdown-menu input:not([type=checkbox]), .page-homepage .page-page #pageContent .tt-dropdown-menu input:not([type=checkbox]), .page-page #pageContent .appbar-configurable .c-Appbar .tt-menu input:not([type=checkbox]), .appbar-configurable .c-Appbar .page-page #pageContent .tt-menu input:not([type=checkbox]), .page-page #pageContent .appbar-configurable .c-Appbar .tt-dropdown-menu input:not([type=checkbox]), .appbar-configurable .c-Appbar .page-page #pageContent .tt-dropdown-menu input:not([type=checkbox]), .page-page #pageContent #quickLinks .tt-menu input:not([type=checkbox]), #quickLinks .page-page #pageContent .tt-menu input:not([type=checkbox]), .page-page #pageContent #quickLinks .tt-dropdown-menu input:not([type=checkbox]), #quickLinks .page-page #pageContent .tt-dropdown-menu input:not([type=checkbox]), .c-Popover .page-form #mainContent input:not([type=checkbox]), .page-homepage .tt-menu .page-form #mainContent input:not([type=checkbox]), .page-homepage .tt-dropdown-menu .page-form #mainContent input:not([type=checkbox]), .appbar-configurable .c-Appbar .tt-menu .page-form #mainContent input:not([type=checkbox]), .appbar-configurable .c-Appbar .tt-dropdown-menu .page-form #mainContent input:not([type=checkbox]), #quickLinks .tt-menu .page-form #mainContent input:not([type=checkbox]), #quickLinks .tt-dropdown-menu .page-form #mainContent input:not([type=checkbox]), .page-form #mainContent .c-Popover input:not([type=checkbox]), .page-form #mainContent .page-homepage .tt-menu input:not([type=checkbox]), .page-homepage .page-form #mainContent .tt-menu input:not([type=checkbox]), .page-form #mainContent .page-homepage .tt-dropdown-menu input:not([type=checkbox]), .page-homepage .page-form #mainContent .tt-dropdown-menu input:not([type=checkbox]), .page-form #mainContent .appbar-configurable .c-Appbar .tt-menu input:not([type=checkbox]), .appbar-configurable .c-Appbar .page-form #mainContent .tt-menu input:not([type=checkbox]), .page-form #mainContent .appbar-configurable .c-Appbar .tt-dropdown-menu input:not([type=checkbox]), .appbar-configurable .c-Appbar .page-form #mainContent .tt-dropdown-menu input:not([type=checkbox]), .page-form #mainContent #quickLinks .tt-menu input:not([type=checkbox]), #quickLinks .page-form #mainContent .tt-menu input:not([type=checkbox]), .page-form #mainContent #quickLinks .tt-dropdown-menu input:not([type=checkbox]), #quickLinks .page-form #mainContent .tt-dropdown-menu input:not([type=checkbox]) {
  color: black;
}
.c-Popover .c-InputField::placeholder, .page-homepage .tt-menu .c-InputField::placeholder, .page-homepage .tt-dropdown-menu .c-InputField::placeholder, .appbar-configurable .c-Appbar .tt-menu .c-InputField::placeholder, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputField::placeholder, #quickLinks .tt-menu .c-InputField::placeholder, #quickLinks .tt-dropdown-menu .c-InputField::placeholder, .c-Popover .page-page #pageContent input:not([type=checkbox])::placeholder, .page-homepage .tt-menu .page-page #pageContent input:not([type=checkbox])::placeholder, .page-homepage .tt-dropdown-menu .page-page #pageContent input:not([type=checkbox])::placeholder, .appbar-configurable .c-Appbar .tt-menu .page-page #pageContent input:not([type=checkbox])::placeholder, .appbar-configurable .c-Appbar .tt-dropdown-menu .page-page #pageContent input:not([type=checkbox])::placeholder, #quickLinks .tt-menu .page-page #pageContent input:not([type=checkbox])::placeholder, #quickLinks .tt-dropdown-menu .page-page #pageContent input:not([type=checkbox])::placeholder, .page-page #pageContent .c-Popover input:not([type=checkbox])::placeholder, .page-page #pageContent .page-homepage .tt-menu input:not([type=checkbox])::placeholder, .page-homepage .page-page #pageContent .tt-menu input:not([type=checkbox])::placeholder, .page-page #pageContent .page-homepage .tt-dropdown-menu input:not([type=checkbox])::placeholder, .page-homepage .page-page #pageContent .tt-dropdown-menu input:not([type=checkbox])::placeholder, .page-page #pageContent .appbar-configurable .c-Appbar .tt-menu input:not([type=checkbox])::placeholder, .appbar-configurable .c-Appbar .page-page #pageContent .tt-menu input:not([type=checkbox])::placeholder, .page-page #pageContent .appbar-configurable .c-Appbar .tt-dropdown-menu input:not([type=checkbox])::placeholder, .appbar-configurable .c-Appbar .page-page #pageContent .tt-dropdown-menu input:not([type=checkbox])::placeholder, .page-page #pageContent #quickLinks .tt-menu input:not([type=checkbox])::placeholder, #quickLinks .page-page #pageContent .tt-menu input:not([type=checkbox])::placeholder, .page-page #pageContent #quickLinks .tt-dropdown-menu input:not([type=checkbox])::placeholder, #quickLinks .page-page #pageContent .tt-dropdown-menu input:not([type=checkbox])::placeholder, .c-Popover .page-form #mainContent input:not([type=checkbox])::placeholder, .page-homepage .tt-menu .page-form #mainContent input:not([type=checkbox])::placeholder, .page-homepage .tt-dropdown-menu .page-form #mainContent input:not([type=checkbox])::placeholder, .appbar-configurable .c-Appbar .tt-menu .page-form #mainContent input:not([type=checkbox])::placeholder, .appbar-configurable .c-Appbar .tt-dropdown-menu .page-form #mainContent input:not([type=checkbox])::placeholder, #quickLinks .tt-menu .page-form #mainContent input:not([type=checkbox])::placeholder, #quickLinks .tt-dropdown-menu .page-form #mainContent input:not([type=checkbox])::placeholder, .page-form #mainContent .c-Popover input:not([type=checkbox])::placeholder, .page-form #mainContent .page-homepage .tt-menu input:not([type=checkbox])::placeholder, .page-homepage .page-form #mainContent .tt-menu input:not([type=checkbox])::placeholder, .page-form #mainContent .page-homepage .tt-dropdown-menu input:not([type=checkbox])::placeholder, .page-homepage .page-form #mainContent .tt-dropdown-menu input:not([type=checkbox])::placeholder, .page-form #mainContent .appbar-configurable .c-Appbar .tt-menu input:not([type=checkbox])::placeholder, .appbar-configurable .c-Appbar .page-form #mainContent .tt-menu input:not([type=checkbox])::placeholder, .page-form #mainContent .appbar-configurable .c-Appbar .tt-dropdown-menu input:not([type=checkbox])::placeholder, .appbar-configurable .c-Appbar .page-form #mainContent .tt-dropdown-menu input:not([type=checkbox])::placeholder, .page-form #mainContent #quickLinks .tt-menu input:not([type=checkbox])::placeholder, #quickLinks .page-form #mainContent .tt-menu input:not([type=checkbox])::placeholder, .page-form #mainContent #quickLinks .tt-dropdown-menu input:not([type=checkbox])::placeholder, #quickLinks .page-form #mainContent .tt-dropdown-menu input:not([type=checkbox])::placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.c-Popover .c-InputAffix, .page-homepage .tt-menu .c-InputAffix, .page-homepage .tt-dropdown-menu .c-InputAffix, .appbar-configurable .c-Appbar .tt-menu .c-InputAffix, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputAffix, #quickLinks .tt-menu .c-InputAffix, #quickLinks .tt-dropdown-menu .c-InputAffix {
  color: black;
}
.c-Popover .c-InputAffix:before, .page-homepage .tt-menu .c-InputAffix:before, .page-homepage .tt-dropdown-menu .c-InputAffix:before, .appbar-configurable .c-Appbar .tt-menu .c-InputAffix:before, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputAffix:before, #quickLinks .tt-menu .c-InputAffix:before, #quickLinks .tt-dropdown-menu .c-InputAffix:before, .c-Popover .c-InputAffix:after, .page-homepage .tt-menu .c-InputAffix:after, .page-homepage .tt-dropdown-menu .c-InputAffix:after, .appbar-configurable .c-Appbar .tt-menu .c-InputAffix:after, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputAffix:after, #quickLinks .tt-menu .c-InputAffix:after, #quickLinks .tt-dropdown-menu .c-InputAffix:after {
  color: black;
}
.c-Popover .c-InputAffix--isFocused, .page-homepage .tt-menu .c-InputAffix--isFocused, .page-homepage .tt-dropdown-menu .c-InputAffix--isFocused, .appbar-configurable .c-Appbar .tt-menu .c-InputAffix--isFocused, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputAffix--isFocused, #quickLinks .tt-menu .c-InputAffix--isFocused, #quickLinks .tt-dropdown-menu .c-InputAffix--isFocused {
  color: black;
}
.c-Popover .c-InputAffix--isFocused:before, .page-homepage .tt-menu .c-InputAffix--isFocused:before, .page-homepage .tt-dropdown-menu .c-InputAffix--isFocused:before, .appbar-configurable .c-Appbar .tt-menu .c-InputAffix--isFocused:before, .appbar-configurable .c-Appbar .tt-dropdown-menu .c-InputAffix--isFocused:before, #quickLinks .tt-menu .c-InputAffix--isFocused:before, #quickLinks .tt-dropdown-menu .c-InputAffix--isFocused:before {
  color: black;
}
.c-Popover .border, .page-homepage .tt-menu .border, .page-homepage .tt-dropdown-menu .border, .appbar-configurable .c-Appbar .tt-menu .border, .appbar-configurable .c-Appbar .tt-dropdown-menu .border, #quickLinks .tt-menu .border, #quickLinks .tt-dropdown-menu .border, .c-Popover .border-top, .page-homepage .tt-menu .border-top, .page-homepage .tt-dropdown-menu .border-top, .appbar-configurable .c-Appbar .tt-menu .border-top, .appbar-configurable .c-Appbar .tt-dropdown-menu .border-top, #quickLinks .tt-menu .border-top, #quickLinks .tt-dropdown-menu .border-top, .c-Popover .border-right, .page-homepage .tt-menu .border-right, .page-homepage .tt-dropdown-menu .border-right, .appbar-configurable .c-Appbar .tt-menu .border-right, .appbar-configurable .c-Appbar .tt-dropdown-menu .border-right, #quickLinks .tt-menu .border-right, #quickLinks .tt-dropdown-menu .border-right, .c-Popover .border-bottom, .page-homepage .tt-menu .border-bottom, .page-homepage .tt-dropdown-menu .border-bottom, .appbar-configurable .c-Appbar .tt-menu .border-bottom, .appbar-configurable .c-Appbar .tt-dropdown-menu .border-bottom, #quickLinks .tt-menu .border-bottom, #quickLinks .tt-dropdown-menu .border-bottom, .c-Popover .border-left, .page-homepage .tt-menu .border-left, .page-homepage .tt-dropdown-menu .border-left, .appbar-configurable .c-Appbar .tt-menu .border-left, .appbar-configurable .c-Appbar .tt-dropdown-menu .border-left, #quickLinks .tt-menu .border-left, #quickLinks .tt-dropdown-menu .border-left {
  border-color: rgba(0, 0, 0, 0.2);
}
.c-Popover h3, .page-homepage .tt-menu h3, .page-homepage .tt-dropdown-menu h3, .appbar-configurable .c-Appbar .tt-menu h3, .appbar-configurable .c-Appbar .tt-dropdown-menu h3, #quickLinks .tt-menu h3, #quickLinks .tt-dropdown-menu h3 {
  z-index: 1;
  position: sticky;
  top: 0px;
  color: black;
  background-color: white;
}

.goog-te-menu-frame.goog-te-menu-frame {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15),0px 8px 10px 1px rgba(0, 0, 0, 0.1),0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  margin-top: 16px;
  border-radius: 4px;
}

@media (max-width: 480px) {
  [data-popover-breakpoints*=xs] {
    display: none;
  }
}

@media (max-width: 768px) {
  [data-popover-breakpoints*=sm] {
    display: none;
  }
}

@media (max-width: 1152px) {
  [data-popover-breakpoints*=md] {
    display: none;
  }
}

@media (max-width: 1300px) {
  [data-popover-breakpoints*=lg] {
    display: none;
  }
}

@media (max-width: 1600px) {
  [data-popover-breakpoints*=xl] {
    display: none;
  }
}

.c-Progress--circular {
  width: 40px;
  height: 40px;
  stroke: black;
  transform: translate3d(0, 0, 0);
  -webkit-animation: c-Progress--rotation 1.35s linear infinite;
  animation: c-Progress--rotation 1.35s linear infinite;
}
.c-Progress--circular.c-Progress--primary {
  stroke: #0f356c;
}
.c-Progress--circular.c-Progress--secondary {
  stroke: #f0f0f0;
}
.c-Progress--circular.c-Progress--contrast {
  stroke: #ffffff;
}
.c-Progress--circular.c-Progress--small {
  width: 20px;
  height: 20px;
}
.c-Progress--circular.c-Progress--medium {
  width: 40px;
  height: 40px;
}
.c-Progress--circular.c-Progress--large {
  width: 50px;
  height: 50px;
}
.c-Progress--circular .c-Progress__circle {
  cx: 33;
  cy: 33;
  r: 30;
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 180;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: c-Progress--turn 1.35s ease-in-out infinite;
  animation: c-Progress--turn 1.35s ease-in-out infinite;
}

@-webkit-keyframes c-Progress--rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes c-Progress--rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes c-Progress--turn {
  0% {
    stroke-dashoffset: 180;
  }
  50% {
    stroke-dashoffset: 45;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 180;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@keyframes c-Progress--turn {
  0% {
    stroke-dashoffset: 180;
  }
  50% {
    stroke-dashoffset: 45;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 180;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
.c-Select--native, .page-page #pageContent select, .page-form #mainContent select {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding-top: 0 !important;
  padding-bottom: 0px !important;
  padding-right: 32px !important;
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 16px;
  border: 0px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075) !important;
  -webkit-appearance: none;
  border-radius: 0px !important;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: "Noto Sans", sans-serif !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAgMAAAAqbBEUAAAACVBMVEUAAAB2dnZ2dnb2ofOoAAAAAnRSTlMAgJsrThgAAAA8SURBVCjPYxgFYMC2CggmQDmMII4DTCpr1aqVcHVSq1YtQWgCa4FpAmuBawJqQWhagmwTUAtCkwPDyAIA+wkQyFZM+TEAAAAASUVORK5CYII=") no-repeat;
  cursor: pointer;
  background-size: 22px;
  background-position: 100% 72%;
  outline: none;
}
.c-Select--native:hover, .page-page #pageContent select:hover, .page-form #mainContent select:hover {
  border-bottom: 1px solid #757575 !important;
}
.c-Select--native:active, .page-page #pageContent select:active, .page-form #mainContent select:active {
  border-bottom: 1px solid #0f356c !important;
}
.c-Select--native:not([disabled]), .page-page #pageContent select:not([disabled]), .page-form #mainContent select:not([disabled]) {
  color: rgba(0, 0, 0, 0.8);
}
.c-Select--native[disabled], .page-page #pageContent select[disabled], .page-form #mainContent select[disabled] {
  pointer-events: none;
  color: black;
  border: 1px dotted black !important;
}
.c-Select--native::-ms-expand, .page-page #pageContent select::-ms-expand, .page-form #mainContent select::-ms-expand {
  display: none;
}
.c-Select--native--variant--outlined {
  border: 1px solid rgba(0, 0, 0, 0.075) !important;
  border-radius: 4px !important;
}
.c-Select--native--variant--outlined:hover {
  border: 1px solid #757575 !important;
}
.c-Select--native--variant--outlined:active {
  border: 1px solid #0f356c !important;
}

.page-checkout .c-Select--native, .page-checkout .page-page #pageContent select, .page-page #pageContent .page-checkout select, .page-checkout .page-form #mainContent select, .page-form #mainContent .page-checkout select {
  border: solid 1px grey !important;
  padding-left: 8px !important;
  height: 42px;
}

table:not(.unstyled) {
  border: 1px solid rgba(0, 0, 0, 0.075);
  border-radius: 4px;
  border-collapse: unset;
}

.page-page #pageContent table:not(.unstyled) thead tr, .myData.data-grid table:not(.unstyled) thead tr, .stuffTable.data-grid table:not(.unstyled) thead tr, .metrics-table table:not(.unstyled) thead tr, .component-content-metrics table:not(.unstyled) thead tr, .component-content-summary table:not(.unstyled) thead tr, .component-content-html table:not(.unstyled) thead tr {
  height: 48px;
  display: table-row;
  outline: none;
  vertical-align: middle;
}
.page-page #pageContent table:not(.unstyled) thead tr th, .myData.data-grid table:not(.unstyled) thead tr th, .stuffTable.data-grid table:not(.unstyled) thead tr th, .metrics-table table:not(.unstyled) thead tr th, .component-content-metrics table:not(.unstyled) thead tr th, .component-content-summary table:not(.unstyled) thead tr th, .component-content-html table:not(.unstyled) thead tr th {
  display: table-cell;
  vertical-align: bottom;
  border-top: 1px solid rgba(0, 0, 0, 0.045);
  border-left: 1px solid rgba(0, 0, 0, 0.045);
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.page-page #pageContent table:not(.unstyled) thead tr th:not([align]), .myData.data-grid table:not(.unstyled) thead tr th:not([align]), .stuffTable.data-grid table:not(.unstyled) thead tr th:not([align]), .metrics-table table:not(.unstyled) thead tr th:not([align]), .component-content-metrics table:not(.unstyled) thead tr th:not([align]), .component-content-summary table:not(.unstyled) thead tr th:not([align]), .component-content-html table:not(.unstyled) thead tr th:not([align]) {
  text-align: left;
}
.page-page #pageContent table:not(.unstyled) tbody td, .myData.data-grid table:not(.unstyled) tbody td, .stuffTable.data-grid table:not(.unstyled) tbody td, .metrics-table table:not(.unstyled) tbody td, .component-content-metrics table:not(.unstyled) tbody td, .component-content-summary table:not(.unstyled) tbody td, .component-content-html table:not(.unstyled) tbody td {
  display: table-cell;
  vertical-align: inherit;
  border-top: 1px solid rgba(0, 0, 0, 0.045);
  border-left: 1px solid rgba(0, 0, 0, 0.045);
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  padding: 12px;
}
.page-page #pageContent table:not(.unstyled) tbody td:nth-child(even), .myData.data-grid table:not(.unstyled) tbody td:nth-child(even), .stuffTable.data-grid table:not(.unstyled) tbody td:nth-child(even), .metrics-table table:not(.unstyled) tbody td:nth-child(even), .component-content-metrics table:not(.unstyled) tbody td:nth-child(even), .component-content-summary table:not(.unstyled) tbody td:nth-child(even), .component-content-html table:not(.unstyled) tbody td:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.045);
}
.page-page #pageContent table:not(.unstyled) tbody td:not([align]), .myData.data-grid table:not(.unstyled) tbody td:not([align]), .stuffTable.data-grid table:not(.unstyled) tbody td:not([align]), .metrics-table table:not(.unstyled) tbody td:not([align]), .component-content-metrics table:not(.unstyled) tbody td:not([align]), .component-content-summary table:not(.unstyled) tbody td:not([align]), .component-content-html table:not(.unstyled) tbody td:not([align]) {
  text-align: left;
}

.component-content-summary .tableWrap, .component-content-html .tableWrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(0, 0, 0, 0.075);
  margin-bottom: 24px;
  padding: 16px;
}
.component-content-summary .tableWrapFoot, .component-content-html .tableWrapFoot {
  margin-top: 1em;
}
.component-content-summary .tableWrapFoot .attribution:first-of-type, .component-content-html .tableWrapFoot .attribution:first-of-type {
  margin-bottom: 1em;
}
.component-content-summary .verse-group .attribution:first-of-type, .component-content-html .verse-group .attribution:first-of-type {
  margin-bottom: 1em;
}

.myData.data-grid, .stuffTable.data-grid {
  width: 100%;
}
.myData.data-grid thead tr th, .stuffTable.data-grid thead tr th {
  color: #0f356c;
  font-family: "Brill", "Georgia", serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}
.myData.data-grid a:not(.c-Button):not(.goog-te-gadget-simple.goog-te-gadget-simple):not(.c-IconButton):not([data-js=hitHighlightingClose]):not([data-js=hitHighlightingNext]):not([data-js=hitHighlightingPrev]):not([data-js=hitHighlightingContent]), .stuffTable.data-grid a:not(.c-Button):not(.goog-te-gadget-simple.goog-te-gadget-simple):not(.c-IconButton):not([data-js=hitHighlightingClose]):not([data-js=hitHighlightingNext]):not([data-js=hitHighlightingPrev]):not([data-js=hitHighlightingContent]) {
  text-decoration: none;
}
.myData.data-grid a:not(.c-Button):not(.goog-te-gadget-simple.goog-te-gadget-simple):not(.c-IconButton):not([data-js=hitHighlightingClose]):not([data-js=hitHighlightingNext]):not([data-js=hitHighlightingPrev]):not([data-js=hitHighlightingContent]):hover, .stuffTable.data-grid a:not(.c-Button):not(.goog-te-gadget-simple.goog-te-gadget-simple):not(.c-IconButton):not([data-js=hitHighlightingClose]):not([data-js=hitHighlightingNext]):not([data-js=hitHighlightingPrev]):not([data-js=hitHighlightingContent]):hover {
  text-decoration: underline;
}
.myData.data-grid tbody td.checkbox, .stuffTable.data-grid tbody td.checkbox {
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.myData.data-grid tbody td.actions, .stuffTable.data-grid tbody td.actions {
  padding: 0px;
}
.myData.data-grid tbody td.actions ul, .stuffTable.data-grid tbody td.actions ul {
  margin: 0px;
}

#myPanels .t-data-grid {
  width: 100%;
}
#myPanels .t-data-grid .c-Table td.actions {
  text-align: center;
}

.c-Tabs {
  position: relative;
  width: 100%;
  min-height: 48px;
  display: flex;
  justify-content: start;
  overflow-x: scroll;
  background-color: white;
  border-radius: 0px;
}
@media (min-width: 1152px) {
  .c-Tabs {
    overflow-x: hidden;
  }
}
@media (min-width: 1300px) {
  .c-Tabs {
    justify-content: center;
  }
}
.c-Tabs--scrollable {
  overflow-x: auto;
}
.c-Tabs--sticky {
  z-index: 11;
  position: sticky;
  top: 0px;
}
.c-Tabs--alignCenter {
  justify-content: center;
}
.c-Tabs--alignLeft {
  justify-content: flex-start;
}
.c-Tabs--alignRight {
  justify-content: flex-end;
}
.c-Tabs:after {
  z-index: 2;
  content: " ";
  position: absolute;
  bottom: 0px;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.075);
}
.c-Tabs .c-Tabs__tab {
  z-index: 2;
  position: relative;
  padding: 0px;
  border: none;
  color: black;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.c-Tabs .c-Tabs__tab--active, .c-Tabs .c-Tabs__tab[aria-selected=true] {
  cursor: auto;
  pointer-events: none;
  color: #0f356c;
}
.c-Tabs .c-Tabs__tab--active:after, .c-Tabs .c-Tabs__tab[aria-selected=true]:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 5px;
  display: block;
  background-color: #0f356c;
}
.c-Tabs .c-Tabs__tab--active > .c-Button, .c-Tabs .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs__tab--active > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs .c-Tabs__tab--active > a, .c-Tabs .c-Tabs__tab--active > .goog-te-gadget-simple.goog-te-gadget-simple, .c-Tabs .c-Tabs__tab[aria-selected=true] > .c-Button, .c-Tabs .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs__tab[aria-selected=true] > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs .c-Tabs__tab[aria-selected=true] > a, .c-Tabs .c-Tabs__tab[aria-selected=true] > .goog-te-gadget-simple.goog-te-gadget-simple {
  color: #0f356c;
  font-size: 1rem;
  font-weight: 500;
}
.c-Tabs .c-Tabs__tab > .c-Button, .c-Tabs .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs__tab > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs .c-Tabs__tab > a, .c-Tabs .c-Tabs__tab > .goog-te-gadget-simple.goog-te-gadget-simple {
  min-height: 48px;
  color: black;
  font-size: 1.125rem;
  font-weight: 500;
  border: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.c-Tabs .c-Tabs__tab > .c-Button:hover, .c-Tabs .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs__tab > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs .c-Tabs__tab > a:hover, .c-Tabs .c-Tabs__tab > .goog-te-gadget-simple:hover {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}
.c-Tabs .c-Tabs__tab > .c-Button:after, .c-Tabs .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs__tab > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .c-Tabs .c-Tabs__tab > a:after, .c-Tabs .c-Tabs__tab > .goog-te-gadget-simple:after {
  content: unset !important;
}

#myTabs li.tab.disabled a {
  color: rgba(0, 0, 0, 0.6);
}
#myTabs li.tab.active a {
  position: relative;
  cursor: auto;
  pointer-events: none;
  color: #0f356c;
}
#myTabs li.tab.active a:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 5px;
  display: block;
  background-color: #0f356c;
}
#myTabs li.tab a {
  text-decoration: none;
}

.ui-tabs {
  width: 100%;
  margin-bottom: 32px;
  padding: 0 !important;
  /* This is to override the padding jquery-ui adds */
}
.ui-tabs .container-tabs ~ .container-body .container-item .component-content-pdf {
  margin: 0px;
  border: 0px;
}
.ie-11 .ui-tabs .container-tabs {
  -ms-overflow-style: none;
}
.ui-tabs .ui-tabs-nav {
  padding: 0;
}
.ui-tabs .ui-tabs-nav li {
  margin: 0;
}
.ui-tabs .ui-tabs-nav li.disabled a {
  color: rgba(0, 0, 0, 0.6);
}
.ui-tabs .ui-tabs-nav li.ui-state-active a {
  position: relative;
  cursor: auto;
  pointer-events: none;
  color: #0f356c;
}
.ui-tabs .ui-tabs-nav li.ui-state-active a:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 5px;
  display: block;
  background-color: #0f356c;
}
.ui-tabs .ui-tabs-panel {
  display: block;
  padding: 0px !important;
}
.ui-tabs--primary .ui-tabs-nav li a {
  color: #0f356c;
}
.ui-tabs--primary .ui-tabs-nav li.ui-state-active a:after {
  background-color: #0f356c;
}
.ui-tabs--secondary .ui-tabs-nav li a {
  color: #f0f0f0;
}
.ui-tabs--secondary .ui-tabs-nav li.ui-state-active a:after {
  background-color: #f0f0f0;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin: 0px !important;
  padding: 0px;
}

.ui-tabs .ui-tabs-nav {
  margin: 0px !important;
  padding: 0px !important;
}

.c-twoColumnList .left-column {
  background-color: rgba(15, 53, 108, 0.1);
  padding: 1em 0em 1em 2em;
  overflow-y: auto;
}
.c-twoColumnList .left-column .left-item--selected {
  background-color: white;
  border-radius: 8px;
}
.c-twoColumnList .left-column .left-item .taxonomy-list-item .label {
  text-align: left;
}
.c-twoColumnList .left-column .left-item .taxonomy-list-item a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.c-twoColumnList .left-column .left-item .taxonomy-list-item a:after {
  content: "";
  font-family: "pf2-icons";
  color: #007f92;
}
.c-twoColumnList .left-column .left-item .taxonomy-list-item a .c-Button--link:hover, .c-twoColumnList .left-column .left-item .taxonomy-list-item a .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:hover:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) .c-twoColumnList .left-column .left-item .taxonomy-list-item a a:hover:not(.truncate-show-more), .c-twoColumnList .left-column .left-item .taxonomy-list-item a .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .c-twoColumnList .left-column .left-item .taxonomy-list-item a .level-2:not(.leaf-node) > a.taxonomyNode:hover, .c-twoColumnList .left-column .left-item .taxonomy-list-item a .component-content-summary :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle), .component-content-summary .c-twoColumnList .left-column .left-item .taxonomy-list-item a :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.c-twoColumnList .left-column .left-item .taxonomy-list-item a .component-content-html :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-content-html .c-twoColumnList .left-column .left-item .taxonomy-list-item a :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.c-twoColumnList .left-column .left-item .taxonomy-list-item a .page-page #pageContent :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-page #pageContent .c-twoColumnList .left-column .left-item .taxonomy-list-item a :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.c-twoColumnList .left-column .left-item .taxonomy-list-item a .page-form #mainContent :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-form #mainContent .c-twoColumnList .left-column .left-item .taxonomy-list-item a :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.c-twoColumnList .left-column .left-item .taxonomy-list-item a .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .c-twoColumnList .left-column .left-item .taxonomy-list-item a :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.c-twoColumnList .left-column .left-item .taxonomy-list-item a .component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body .c-twoColumnList .left-column .left-item .taxonomy-list-item a :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle), .c-twoColumnList .left-column .left-item .taxonomy-list-item a [class^=content-contributor-] .contributor-line a:hover, [class^=content-contributor-] .contributor-line .c-twoColumnList .left-column .left-item .taxonomy-list-item a a:hover, .c-twoColumnList .left-column .left-item .taxonomy-list-item a [data-rhoton-links-visible=true] [data-rhoton]:hover, [data-rhoton-links-visible=true] .c-twoColumnList .left-column .left-item .taxonomy-list-item a [data-rhoton]:hover {
  background-color: white;
  border-radius: 8px;
}
.c-twoColumnList .left-column .left-item .taxonomy-list-item:hover {
  background-color: white;
  border-radius: 4px;
}
.c-twoColumnList .right-column {
  padding: 1em 2em 2em 2em;
}
.c-twoColumnList .right-column .right-item-group .right-item {
  break-inside: avoid;
}
.c-twoColumnList .right-column .right-item-group .right-item .taxonomy-list-item .label {
  text-align: left;
}
.c-twoColumnList .right-column .right-item-group .right-item .taxonomy-list-item a {
  text-decoration: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}

.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > .c-List__item {
  padding-top: unset;
  padding-bottom: unset;
}
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div, .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul:not(.locale-list) {
  position: absolute;
  display: none;
  outline: none !important;
  background-color: white;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15),0px 8px 10px 1px rgba(0, 0, 0, 0.1),0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
@media (max-width: 1300px) {
  .appbar-standard .c-Appbar .nav-menu > .nav-toggle + div, .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul:not(.locale-list) {
    padding: 8px;
  }
  .appbar-standard .c-Appbar .nav-menu > .nav-toggle + div .c-Button, .appbar-standard .c-Appbar .nav-menu > .nav-toggle + div .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + div a, .appbar-standard .c-Appbar .nav-menu > .nav-toggle + div .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul:not(.locale-list) .c-Button, .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul:not(.locale-list) .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul:not(.locale-list) a, .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul:not(.locale-list) .goog-te-gadget-simple.goog-te-gadget-simple {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar .nav-menu > .nav-toggle + div, .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul:not(.locale-list) {
    position: static;
    display: flex;
    background-color: white;
    box-shadow: none;
  }
}
.appbar-standard .c-Appbar .nav-menu.open > .nav-toggle + div, .appbar-standard .c-Appbar .nav-menu.open > .nav-toggle + ul:not(.locale-list) {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar .nav-menu.open > .nav-toggle + div, .appbar-standard .c-Appbar .nav-menu.open > .nav-toggle + ul:not(.locale-list) {
    flex-direction: row;
  }
}
.appbar-standard .c-Appbar .nav-menu > .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple.goog-te-gadget-simple,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple.goog-te-gadget-simple,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose],
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext],
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev],
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent],
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple.goog-te-gadget-simple,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose],
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext],
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev],
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent] {
  width: 100%;
  justify-content: flex-start;
  color: black;
}
.appbar-standard .c-Appbar .nav-menu > .c-Button:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a:before, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple:before, .appbar-standard .c-Appbar .nav-menu > .c-Button:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a:after, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button:before,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a:before,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button:after,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a:after,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose]:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext]:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev]:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent]:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose]:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext]:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev]:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent]:after,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button:before,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a:before,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a:before,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple:before,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button:after,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a:after,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a:after,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple:after,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton:before,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose]:before,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext]:before,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev]:before,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent]:before,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton:after,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose]:after,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext]:after,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev]:after,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent]:after {
  color: black;
}
.appbar-standard .c-Appbar .nav-menu > .c-Button:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a:hover, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button:hover,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a:hover,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose]:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext]:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev]:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent]:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button:hover,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a:hover,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose]:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext]:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev]:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent]:hover {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar .nav-menu > .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple.goog-te-gadget-simple,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple.goog-te-gadget-simple,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose],
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext],
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev],
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent],
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple.goog-te-gadget-simple,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose],
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext],
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev],
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent] {
    justify-content: center;
    color: #0f356c;
  }
  .appbar-standard .c-Appbar .nav-menu > .c-Button:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a:before, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple:before, .appbar-standard .c-Appbar .nav-menu > .c-Button:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a:after, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button:before,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a:before,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button:after,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a:after,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose]:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext]:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev]:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent]:before,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose]:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext]:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev]:after,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent]:after,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button:before,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a:before,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a:before,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple:before,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button:after,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a:after,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a:after,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple:after,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton:before,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose]:before,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext]:before,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev]:before,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent]:before,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton:after,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose]:after,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext]:after,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev]:after,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent]:after {
    color: #0f356c;
  }
  .appbar-standard .c-Appbar .nav-menu > .c-Button:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a:hover, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button:hover,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a:hover,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose]:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext]:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev]:hover,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent]:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button:hover,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a:hover,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose]:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext]:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev]:hover,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent]:hover {
    color: #0f356c;
    background-color: rgba(15, 53, 108, 0.1);
  }
}
.appbar-standard .c-Appbar .nav-menu > .c-Button + span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > a + span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > a + span, .appbar-standard .c-Appbar .nav-menu > .goog-te-gadget-simple.goog-te-gadget-simple + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-Button + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > ul > li > .c-IconButton + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-Button + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + div > div > ul > li > .c-IconButton + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-Button + span,
.appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .nav-menu > .nav-toggle + ul > li > a + span,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > a + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .goog-te-gadget-simple.goog-te-gadget-simple + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > .c-IconButton + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingClose] + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingNext] + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingPrev] + span,
.appbar-standard .c-Appbar .nav-menu > .nav-toggle + ul > li > [data-js=hitHighlightingContent] + span,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-Button + span,
.appbar-standard .c-Appbar .nav-menu .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + span,
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .nav-menu .expandable > a + span,
.appbar-standard .c-Appbar .nav-menu .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + span,
.appbar-standard .c-Appbar .nav-menu .expandable > .c-IconButton + span,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingClose] + span,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingNext] + span,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingPrev] + span,
.appbar-standard .c-Appbar .nav-menu .expandable > [data-js=hitHighlightingContent] + span {
  display: none;
}
.appbar-standard .c-Appbar .c-IconButton, .appbar-standard .c-Appbar [data-js=hitHighlightingClose], .appbar-standard .c-Appbar [data-js=hitHighlightingNext], .appbar-standard .c-Appbar [data-js=hitHighlightingPrev], .appbar-standard .c-Appbar [data-js=hitHighlightingContent] {
  justify-content: center;
  color: #0f356c;
}
.appbar-standard .c-Appbar .c-IconButton:before, .appbar-standard .c-Appbar [data-js=hitHighlightingClose]:before, .appbar-standard .c-Appbar [data-js=hitHighlightingNext]:before, .appbar-standard .c-Appbar [data-js=hitHighlightingPrev]:before, .appbar-standard .c-Appbar [data-js=hitHighlightingContent]:before, .appbar-standard .c-Appbar .c-IconButton:after, .appbar-standard .c-Appbar [data-js=hitHighlightingClose]:after, .appbar-standard .c-Appbar [data-js=hitHighlightingNext]:after, .appbar-standard .c-Appbar [data-js=hitHighlightingPrev]:after, .appbar-standard .c-Appbar [data-js=hitHighlightingContent]:after {
  color: #0f356c;
}
.appbar-standard .c-Appbar .c-IconButton:hover, .appbar-standard .c-Appbar [data-js=hitHighlightingClose]:hover, .appbar-standard .c-Appbar [data-js=hitHighlightingNext]:hover, .appbar-standard .c-Appbar [data-js=hitHighlightingPrev]:hover, .appbar-standard .c-Appbar [data-js=hitHighlightingContent]:hover {
  color: #0f356c;
  background-color: rgba(15, 53, 108, 0.1);
}
.appbar-standard .c-Appbar .c-IconButton--menu, .appbar-standard .c-Appbar .c-IconButton--filterList {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.appbar-standard .c-Appbar .nav-menu.open .c-Popover, .appbar-standard .c-Appbar .nav-menu.open .page-homepage .tt-menu, .page-homepage .appbar-standard .c-Appbar .nav-menu.open .tt-menu, .appbar-standard .c-Appbar .nav-menu.open .page-homepage .tt-dropdown-menu, .page-homepage .appbar-standard .c-Appbar .nav-menu.open .tt-dropdown-menu, .appbar-standard .appbar-configurable .c-Appbar .nav-menu.open .tt-menu, .appbar-configurable .appbar-standard .c-Appbar .nav-menu.open .tt-menu, .appbar-standard .appbar-configurable .c-Appbar .nav-menu.open .tt-dropdown-menu, .appbar-configurable .appbar-standard .c-Appbar .nav-menu.open .tt-dropdown-menu, .appbar-standard .c-Appbar .nav-menu.open #quickLinks .tt-menu, #quickLinks .appbar-standard .c-Appbar .nav-menu.open .tt-menu, .appbar-standard .c-Appbar .nav-menu.open #quickLinks .tt-dropdown-menu, #quickLinks .appbar-standard .c-Appbar .nav-menu.open .tt-dropdown-menu {
  display: flex;
  flex-direction: column;
}
.appbar-standard .c-Appbar .expandable > .c-Button + div:not(.c-Popover), .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div:not(.c-Popover), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div:not(.c-Popover), .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div:not(.c-Popover), .appbar-standard .c-Appbar .expandable > .c-Button + ul:not(.c-Popover), .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul:not(.c-Popover), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul:not(.c-Popover), .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul:not(.c-Popover) {
  z-index: 1;
  padding: 8px;
  position: absolute;
  display: none;
  outline: none !important;
  background-color: white;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15),0px 8px 10px 1px rgba(0, 0, 0, 0.1),0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
.appbar-standard .c-Appbar .c-Popover, .appbar-standard .c-Appbar .page-homepage .tt-menu, .page-homepage .appbar-standard .c-Appbar .tt-menu, .appbar-standard .c-Appbar .page-homepage .tt-dropdown-menu, .page-homepage .appbar-standard .c-Appbar .tt-dropdown-menu, .appbar-standard .appbar-configurable .c-Appbar .tt-menu, .appbar-configurable .appbar-standard .c-Appbar .tt-menu, .appbar-standard .appbar-configurable .c-Appbar .tt-dropdown-menu, .appbar-configurable .appbar-standard .c-Appbar .tt-dropdown-menu, .appbar-standard .c-Appbar #quickLinks .tt-menu, #quickLinks .appbar-standard .c-Appbar .tt-menu, .appbar-standard .c-Appbar #quickLinks .tt-dropdown-menu, #quickLinks .appbar-standard .c-Appbar .tt-dropdown-menu {
  position: absolute;
  display: none;
  outline: none !important;
  background-color: white;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15),0px 8px 10px 1px rgba(0, 0, 0, 0.1),0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding-bottom: 8px;
}
.appbar-standard .c-Appbar .expandable > .c-Button + div .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div .c-Button, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div .c-Button, .appbar-standard .c-Appbar .expandable > .c-Button + div .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + div a, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div a, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .c-Button, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div a, .appbar-standard .c-Appbar .expandable > .c-Button + div .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div .goog-te-gadget-simple.goog-te-gadget-simple, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .expandable > .c-Button + ul .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul .c-Button, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul .c-Button, .appbar-standard .c-Appbar .expandable > .c-Button + ul .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + ul a, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul a, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .c-Button, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul a, .appbar-standard .c-Appbar .expandable > .c-Button + ul .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul .goog-te-gadget-simple.goog-te-gadget-simple, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .goog-te-gadget-simple.goog-te-gadget-simple {
  width: 100%;
  justify-content: flex-start;
}
.appbar-standard .c-Appbar .expandable > .c-Button + div .c-Button span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div .c-Button span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div .c-Button span, .appbar-standard .c-Appbar .expandable > .c-Button + div .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + div a span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div a span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .c-Button span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div a span, .appbar-standard .c-Appbar .expandable > .c-Button + div .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div .goog-te-gadget-simple.goog-te-gadget-simple span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .expandable > .c-Button + ul .c-Button span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul .c-Button span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul .c-Button span, .appbar-standard .c-Appbar .expandable > .c-Button + ul .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + ul a span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul a span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .c-Button span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul a span, .appbar-standard .c-Appbar .expandable > .c-Button + ul .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul .goog-te-gadget-simple.goog-te-gadget-simple span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .goog-te-gadget-simple.goog-te-gadget-simple span {
  white-space: normal;
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar .expandable > .c-Button + div .c-Button span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div .c-Button span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div .c-Button span, .appbar-standard .c-Appbar .expandable > .c-Button + div .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + div a span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div a span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .c-Button span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div a span, .appbar-standard .c-Appbar .expandable > .c-Button + div .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div .goog-te-gadget-simple.goog-te-gadget-simple span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .expandable > .c-Button + ul .c-Button span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul .c-Button span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul .c-Button span, .appbar-standard .c-Appbar .expandable > .c-Button + ul .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + ul a span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul a span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .c-Button span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul a span, .appbar-standard .c-Appbar .expandable > .c-Button + ul .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul .goog-te-gadget-simple.goog-te-gadget-simple span, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul .goog-te-gadget-simple.goog-te-gadget-simple span, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul .goog-te-gadget-simple.goog-te-gadget-simple span {
    white-space: nowrap;
  }
}
.appbar-standard .c-Appbar .expandable > .c-Button + div > .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .c-Button, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .c-Button + div > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + div > a, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > a, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > a, .appbar-standard .c-Appbar .expandable > .c-Button + div > .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .goog-te-gadget-simple.goog-te-gadget-simple, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .expandable > .c-Button + div > .c-IconButton, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .c-IconButton, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .c-IconButton, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingClose], .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingClose], .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingClose], .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingNext], .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingNext], .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingNext], .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingPrev], .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingPrev], .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingPrev], .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingContent], .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingContent], .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingContent], .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .c-IconButton, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingClose], .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingNext], .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingPrev], .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingContent], .appbar-standard .c-Appbar .expandable > .c-Button + ul > .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .c-Button, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .c-Button + ul > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + ul > a, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > a, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .c-Button, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > a, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .goog-te-gadget-simple.goog-te-gadget-simple, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .goog-te-gadget-simple.goog-te-gadget-simple, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .c-IconButton, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .c-IconButton, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .c-IconButton, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingClose], .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingClose], .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingClose], .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingNext], .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingNext], .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingNext], .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingPrev], .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingPrev], .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingPrev], .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingContent], .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingContent], .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingContent], .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .c-IconButton, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingClose], .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingNext], .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingPrev], .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingContent] {
  width: 100%;
  justify-content: flex-start;
  color: black;
}
.appbar-standard .c-Appbar .expandable > .c-Button + div > .c-Button:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .c-Button:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .c-Button:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .c-Button + div > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + div > a:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > a:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .c-Button:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > a:before, .appbar-standard .c-Appbar .expandable > .c-Button + div > .goog-te-gadget-simple:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .goog-te-gadget-simple:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .goog-te-gadget-simple:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .goog-te-gadget-simple:before, .appbar-standard .c-Appbar .expandable > .c-Button + div > .c-Button:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .c-Button:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .c-Button:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .c-Button + div > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + div > a:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > a:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .c-Button:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > a:after, .appbar-standard .c-Appbar .expandable > .c-Button + div > .goog-te-gadget-simple:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .goog-te-gadget-simple:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .goog-te-gadget-simple:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .goog-te-gadget-simple:after, .appbar-standard .c-Appbar .expandable > .c-Button + div > .c-IconButton:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .c-IconButton:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .c-IconButton:before, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingClose]:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingClose]:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingClose]:before, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingNext]:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingNext]:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingNext]:before, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingPrev]:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingPrev]:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingPrev]:before, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingContent]:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingContent]:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingContent]:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .c-IconButton:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingClose]:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingNext]:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingPrev]:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingContent]:before, .appbar-standard .c-Appbar .expandable > .c-Button + div > .c-IconButton:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .c-IconButton:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .c-IconButton:after, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingClose]:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingClose]:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingClose]:after, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingNext]:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingNext]:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingNext]:after, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingPrev]:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingPrev]:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingPrev]:after, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingContent]:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingContent]:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingContent]:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .c-IconButton:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingClose]:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingNext]:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingPrev]:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingContent]:after, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .c-Button:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .c-Button:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .c-Button:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .c-Button + ul > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + ul > a:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > a:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .c-Button:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > a:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > a:before, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .goog-te-gadget-simple:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .goog-te-gadget-simple:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .goog-te-gadget-simple:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .goog-te-gadget-simple:before, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .c-Button:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .c-Button:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .c-Button:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .c-Button + ul > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + ul > a:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > a:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .c-Button:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > a:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > a:after, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .goog-te-gadget-simple:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .goog-te-gadget-simple:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .goog-te-gadget-simple:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .goog-te-gadget-simple:after, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .c-IconButton:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .c-IconButton:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .c-IconButton:before, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingClose]:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingClose]:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingClose]:before, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingNext]:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingNext]:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingNext]:before, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingPrev]:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingPrev]:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingPrev]:before, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingContent]:before, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingContent]:before, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingContent]:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .c-IconButton:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingClose]:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingNext]:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingPrev]:before, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingContent]:before, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .c-IconButton:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .c-IconButton:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .c-IconButton:after, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingClose]:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingClose]:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingClose]:after, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingNext]:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingNext]:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingNext]:after, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingPrev]:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingPrev]:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingPrev]:after, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingContent]:after, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingContent]:after, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingContent]:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .c-IconButton:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingClose]:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingNext]:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingPrev]:after, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingContent]:after {
  color: black;
}
.appbar-standard .c-Appbar .expandable > .c-Button + div > .c-Button:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .c-Button:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .c-Button:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .c-Button + div > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + div > a:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > a:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .c-Button:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > a:hover, .appbar-standard .c-Appbar .expandable > .c-Button + div > .goog-te-gadget-simple:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .goog-te-gadget-simple:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .goog-te-gadget-simple:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .goog-te-gadget-simple:hover, .appbar-standard .c-Appbar .expandable > .c-Button + div > .c-IconButton:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > .c-IconButton:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > .c-IconButton:hover, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingClose]:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingClose]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingClose]:hover, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingNext]:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingNext]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingNext]:hover, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingPrev]:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingPrev]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingPrev]:hover, .appbar-standard .c-Appbar .expandable > .c-Button + div > [data-js=hitHighlightingContent]:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + div > [data-js=hitHighlightingContent]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + div > [data-js=hitHighlightingContent]:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > .c-IconButton:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingClose]:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingNext]:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingPrev]:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + div > [data-js=hitHighlightingContent]:hover, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .c-Button:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .c-Button:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .c-Button:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .c-Button + ul > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .c-Button + ul > a:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > a:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .c-Button:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > a:hover, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .goog-te-gadget-simple:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .goog-te-gadget-simple:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .goog-te-gadget-simple:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .goog-te-gadget-simple:hover, .appbar-standard .c-Appbar .expandable > .c-Button + ul > .c-IconButton:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > .c-IconButton:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > .c-IconButton:hover, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingClose]:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingClose]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingClose]:hover, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingNext]:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingNext]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingNext]:hover, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingPrev]:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingPrev]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingPrev]:hover, .appbar-standard .c-Appbar .expandable > .c-Button + ul > [data-js=hitHighlightingContent]:hover, .appbar-standard .c-Appbar .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .expandable > a + ul > [data-js=hitHighlightingContent]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .expandable > a + ul > [data-js=hitHighlightingContent]:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > .c-IconButton:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingClose]:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingNext]:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingPrev]:hover, .appbar-standard .c-Appbar .expandable > .goog-te-gadget-simple.goog-te-gadget-simple + ul > [data-js=hitHighlightingContent]:hover {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}

.appbar-standard .c-Appbar .shows-taxonomy ~ ul {
  max-height: 400px;
  overflow-y: auto;
}
@media (min-width: 1152px) {
  .appbar-standard .c-Appbar .shows-taxonomy ~ ul {
    max-height: unset;
    column-count: 2;
    overflow-y: unset;
  }
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar .shows-taxonomy ~ ul {
    column-count: 3;
  }
}
.appbar-standard .c-Appbar .shows-taxonomy ~ ul > li {
  display: block;
}
.appbar-standard .c-Appbar .shows-taxonomy ~ ul > li .c-Button img, .appbar-standard .c-Appbar .shows-taxonomy ~ ul > li .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a img, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .appbar-standard .c-Appbar .shows-taxonomy ~ ul > li a img, .appbar-standard .c-Appbar .shows-taxonomy ~ ul > li .goog-te-gadget-simple.goog-te-gadget-simple img {
  max-width: 40px;
  max-height: 40px;
  margin-right: 4px;
  display: inline-block;
}

#loginUser {
  font-size: 0px;
}
@media (min-width: 1300px) {
  #loginUser {
    font-size: 1rem;
  }
}

#headerUtilityBar .locale-menu {
  display: none;
  order: 2;
}
@media (min-width: 1300px) {
  #headerUtilityBar .locale-menu {
    display: block;
  }
}
#headerUtilityBar .locale-menu .locale-toggle > span {
  position: relative;
  clip: inherit;
  height: inherit;
  width: inherit;
  overflow: inherit;
}
#headerUtilityBar .locale-menu .content-box-header {
  display: none;
}
#headerUtilityBar .locale-menu .google-translate-container {
  margin: 0px !important;
  padding: 0px !important;
  border: none !important;
  background-color: unset;
}
#headerUtilityBar .localeNav.mobileOnly {
  padding: 0;
}
#headerUtilityBar .localeNav.mobileOnly div.label {
  display: block;
  padding: 20px;
  position: relative;
}
#headerUtilityBar .localeNav.mobileOnly div.label:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  position: relative;
  top: 0;
  display: inline-block;
  content: "";
  margin-right: 7px;
}
#headerUtilityBar .localeNav.mobileOnly div.label:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  content: "";
  position: absolute;
  height: 56px;
  width: 64px;
  top: 0;
  right: 0;
  display: block;
  border-left: solid 1px rgba(0, 0, 0, 0.075);
  text-align: center;
  line-height: 54px;
  cursor: pointer;
}
#headerUtilityBar .locale.selected {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}
#headerUtilityBar .locale-list {
  text-transform: uppercase;
}

#quickLinks {
  width: 100%;
  overflow: visible;
}
#quickLinks > .form-wrapper {
  width: 100%;
  max-width: 700px;
}
#quickLinks .c-IconButton > span, #quickLinks [data-js=hitHighlightingClose] > span, #quickLinks [data-js=hitHighlightingNext] > span, #quickLinks [data-js=hitHighlightingPrev] > span, #quickLinks [data-js=hitHighlightingContent] > span {
  display: none !important;
}
#quickLinks #quickSearchItems > .ico-search-options:before {
  content: unset;
}
#quickLinks .twitter-typeahead {
  position: relative;
  flex: 1;
  display: block !important;
  width: 100%;
}
#quickLinks .tt-menu, #quickLinks .tt-dropdown-menu {
  width: 100%;
  padding: 16px;
  background-color: white;
  border: solid 1px rgba(0, 0, 0, 0.075);
}
#quickLinks .tt-menu .tt-suggestion, #quickLinks .tt-dropdown-menu .tt-suggestion {
  display: block;
  padding: 8px;
  cursor: pointer;
  width: 100%;
  justify-content: flex-start;
  color: black;
  border-radius: 4px;
}
#quickLinks .tt-menu .tt-suggestion:before, #quickLinks .tt-menu .tt-suggestion:after, #quickLinks .tt-dropdown-menu .tt-suggestion:before, #quickLinks .tt-dropdown-menu .tt-suggestion:after {
  color: black;
}
#quickLinks .tt-menu .tt-suggestion:hover, #quickLinks .tt-dropdown-menu .tt-suggestion:hover {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}
#quickLinks .tt-menu .tt-suggestion.tt-cursor, #quickLinks .tt-dropdown-menu .tt-suggestion.tt-cursor {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}

.c-Appbar {
  z-index: 1100 !important;
  position: fixed;
  top: 0px;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform  225ms cubic-bezier(0, 0, 0.2, 1);
  will-change: transform;
}
.c-Appbar--pinned {
  transform: translate3d(0, 0, 0);
  transition: transform  225ms cubic-bezier(0, 0, 0.2, 1);
}
.c-Appbar--unpinned {
  transform: translate3d(0, -100%, 0);
  transition: transform  195ms cubic-bezier(0.4, 0, 1, 1);
}
.c-Appbar ul {
  list-style: none;
}

.appbar-standard .c-Appbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  padding: 8px;
  font-family: "Noto Sans", sans-serif;
  line-height: 1;
  background-color: white;
  border-bottom: solid 2px rgba(0, 0, 0, 0.075);
}
.appbar-standard .c-Appbar #header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.appbar-standard .c-Appbar .header-placeholers {
  min-width: 100%;
}
.appbar-standard .c-Appbar #headerLogo {
  position: relative;
  order: 1;
  bottom: 0px !important;
  left: 0px;
  min-width: 100%;
  padding-bottom: 4px;
  width: 100% !important;
  height: 50px !important;
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar #headerLogo {
    width: calc(540px + 10px) !important;
  }
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar #headerLogo {
    height: 90px !important;
  }
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar #headerLogo {
    position: absolute;
    min-width: calc(540px + 10px);
    width: calc(540px + 10px);
  }
}
.appbar-standard .c-Appbar #headerLogo a {
  height: 100%;
  min-height: 58px;
  display: block;
  background: 10px center no-repeat url("/fileasset//fileasset/brill-mobile-June2021.png");
  background-size: contain;
}
@media (min-width: 768px) {
  .appbar-standard .c-Appbar #headerLogo a {
    background: 10px center no-repeat url("/fileasset//fileasset/brill-mobile-June2021.png");
    background-size: contain;
  }
}
@media (min-width: 1300px) {
  .appbar-standard .c-Appbar #headerLogo a {
    margin-left: 8px;
    background: left center no-repeat url("/fileasset/brill-desktop.png");
    background-size: contain;
  }
}
.appbar-standard .c-Appbar #headerLogo a span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.appbar-standard .c-Appbar #navigation #homenav {
  margin: 0;
  padding: 0;
}

.appbar-configurable .c-Appbar .twitter-typeahead {
  position: relative;
  flex: 1;
  display: block !important;
  width: 100%;
  background-color: inherit;
}
.appbar-configurable .c-Appbar .tt-menu, .appbar-configurable .c-Appbar .tt-dropdown-menu {
  width: 100%;
  padding: 16px;
  background-color: inherit;
  color: inherit;
  border: solid 1px rgba(0, 0, 0, 0.075);
}
.appbar-configurable .c-Appbar .tt-menu .tt-suggestion, .appbar-configurable .c-Appbar .tt-dropdown-menu .tt-suggestion {
  display: block;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
}
.appbar-configurable .c-Appbar .tt-menu .tt-suggestion.tt-cursor, .appbar-configurable .c-Appbar .tt-dropdown-menu .tt-suggestion.tt-cursor {
  color: black;
  background-color: inherit;
}

.page-homepage .twitter-typeahead {
  position: relative;
  flex: 1;
  display: block !important;
  width: 100%;
  background-color: inherit;
}
.page-homepage .tt-menu, .page-homepage .tt-dropdown-menu {
  width: 100%;
  padding: 16px;
  background-color: inherit;
  color: inherit;
  border: solid 1px rgba(0, 0, 0, 0.075);
}
.page-homepage .tt-menu .tt-suggestion, .page-homepage .tt-dropdown-menu .tt-suggestion {
  display: block;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
}
.page-homepage .tt-menu .tt-suggestion.tt-cursor, .page-homepage .tt-dropdown-menu .tt-suggestion.tt-cursor {
  color: black;
  background-color: inherit;
}

a.offScreen {
  position: absolute;
  top: 0;
  left: 0;
}
a.offScreen:focus {
  position: static;
}
a.offScreen#jumpToMainNavigation {
  margin-left: 50%;
}

.c-Appbar [class^=ico-]:not(.c-IconButton):not([data-js=hitHighlightingClose]):not([data-js=hitHighlightingNext]):not([data-js=hitHighlightingPrev]):not([data-js=hitHighlightingContent]) span,
.c-Appbar [class*=ico-]:not(.c-IconButton):not([data-js=hitHighlightingClose]):not([data-js=hitHighlightingNext]):not([data-js=hitHighlightingPrev]):not([data-js=hitHighlightingContent]) span, #quickLinks [class^=ico-]:not(.c-IconButton):not([data-js=hitHighlightingClose]):not([data-js=hitHighlightingNext]):not([data-js=hitHighlightingPrev]):not([data-js=hitHighlightingContent]) span,
#quickLinks [class*=ico-]:not(.c-IconButton):not([data-js=hitHighlightingClose]):not([data-js=hitHighlightingNext]):not([data-js=hitHighlightingPrev]):not([data-js=hitHighlightingContent]) span {
  position: relative !important;
  height: auto !important;
  width: auto !important;
  clip: unset !important;
  overflow: visible !important;
}
.c-Appbar .pageLinks, .c-Appbar .mobileOnly, .c-Appbar .local-icon, #quickLinks .pageLinks, #quickLinks .mobileOnly, #quickLinks .local-icon {
  display: none;
}

.c-FormControlLabel {
  position: relative;
  display: inline-flex;
}
.c-FormControlLabel__input {
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 42px;
  height: 42px;
  opacity: 0;
  border-radius: 48px;
  cursor: pointer;
}
.c-FormControlLabel__input[type=checkbox] + .c-FormControlLabel__label {
  padding: 0px !important;
}
.c-FormControlLabel__input[type=checkbox]:checked + .c-FormControlLabel__label {
  padding: 0px !important;
}
.c-FormControlLabel__input[type=radio] + .c-FormControlLabel__label {
  padding: 0px !important;
}
.c-FormControlLabel__input[type=radio]:checked + .c-FormControlLabel__label {
  padding: 0px !important;
}
.c-FormControlLabel__label {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4rem;
  cursor: pointer;
}
.c-FormControlLabel__label:before {
  width: 100%;
  top: 0px;
  left: 0px;
  margin: 0px;
  height: auto;
  width: auto;
  display: inline-flex;
  align-items: inherit;
  justify-content: inherit;
  color: currentColor;
  font-family: "pf2-icons", "Material Icons", "FontAwesome";
  font-size: inherit;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  transition: color  195ms cubic-bezier(0.4, 0, 1, 1);
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  position: relative;
  margin: 0;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  border: 0;
  font-size: 1.5rem;
  border-radius: 50%;
  overflow: visible;
  cursor: pointer;
  background-color: transparent;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 200ms cubic-bezier(0.4, 0, 1, 1), color 200ms cubic-bezier(0.4, 0, 1, 1);
  color: rgba(0, 0, 0, 0.54);
  margin-right: 4px;
  padding: 10px;
  color: black;
  background-color: transparent;
}
.c-FormControlLabel__label:before:focus {
  outline: 2px solid #00abc5;
}
.c-FormControlLabel__label:before:hover {
  background-color: rgba(0, 0, 0, 0.08);
  outline: 0;
}
.c-FormControlLabel__label:before--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-FormControlLabel__label:before::moz-focus-inner {
  border-style: none;
}
.c-FormControlLabel__label:before.c-IconButton--disabled {
  pointer-events: none !important;
  cursor: default !important;
  color: rgba(0, 0, 0, 0.26) !important;
  background-color: transparent !important;
}
.c-FormControlLabel__label:before--disableRipple .c-IconButton__ripple {
  display: none !important;
}
.c-FormControlLabel__label:before.c-IconButton--disableHover:hover {
  background-color: transparent !important;
}
.c-FormControlLabel__label:before.c-IconButton--disableRipple.c-IconButton__ripple {
  display: none !important;
}
.c-FormControlLabel__label:before.c-IconButton--inherit {
  color: inherit;
}
.c-FormControlLabel__label:before.c-IconButton--primary {
  color: #0f356c;
}
.c-FormControlLabel__label:before.c-IconButton--primary:focus {
  outline: 2px solid #00abc5;
}
.c-FormControlLabel__label:before.c-IconButton--primary:hover {
  background-color: rgba(15, 53, 108, 0.08);
  outline: 0;
}
.c-FormControlLabel__label:before.c-IconButton--primary--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-FormControlLabel__label:before.c-IconButton--secondary {
  color: #f0f0f0;
}
.c-FormControlLabel__label:before.c-IconButton--secondary:focus {
  outline: 2px solid #00abc5;
}
.c-FormControlLabel__label:before.c-IconButton--secondary:hover {
  background-color: rgba(240, 240, 240, 0.08);
  outline: 0;
}
.c-FormControlLabel__label:before.c-IconButton--secondary--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-FormControlLabel__label:before.c-IconButton--tertiary {
  color: #00abc5;
}
.c-FormControlLabel__label:before.c-IconButton--tertiary:focus {
  outline: 2px solid #00abc5;
}
.c-FormControlLabel__label:before.c-IconButton--tertiary:hover {
  background-color: rgba(0, 171, 197, 0.08);
  outline: 0;
}
.c-FormControlLabel__label:before.c-IconButton--tertiary--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-FormControlLabel__label:before.c-IconButton--contrast, .c-FormControlLabel__label[data-js=hitHighlightingClose]:before, .c-FormControlLabel__label[data-js=hitHighlightingNext]:before, .c-FormControlLabel__label[data-js=hitHighlightingPrev]:before, .c-FormControlLabel__label[data-js=hitHighlightingContent]:before {
  color: white;
}
.c-FormControlLabel__label:before.c-IconButton--contrast:focus, .c-FormControlLabel__label[data-js=hitHighlightingClose]:before:focus, .c-FormControlLabel__label[data-js=hitHighlightingNext]:before:focus, .c-FormControlLabel__label[data-js=hitHighlightingPrev]:before:focus, .c-FormControlLabel__label[data-js=hitHighlightingContent]:before:focus {
  outline: 2px solid #00abc5;
}
.c-FormControlLabel__label:before.c-IconButton--contrast:hover, .c-FormControlLabel__label[data-js=hitHighlightingClose]:before:hover, .c-FormControlLabel__label[data-js=hitHighlightingNext]:before:hover, .c-FormControlLabel__label[data-js=hitHighlightingPrev]:before:hover, .c-FormControlLabel__label[data-js=hitHighlightingContent]:before:hover {
  background-color: rgba(255, 255, 255, 0.08);
  outline: 0;
}
.c-FormControlLabel__label:before.c-IconButton--contrast--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-FormControlLabel__label:before.c-IconButton--tiny {
  padding: 0%;
  font-size: 20px;
}
.c-FormControlLabel__label:before.c-IconButton--small {
  padding: 8px;
  font-size: 20px;
}
.c-FormControlLabel__label:before.c-IconButton--large {
  padding: 16px;
  font-size: 30px;
}
.c-FormControlLabel:hover .c-FormControlLabel__label:before {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}
.c-FormControlLabel--primary .c-FormControlLabel__input:checked + .c-FormControlLabel__label:before {
  color: #0f356c;
}
.c-FormControlLabel--primary:hover .c-FormControlLabel__input:checked + .c-FormControlLabel__label:before {
  color: #0f356c;
  background-color: rgba(15, 53, 108, 0.1);
}
.c-FormControlLabel--secondary .c-FormControlLabel__input:checked + .c-FormControlLabel__label:before {
  color: #f0f0f0;
}
.c-FormControlLabel--secondary:hover .c-FormControlLabel__input:checked + .c-FormControlLabel__label:before {
  color: #f0f0f0;
  background-color: rgba(240, 240, 240, 0.1);
}
.c-FormControlLabel--contrast__label:before {
  color: white;
}
.c-FormControlLabel--contrast .c-FormControlLabel__input:checked + .c-FormControlLabel__label:before {
  color: white;
}
.c-FormControlLabel--contrast:hover .c-FormControlLabel__input:checked + .c-FormControlLabel__label:before {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.Avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  user-select: none;
  color: #c3c3c3;
  background-color: #bdbdbd;
}
.Avatar:before, .Avatar:after {
  color: inherit !important;
}
.Avatar--primary {
  background-color: #0f356c;
}
.Avatar--secondary {
  background-color: #f0f0f0;
}
.Avatar--tertiary {
  background-color: #00abc5;
}

.Avatar__image {
  width: 100%;
  height: 100%;
  text-align: center;
  object-fit: cover;
}

.BadgeContainer {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.Badge {
  color: white;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
  box-sizing: border-box;
  z-index: 1;
  position: absolute;
  top: 0px;
  right: 0px;
  min-width: 20px;
  height: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 0px 4px;
  border-radius: 10px;
  transform: scale(1) tanslate(50%, -50%);
  transform-origin: 100% 0%;
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
}
.Badge--disableOffset {
  transform: unset !important;
}
.Badge--primary {
  background-color: #0f356c;
  color: white;
}
.Badge--secondary {
  background-color: #f0f0f0;
  color: white;
}
.Badge--tertiary {
  background-color: #00abc5;
  color: white;
}

.CircularProgress {
  display: inline-block;
  line-height: 1;
}
.CircularProgress--indeterminate {
  animation: progress-circular-rotate 1.4s linear infinite;
}
.CircularProgress--primary {
  color: #0f356c;
}
.CircularProgress--primary .CircularProgress__circle {
  stroke: #0f356c;
}
.CircularProgress--secondary {
  color: #f0f0f0;
}
.CircularProgress--secondary .CircularProgress__circle {
  stroke: #f0f0f0;
}
.CircularProgress--tertiary {
  color: #00abc5;
}
.CircularProgress--tertiary .CircularProgress__circle {
  stroke: #00abc5;
}
.CircularProgress--contrast {
  color: white;
}
.CircularProgress--contrast .CircularProgress__circle {
  stroke: white;
}

.CircularProgress__circle {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0px;
  transform-origin: center;
}
.CircularProgress__circle--indeterminate {
  animation: progress-circular-dash 1.4s ease-in-out infinite;
  animation-name: progress-circular-dash;
}

@keyframes progress-circular-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes progress-circular-dash {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0px;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -125px;
  }
}
.Divider {
  height: 1px;
  margin: 0px;
  border: none;
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.075);
}
.Divider--absolute {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
}
.Divider--inset {
  margin-left: 72px;
}
.Divider--light {
  background-color: rgba(0, 0, 0, 0.045);
}
.Divider--middle {
  margin-left: 16px;
  margin-right: 16px;
}

.FormControl {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: top;
}
.FormControl--normal {
  margin-top: 16px;
  margin-bottom: 16px;
}
.FormControl--dense {
  margin-top: 8px;
  margin-bottom: 4px;
}
.FormControl--fullWidth {
  width: 100%;
}

.Input {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.1875em;
  color: black;
  cursor: text;
}
.Input--disabled {
  color: rgba(0, 0, 0, 0.26) !important;
  cursor: default !important;
}
.Input--multiline {
  padding: 6px 0 7px;
}
.Input--fullWidth {
  width: 100%;
}

.Input--standard.Input:after {
  border-bottom: 2px solid #0f356c;
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
  pointer-events: none;
}
.Input--standard.Input--focused:after {
  transform: scaleX(1);
}
.Input--standard.Input--error:after {
  border-bottom-color: #f44336;
  transform: scaleX(1);
}
.Input--standard.Input:before {
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  bottom: 0;
  left: 0;
  content: " ";
  position: absolute;
  right: 0;
  transition: border-bottom-color 200ms cubic-bezier(0, 0, 0.2, 1);
  pointer-events: none;
}
@media (hover: none) {
  .Input--standard.Input:hover:before {
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  }
}
.Input--standard.Input--focused:hover:before, .Input--standard.Input--disabeld:hover:before {
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
}
.Input--standard.Input--disabled:before {
  border-bottom-style: dotted;
}

.Input--filled {
  position: relative;
  background-color: rgba(0, 0, 0, 0.09);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: background-color 200ms cubic-bezier(0, 0, 0.2, 1);
}
.Input--filled.Input:hover {
  background-color: rgba(0, 0, 0, 0.13);
}
@media (hover: none) {
  .Input--filled.Input:hover {
    background-color: rgba(0, 0, 0, 0.09);
  }
}
.Input--filled.Input--focused {
  background-color: rgba(0, 0, 0, 0.09);
}
.Input--filled.Input--disabled {
  background-color: rgba(0, 0, 0, 0.12);
}
.Input--filled.Input--adornedStart {
  padding-left: 12px;
}
.Input--filled.Input--adornedEnd {
  padding-right: 12px;
}
.Input--filled.Input--multiline {
  padding: 27px 12px 10px;
}
.Input--filled.Input:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0);
  border-bottom: 2px solid #0f356c;
  transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
  pointer-events: none;
}
.Input--filled.Input--focused:after {
  transform: scaleX(1);
}
.Input--filled.Input--error:after {
  border-bottom-color: #f44336;
  transform: scaleX(1);
}
.Input--filled.Input:before {
  content: " ";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  pointer-events: none;
  will-change: border-bottom-color;
  transition: border-bottom-color 200ms cubic-bezier(0, 0, 0.2, 1);
}
.Input--filled.Input:hover:before {
  border-bottom: 1px solid black;
}
.Input--filled.Input--disabled:before {
  border-bottom-style: dotted;
}
.Input--filled.Input--disabled:hover:before {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.26);
}

.Input--outlined {
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.23);
}
.Input--outlined.Input:not(.Input--focused):not(.Input--error):not(.Input--disabled):hover .Input__outline {
  border-color: black;
}
@media (hover: none) {
  .Input--outlined.Input:not(.Input--focused):not(.Input--error):not(.Input--disabled):hover .Input__outline {
    border-color: rgba(0, 0, 0, 0.23);
  }
}
.Input--outlined.Input--adornedStart {
  padding-left: 14px;
}
.Input--outlined.Input--adornedEnd {
  padding-right: 14px;
}
.Input--outlined.Input--multiline {
  padding: 18.5px 14px;
}
.Input--outlined.Input--focused .Input__outline {
  border-color: #0f356c;
  border-width: 2px;
}
.Input--outlined.Input--error .Input__outline {
  border-color: #f44336;
}
.Input--outlined.Input--disabled .Input__outline {
  border-color: rgba(0, 0, 0, 0.26);
}

.Input__outline {
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  pointer-events: none;
  border-radius: 4px;
  transition: opacity 200ms cubic-bezier(0, 0, 0.2, 1), padding-left 200ms cubic-bezier(0, 0, 0.2, 1), border-color 200ms cubic-bezier(0, 0, 0.2, 1), border-width 200ms cubic-bezier(0, 0, 0.2, 1);
}

.Input__notch {
  padding: 0px;
  line-height: 11px;
  text-align: left;
  transition: width 200ms cubic-bezier(0, 0, 0.2, 1);
}
.Input__notch > span {
  line-height: 11px;
  text-align: left;
}

.Input__field {
  box-sizing: content-box;
  width: 100%;
  min-width: 0;
  display: block;
  margin: 0;
  padding: 6px 0 7px;
  font: inherit;
  color: currentColor;
  border: 0;
  background: none;
  -webkit-tap-highlight-color: transparent;
}
.Input__field::placeholder, .Input__field::-webkit-input-placeholder, .Input__field::-moz-placeholder, .Input__field::-ms-input-placeholder {
  color: currentColor;
  opacity: 0.42;
  transition: opacity 200ms cubic-bezier(0, 0, 0.2, 1);
}
.Input__field:-webkit-autofill {
  z-index: auto !important;
}
.Input__field:focus, .Input__field--focused {
  outline: 0;
}
.Input__field:disabled, .Input__field--disabeld {
  opacity: 1;
  pointer-events: none;
}
.Input__field:invalid {
  box-shadow: none;
}
.Input__field--dense {
  padding-top: 3px;
}
.Input__field--multiline {
  resize: none;
  padding: 0;
}
.Input__field:not([type=text]) {
  height: 1.1875em;
}

.Input__field--filled {
  padding: 27px 12px 10px;
}
.Input__field--filled.Input__field--dense {
  padding-top: 24px;
  padding-bottom: 6px;
}
.Input__field--filled.Input__field--adornedStart {
  padding-left: 0px;
}
.Input__field--filled.Input__field--adornedEnd {
  padding-right: 0px;
}
.Input__field--filled.Input__field--multiline {
  padding: 0px;
}

.Input__field--outlined {
  padding: 18.5px 14px;
}
.Input__field--outlined.Input__field--dense {
  padding-top: 15px;
  padding-bottom: 15px;
}
.Input__field--outlined.Input__field--adornedStart {
  padding-left: 0px;
}
.Input__field--outlined.Input__field--adornedEnd {
  padding-right: 0px;
}
.Input__field--outlined.Input__field--multiline {
  padding: 0px;
}

.Input__adornment {
  display: flex;
  height: 0.01em;
  max-height: 2em;
  align-items: center;
}
.Input__adornment--disablePointerEvents {
  pointer-events: none;
}
.Input__adornment--end {
  margin-left: 8px;
}
.Input__adornment--start {
  margin-right: 8px;
}

.Input__adornment--filled.Input__adornment--start {
  margin-top: 16px;
}

.InputLabel {
  font-family: "Noto Sans", sans-serif;
  color: #414141;
  line-height: 1;
  padding: 0;
  transform-origin: top left;
  transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1);
}
.InputLabel:focus, .InputLabel--focused {
  color: #0f356c;
}
.InputLabel:disabled, .InputLabel--disabled {
  color: rgba(0, 0, 0, 0.26);
}
.InputLabel--error {
  color: #f44336;
}
.InputLabel--formControl {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 26px) scale(1);
}

.InputLabel--standard {
  pointer-events: none;
}
.InputLabel--standard.InputLabel--formControl + div {
  margin-top: 16px;
  transform: scale(1);
}
.InputLabel--standard.InputLabel--dense {
  transform: translate(0, 24px) scale(1);
}
.InputLabel--standard.InputLabel--shrink {
  transform: translate(0, 1.5px) scale(0.75);
  transform-origin: top left;
}

.InputLabel--filled {
  pointer-events: none;
  transform: translate(12px, 20px) scale(1);
}
.InputLabel--filled.InputLabel--dense {
  transform: translate(12px, 17px) scale(1);
}
.InputLabel--filled.InputLabel--shrink {
  transform: translate(12px, 10px) scale(0.75);
}
.InputLabel--filled.InputLabel--shrink.InputLabel--dense {
  transform: translate(12px, 7px) scale(0.75);
}

.InputLabel--outlined {
  pointer-events: none;
  transform: translate(14px, 20px) scale(1);
}
.InputLabel--outlined.InputLabel--dense {
  transform: translate(14px, 17px) scale(1);
}
.InputLabel--outlined.InputLabel--shrink {
  transform: translate(14px, -6px) scale(0.75);
  z-index: 1;
  background-color: #fff;
  width: auto;
  padding: 0 4px;
}

.List, .component-volume-issue-selector ul.collapsible-tree {
  position: relative;
  margin: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
  list-style: none;
  background-color: inherit;
}
.List--dense, .component-volume-issue-selector ul.collapsible-tree {
  padding-top: 4px;
  padding-bottom: 4px;
}
.List--disablePadding {
  padding-top: 0px;
  padding-bottom: 0px;
}
.List--subheader {
  padding-top: 0px;
}
.List--spacing-between-items .ListItem:not(:first-child) {
  margin-top: 8px;
}
.List--textWrapAnywhere {
  word-wrap: anywhere;
}

.ListItem--container {
  position: relative;
}

.ListItem {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 16px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  text-align: left;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}
.ListItem--button {
  cursor: pointer;
  transition: background-color 150ms cubic-bezier(0.4, 0, 1, 1);
}
.ListItem--button:hover {
  background-color: rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
@media (hover: none) {
  .ListItem--button {
    background-color: transparent;
  }
}
.ListItem--dense {
  padding-top: 4px;
  padding-bottom: 4px;
}
.ListItem--disabled {
  cursor: default !important;
  pointer-events: none !important;
  opacity: 0.5 !important;
}
.ListItem--disableGutters {
  padding-left: 0px;
  padding-right: 0px;
}
.ListItem--divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  background-clip: padding-box;
}
.ListItem--focused {
  outline: none;
  background-color: rgba(0, 0, 0, 0.08);
}
.ListItem--selected {
  background-color: rgba(0, 0, 0, 0.14) !important;
}
.ListItem--selected:hover {
  background-color: rgba(0, 0, 0, 0.14) !important;
}
.ListItem--secondaryAction {
  padding-right: 48px;
}
.ListItem__ripple {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.5;
}

#supplementary-materials .ListItem > .categoryIcon {
  width: 2em;
}
#supplementary-materials .ListItem > .categoryLabel {
  width: 6em;
}

.ListItem__icon {
  min-width: 56px;
  display: inline-flex;
  color: rgba(0, 0, 0, 0.54);
}

.ListItem__secondaryAction {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.ListItem__secondaryAction .c-IconButton, .ListItem__secondaryAction [data-js=hitHighlightingClose], .ListItem__secondaryAction [data-js=hitHighlightingNext], .ListItem__secondaryAction [data-js=hitHighlightingPrev], .ListItem__secondaryAction [data-js=hitHighlightingContent] {
  margin-right: -12px;
}

.ListItem__text {
  position: relative;
  min-width: 0px;
  display: flex;
  flex-wrap: wrap;
  padding: 4px;
  flex: 1 1 auto;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ListItem__text--dense {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.ListItem__text--dense .ListItem__primaryText,
.ListItem__text--dense .ListItem__secondaryText {
  font-size: inherit;
}
.ListItem__text--secondaryAction .ListItem__secondaryText {
  width: calc(100% - 36px) !important;
}
.ListItem__text--secondaryAction .ListItem__secondaryAction {
  width: 36px;
}
.ListItem__text:first-child {
  padding-left: 0px;
}

.ListItem__primaryText {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  position: relative;
  width: 100%;
  color: black;
  letter-spacing: 0.009375em;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ListItem__meta {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
  width: 48px;
  margin-left: auto;
  overflow: hidden;
  line-height: 1.5rem;
}

.ListItem__secondaryText {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  display: block;
  line-height: 1.43;
  color: black;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ListItem__secondaryText:not(.ListItem__secondaryText--twoLines) {
  width: 100%;
  white-space: nowrap;
}
.ListItem__secondaryText--twoLines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.List__subheader {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  box-sizing: border-box;
  z-index: 1;
  position: sticky;
  top: -1px;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 48px;
  background-color: inherit;
}
.List__subheader--disableGutters {
  padding-left: 0px;
  padding-right: 0px;
}
.List__subheader--inherit {
  color: inherit;
}
.List__subheader--inset {
  padding-left: 72px;
}
.List__subheader--primary {
  color: #0f356c !important;
}
.List__subheader--disableSticky {
  position: relative;
  top: 0px;
}

.Menu {
  max-height: calc(100% - 96px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.Menu .ListItem {
  box-sizing: border-box;
  width: auto;
  min-height: 48px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 16px;
  padding-left: 16px;
  overflow: hidden;
  white-space: nowrap;
}
.Menu .ListItem--disableGutters {
  padding-left: 0px;
  padding-right: 0px;
}

.Select {
  position: relative;
  width: 100%;
}

.Select__input {
  outline: none !important;
  user-select: none;
  padding-right: 32px;
  padding: 27px 12px 10px;
  font: inherit;
  color: currentColor;
  border-radius: 0px;
  height: auto;
  min-height: 1.1875em;
  width: auto;
  min-width: 16px;
  cursor: pointer;
  user-select: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
.Select__input:focus, .Select__input--focus {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0px;
}
.Select__input:disabled, .Select__input--disabled {
  cursor: default;
  pointer-events: none;
}
.Select__input::-ms-expand {
  display: none;
}
.Select__input:not([multiple]) option, .Select__input:not([multiple]) optgroup {
  background-color: white;
}

.Select__input--standard {
  padding: 6px 0 7px;
}
.Select__input--standard.Select__input--dense {
  padding-top: 3px;
}

.Select__input--filled {
  padding: 27px 12px 10px;
}
.Select__input--filled.Select__input--dense {
  padding-top: 24px;
  padding-bottom: 6px;
}

.Select__input--outlined {
  padding: 18.5px 24px 18.5px 14px;
  border-radius: 4px;
}
.Select__input--outlined.Select__input--dense {
  padding-top: 15px;
  padding-bottom: 15px;
}

.Select__icon {
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  color: rgba(0, 0, 0, 0.54);
  pointer-events: none;
}

.c-Snackbar {
  z-index: 2;
  position: fixed;
  min-width: 300px;
  max-width: 800px;
  display: flex;
  padding: 16px 16px 16px 24px;
  color: white;
  background-color: #0f356c;
  border-radius: 4px;
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.15),0px 16px 24px 2px rgba(0, 0, 0, 0.1),0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.c-Snackbar:before {
  color: white;
}
.c-Snackbar--top-left {
  top: 8px;
  left: 8px;
}
.c-Snackbar--top-center {
  top: 8px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.c-Snackbar--top-right {
  top: 8px;
  right: 8px;
}
.c-Snackbar--middle-left {
  top: 50%;
  left: 8px;
  transform: translate3d(0, -50%, 0);
}
.c-Snackbar--middle-center {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.c-Snackbar--middle-right {
  top: 50%;
  right: 8px;
  transform: translate3d(0, -50%, 0);
}
.c-Snackbar--bottom-left {
  bottom: 8px;
  left: 8px;
}
.c-Snackbar--bottom-center {
  bottom: 8px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.c-Snackbar--bottom-right {
  bottom: 8px;
  right: 8px;
}
.c-Snackbar .c-Snackbar__content {
  text-align: left;
  color: white;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.c-Snackbar .c-Snackbar__content:before, .c-Snackbar .c-Snackbar__content:after {
  color: white;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close {
  position: relative;
  margin: 0;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  border: 0;
  font-size: 1.5rem;
  border-radius: 50%;
  overflow: visible;
  cursor: pointer;
  background-color: transparent;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 200ms cubic-bezier(0.4, 0, 1, 1), color 200ms cubic-bezier(0.4, 0, 1, 1);
  color: rgba(0, 0, 0, 0.54);
  color: white;
  min-width: 48px;
  font-size: 0px;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:focus {
  outline: 2px solid #00abc5;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:hover {
  background-color: rgba(0, 0, 0, 0.08);
  outline: 0;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close::moz-focus-inner {
  border-style: none;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--disabled {
  pointer-events: none !important;
  cursor: default !important;
  color: rgba(0, 0, 0, 0.26) !important;
  background-color: transparent !important;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close--disableRipple .c-IconButton__ripple {
  display: none !important;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--disableHover:hover {
  background-color: transparent !important;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--disableRipple.c-IconButton__ripple {
  display: none !important;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--inherit {
  color: inherit;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--primary {
  color: #0f356c;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--primary:focus {
  outline: 2px solid #00abc5;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--primary:hover {
  background-color: rgba(15, 53, 108, 0.08);
  outline: 0;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--primary--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--secondary {
  color: #f0f0f0;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--secondary:focus {
  outline: 2px solid #00abc5;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--secondary:hover {
  background-color: rgba(240, 240, 240, 0.08);
  outline: 0;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--secondary--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--tertiary {
  color: #00abc5;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--tertiary:focus {
  outline: 2px solid #00abc5;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--tertiary:hover {
  background-color: rgba(0, 171, 197, 0.08);
  outline: 0;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--tertiary--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--contrast, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingClose], .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingNext], .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingPrev], .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingContent] {
  color: white;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--contrast:focus, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingClose]:focus, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingNext]:focus, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingPrev]:focus, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingContent]:focus {
  outline: 2px solid #00abc5;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--contrast:hover, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingClose]:hover, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingNext]:hover, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingPrev]:hover, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close[data-js=hitHighlightingContent]:hover {
  background-color: rgba(255, 255, 255, 0.08);
  outline: 0;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--contrast--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--tiny {
  padding: 0%;
  font-size: 20px;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--small {
  padding: 8px;
  font-size: 20px;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close.c-IconButton--large {
  padding: 16px;
  font-size: 30px;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:focus {
  outline: 2px solid #00abc5;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:hover {
  background-color: rgba(255, 255, 255, 0.08);
  outline: 0;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close--no-ripple:hover {
  background-color: initial;
  outline: initial;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:before, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:after {
  color: white;
  font-size: 24px;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:before:focus, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:after:focus {
  outline: 2px solid #00abc5;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:before:hover, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:after:hover {
  background-color: rgba(255, 255, 255, 0.08);
  outline: 0;
}
.c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:before--no-ripple:hover, .c-Snackbar .c-Snackbar__actions .c-Snackbar__actions__close:after--no-ripple:hover {
  background-color: initial;
  outline: initial;
}

.c-Snackbar[data-js=hitHighlightingControl] {
  padding: 8px 16px;
  min-width: 100px;
}

[data-js=hitHighlightingContent] {
  min-width: 150px;
}
[data-js=hitHighlightingContent]:before {
  margin: 0px 8px;
}

[data-js=hitHighlightingPrev]:before {
  font-size: 1rem;
}

[data-js=hitHighlightingNext]:before {
  font-size: 1rem;
}

[data-js=hitHighlightingClose]:before {
  font-size: 1rem;
}

.type-homepage > .column-group > .column > .column-contents > .component-static, .type-homepage > .column-group > .column > .column-contents > .component-most-viewed-content, .type-homepage > .column-group > .column > .column-contents > .component-most-cited, .type-homepage > .column-group > .column > .column-contents > .ui-tabs {
  width: auto;
  margin: 16px;
}
.type-homepage > .column-group > .column > .column-contents > .component-static .ui-tabs-panel, .type-homepage > .column-group > .column > .column-contents > .component-most-viewed-content .ui-tabs-panel, .type-homepage > .column-group > .column > .column-contents > .component-most-cited .ui-tabs-panel, .type-homepage > .column-group > .column > .column-contents > .ui-tabs .ui-tabs-panel {
  padding: 0px !important;
  margin: 0px;
  width: 100% !important;
}

body {
  background-color: white;
}

.metadata .ecommerce-add-to-cart,
.metadata .component-purchase-options {
  margin-bottom: 8px;
}
.metadata h2.ecommerce-block-header {
  margin: 8px 0 0;
}

.hi-visible .hi {
  background-color: rgba(15, 53, 108, 0.3);
}
.hi-visible .hi.highlighted {
  background-color: rgba(15, 53, 108, 0.9);
}

html {
  box-sizing: border-box;
  margin: 0px;
  overflow-x: hidden;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

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

h1, h2, h3, h4, h5, h6, ol, ul {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

@media screen and (max-width: 500px) {
  input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select:focus,
textarea {
    font-size: 16px;
  }
}
fieldset {
  border: 0px;
}

a:focus {
  outline: 2px solid #00abc5;
}

a:hover {
  outline: 0;
}

dl, dt, dd {
  margin: 0;
}

.definition-list.list-count-2 {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1152px) {
  .definition-list.list-count-2 {
    flex-direction: row;
  }
}
@media (min-width: 1152px) {
  .definition-list.list-count-2 > div:nth-child(1) {
    padding-right: 64px;
  }
}

.page-emaillightbox .modalInnerContent > h3 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  font-style: normal;
  margin-bottom: 16px;
}

.news-nav-title button {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  margin: 24px 0 12px;
}

.tagsModule h2 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  margin: 24px 0 12px;
}

legend,
h2.ecommerce-block-header {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  margin: 24px 0 12px;
}

img {
  float: none;
  max-width: 100%;
}

ol.label-provided {
  list-style-type: none;
}

nav {
  margin-bottom: 0;
}

table thead th,
table thead td {
  line-height: 1.6;
  padding: 5px;
}
table thead th:not([align]),
table thead td:not([align]) {
  text-align: left;
}
table tbody td {
  line-height: 1.6;
  padding: 5px;
}

.toggle > a {
  display: block;
  cursor: pointer;
  line-height: 1.8;
}

.fancybox-inner {
  overflow: hidden !important;
}

.offScreen {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.hide {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
}

.page-break-after-always {
  page-break-after: always;
  break-after: always;
}
.page-break-after-avoid {
  page-break-after: avoid;
  break-after: avoid;
}
.page-break-before-always {
  page-break-before: always;
  break-before: always;
}
.page-break-before-avoid {
  page-break-before: avoid;
  break-before: avoid;
}
.page-break-inside-avoid {
  page-break-inside: avoid;
  break-inside: avoid;
}

.text-decoration-none {
  text-decoration: none;
}
.text-decoration-overline {
  text-decoration: overline;
}
.text-decoration-.strike-through {
  text-decoration: line-through;
}
.text-decoration-.underline {
  text-decoration: underline;
}

@media screen and (min-width: 767px) {
  img[align=left] {
    float: left;
    margin: 5px 20px 15px 0;
  }

  img[align=right] {
    float: right;
    margin: 5px 0 15px 20px;
  }

  img[align=center] {
    margin: 5px 0 15px 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .mobileOnly {
    display: none;
  }
}
div.alert {
  border: 1px solid red;
  border-radius: 0.75em;
  background: #ffaaaa;
  padding: 0.5em;
  margin: 0 1em 0.75em 0;
}

div.alert button.close {
  float: right;
}

div.alert h4 {
  margin-top: 0.5em;
}

div.alert ul {
  list-style: none;
}

.cg-primary #recaptcha_widget_div #recaptcha_table #recaptcha_response_field {
  border-color: #e3e9eb !important;
}
.cg-primary #recaptcha_widget_div #recaptcha_table a {
  color: !important;
}
.cg-primary #recaptcha_widget_div #recaptcha_table a:hover {
  color: !important;
}
.cg-primary .component-image-gallery.full-screen {
  background-color: #ffffff;
}
.cg-primary .component-image-gallery.full-screen .slick-initialized .slick-slide ul.actions {
  background: rgba(255, 255, 255, 0.6);
}
.cg-primary .component-image-gallery.full-screen .thumbnail-slider .thumb {
  border-color: #e3e9eb;
}
.cg-primary.page-flyerpage .has-header {
  border-color: #e3e9eb;
}

.render-error {
  color: red;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email] {
  width: 100%;
}
input[type=text].t-error,
input[type=password].t-error,
input[type=number].t-error,
input[type=email].t-error {
  border-color: #f44336 !important;
}
input[type=text]:invalid,
input[type=password]:invalid,
input[type=number]:invalid,
input[type=email]:invalid {
  background-color: inherit;
}

form label {
  width: 100%;
  display: block;
}
form .checkboxRow label,
form .radio-group label {
  display: inline-block;
  width: auto;
  position: relative;
  top: 2px;
}
form.form-inline label {
  width: auto;
}

.t-error-icon {
  display: none;
}

.t-error {
  color: #f44336 !important;
}

input[type=checkbox] {
  display: inline;
}

.formRow#submitRow,
.formRow .actions,
.forgot-password#submitRow,
.forgot-password .actions {
  float: right;
}
.formRow#joinMailingListRow,
.forgot-password#joinMailingListRow {
  display: flex;
}
.formRow#joinMailingListRow input,
.forgot-password#joinMailingListRow input {
  order: 1;
  margin: 4px 8px 0 0;
}
.formRow#joinMailingListRow label,
.forgot-password#joinMailingListRow label {
  order: 2;
}

.select-group label {
  display: block;
  margin-bottom: 8px;
}
.select-group select {
  width: 100%;
}

#recaptcha_widget_div .recaptchatable {
  font-size: 14px;
}
#recaptcha_widget_div .recaptchatable .recaptcha_image_cell {
  background: transparent;
}
#recaptcha_widget_div .recaptchatable #recaptcha_image {
  border: 0 !important;
  width: 200px !important;
}
#recaptcha_widget_div .recaptchatable #recaptcha_image img {
  width: 200px !important;
  height: auto !important;
}
#recaptcha_widget_div .recaptchatable #recaptcha_response_field {
  width: 200px !important;
}
#recaptcha_widget_div .recaptchatable .recaptcha_image_cell {
  width: 200px !important;
}
#recaptcha_widget_div .recaptchatable a#recaptcha_reload_btn,
#recaptcha_widget_div .recaptchatable a#recaptcha_switch_audio_btn,
#recaptcha_widget_div .recaptchatable a#recaptcha_whatsthis_btn {
  display: block;
  padding: 2px;
}
#recaptcha_widget_div .recaptchatable a#recaptcha_reload_btn img,
#recaptcha_widget_div .recaptchatable a#recaptcha_switch_audio_btn img,
#recaptcha_widget_div .recaptchatable a#recaptcha_whatsthis_btn img {
  display: none;
}
#recaptcha_widget_div .recaptchatable a#recaptcha_reload_btn:before,
#recaptcha_widget_div .recaptchatable a#recaptcha_switch_audio_btn:before,
#recaptcha_widget_div .recaptchatable a#recaptcha_whatsthis_btn:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: block;
  font-size: 16px;
}
#recaptcha_widget_div .recaptchatable a#recaptcha_reload_btn:before {
  content: "";
}
#recaptcha_widget_div .recaptchatable a#recaptcha_switch_audio_btn:before {
  content: "";
}
#recaptcha_widget_div .recaptchatable a#recaptcha_whatsthis_btn:before {
  content: "";
}

@media (min-width: 500px) {
  #recaptcha_widget_div .recaptchatable #recaptcha_image {
    width: 300px !important;
  }
  #recaptcha_widget_div .recaptchatable #recaptcha_image img {
    width: 300px !important;
  }
  #recaptcha_widget_div .recaptchatable #recaptcha_response_field {
    width: 300px !important;
  }
  #recaptcha_widget_div .recaptchatable .recaptcha_image_cell {
    width: 300px !important;
  }
}
.ui-accordion-content #loginPanel #loginwrapper1 {
  padding: 0;
}
.ui-accordion-content #loginPanel #loginwrapper1 form {
  padding: 0;
}

.throbber {
  display: inline-block;
}
.throbber.linear, .throbber:not(.circular) {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: linear-load 1.8s infinite ease-in-out;
  animation: linear-load 1.8s infinite ease-in-out;
  color: #727272;
  font-size: 10px;
  margin: 0;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  -webkit-transform: scale(0.5) !important;
  -moz-transform: scale(0.5) !important;
  -ms-transform: scale(0.5) !important;
  transform: scale(0.5) !important;
}
.throbber.linear:before, .throbber.linear:after, .throbber:not(.circular):before, .throbber:not(.circular):after {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: linear-load 1.8s infinite ease-in-out;
  animation: linear-load 1.8s infinite ease-in-out;
}
.throbber.linear:before, .throbber:not(.circular):before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.throbber.linear:after, .throbber:not(.circular):after {
  left: 3.5em;
}
.throbber.linear.large, .throbber:not(.circular).large {
  -webkit-transform: scale(0.75) !important;
  -moz-transform: scale(0.75) !important;
  -ms-transform: scale(0.75) !important;
  transform: scale(0.75) !important;
}
.throbber.linear.small, .throbber:not(.circular).small {
  -webkit-transform: scale(0.33) !important;
  -moz-transform: scale(0.33) !important;
  -ms-transform: scale(0.33) !important;
  transform: scale(0.33) !important;
}
.throbber.circular {
  margin: 80px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: circular-load 1.1s infinite ease;
  animation: circular-load 1.1s infinite ease;
  -webkit-transform: scale(0.22) !important;
  -moz-transform: scale(0.22) !important;
  -ms-transform: scale(0.22) !important;
  transform: scale(0.22) !important;
}
.throbber.circular.large {
  -webkit-transform: scale(0.34) !important;
  -moz-transform: scale(0.34) !important;
  -ms-transform: scale(0.34) !important;
  transform: scale(0.34) !important;
}
.throbber.circular.small {
  -webkit-transform: scale(0.14) !important;
  -moz-transform: scale(0.14) !important;
  -ms-transform: scale(0.14) !important;
  transform: scale(0.14) !important;
}
.throbber.block {
  display: block;
}
.throbber.block.linear, .throbber.block:not(.circular) {
  margin: 30px auto 80px;
}
@-webkit-keyframes circular-load {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.5), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.5), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.7), 1.8em -1.8em 0 0em #727272, 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.5), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.7), 2.5em 0em 0 0em #727272, 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.5), 2.5em 0em 0 0em rgba(114, 114, 114, 0.7), 1.75em 1.75em 0 0em #727272, 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.5), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.7), 0em 2.5em 0 0em #727272, -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.5), 0em 2.5em 0 0em rgba(114, 114, 114, 0.7), -1.8em 1.8em 0 0em #727272, -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.5), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.7), -2.6em 0em 0 0em #727272, -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.5), -2.6em 0em 0 0em rgba(114, 114, 114, 0.7), -1.8em -1.8em 0 0em #727272;
  }
}
@keyframes circular-load {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #727272, 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.5), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.7), 1.8em -1.8em 0 0em #727272, 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.5), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.7), 2.5em 0em 0 0em #727272, 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.5), 2.5em 0em 0 0em rgba(114, 114, 114, 0.7), 1.75em 1.75em 0 0em #727272, 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.5), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.7), 0em 2.5em 0 0em #727272, -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.2), -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.5), 0em 2.5em 0 0em rgba(114, 114, 114, 0.7), -1.8em 1.8em 0 0em #727272, -2.6em 0em 0 0em rgba(114, 114, 114, 0.2), -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.5), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.7), -2.6em 0em 0 0em #727272, -1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(114, 114, 114, 0.2), 1.8em -1.8em 0 0em rgba(114, 114, 114, 0.2), 2.5em 0em 0 0em rgba(114, 114, 114, 0.2), 1.75em 1.75em 0 0em rgba(114, 114, 114, 0.2), 0em 2.5em 0 0em rgba(114, 114, 114, 0.2), -1.8em 1.8em 0 0em rgba(114, 114, 114, 0.5), -2.6em 0em 0 0em rgba(114, 114, 114, 0.7), -1.8em -1.8em 0 0em #727272;
  }
}
@-webkit-keyframes linear-load {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes linear-load {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.pageSizeAndSort .search-tool > div > label {
  width: auto !important;
  margin-bottom: 0px !important;
}

/* Empty Overrides SASS file for use by plug-in projects */
@font-face {
  font-family: "Brill";
  src: url("../fonts/brill/BrillRoman.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/BrillRoman.woff") format("woff"), url("../fonts/brill/BrillRoman.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Brill";
  src: url("../fonts/brill/BrillItalic.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/BrillItalic.woff") format("woff"), url("../fonts/brill/BrillItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Brill";
  src: url("../fonts/brill/BrillBold.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/BrillBold.woff") format("woff"), url("../fonts/brill/BrillBold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Brill";
  src: url("../fonts/brill/BrillBoldItalic.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/BrillBoldItalic.woff") format("woff"), url("../fonts/brill/BrillBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "SBLHebrew";
  src: url("../fonts/brill/SBL_Hbrw.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/SBL_Hbrw.woff") format("woff");
  /* Modern browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "BrillExtra";
  src: url("../fonts/brill/BrillExtra.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/BrillExtra.woff") format("woff"), url("../fonts/brill/BrillExtra.ttf") format("truetype");
}
@font-face {
  font-family: "Bukyvede";
  src: url("../fonts/brill/Bukyvede.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/Bukyvede.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Bukyvede";
  src: url("../fonts/brill/Bukyvede-Italic.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("Bukyvede-Italic.woff") format("woff");
  /* Modern Browsers */
  font-style: italic;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Bukyvede";
  src: url("../fonts/brill/Bukyvede-Bold.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("Bukyvede-Bold.woff") format("woff");
  /* Modern Browsers */
  font-style: italic;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "AbyssinicaSIL";
  src: url("../fonts/brill/AbyssinicaSIL-R.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/AbyssinicaSIL-R.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Scheherazade";
  src: url("../fonts/brill/Scheherazade-R.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/Scheherazade-R.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "EstrangeloTalada";
  src: url("../fonts/brill/SyrCOMTalada.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/SyrCOMTalada.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "ImperialAramaic";
  src: url("../fonts/brill/Aramaic-Imperial-Yeb.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/Aramaic-Imperial-Yeb.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Paleo-Hebrew";
  src: url("../fonts/brill/Hebrew-Paleo-Qumran.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/Hebrew-Paleo-Qumran.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Samaritan";
  src: url("../fonts/brill/Hebrew-Samaritan.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/Hebrew-Samaritan.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Serto";
  src: url("../fonts/brill/SyrCOMBatnan.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/SyrCOMBatnan.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Serto";
  src: url("../fonts/brill/SyrCOMBatnanBold.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/SyrCOMBatnanBold.woff") format("woff");
  /* Modern Browsers */
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "NotoSerifArmenian";
  src: url("../fonts/brill/NotoSerifArmenian.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/NotoSerifArmenian.woff") format("woff");
  /* Modern browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "NotoSerifArmenian";
  src: url("../fonts/brill/NotoSerifArmenian-Bold.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/NotoSerifArmenian-Bold.woff") format("woff");
  /* Modern browsers */
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "NotoSerifGeorgian";
  src: url("../fonts/brill/NotoSerifGeorgian.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/NotoSerifGeorgian.woff") format("woff");
  /* Modern browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "NotoSerifGeorgian";
  src: url("../fonts/brill/NotoSerifGeorgian-Bold.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/NotoSerifGeorgian-Bold.woff") format("woff");
  /* Modern browsers */
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "NotoSansGothic";
  src: url("../fonts/brill/NotoSansGothic.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/NotoSansGothic.woff") format("woff");
  /* Modern browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "NotoSansLisu";
  src: url("../fonts/brill/NotoSansLisu.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/NotoSansLisu.woff") format("woff");
  /* Modern browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Aegean";
  src: url("../fonts/brill/Aegean.eot") format("embedded-opentype");
  /* IE8, IE9  */
  src: local("☺"), url("../fonts/brill/Aegean.woff") format("woff");
  /* Modern browsers */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
:lang(hy-Armn) {
  font-family: NotoSerifArmenian;
  font-size: 86%;
}

:lang(ka-Geor) {
  font-family: NotoSerifGeorgian;
  font-size: 84%;
}

:lang(got-Goth) {
  font-family: NotoSansGothic;
  font-size: 85%;
}

:lang(lis-Lisu) {
  font-family: NotoSansLisu;
  font-size: 88%;
}

:lang(grc-Cprt) {
  font-family: Aegean;
  font-size: 100%;
}

:lang(cu-Cyrs) {
  font-family: Bukyvede;
  font-size: 95%;
}

:lang(gez-Ethi) {
  font-family: AbyssinicaSIL;
  font-size: 83%;
}

:lang(he-Hebr) {
  font-family: SBLHebrew;
  font-size: 94%;
}

:lang(syr-Syre) {
  font-family: EstrangeloTalada;
  font-size: 118%;
}

:lang(syr-Syrj) {
  font-family: Serto;
  font-size: 118%;
}

:lang(ar-Arab) {
  font-family: Scheherazade;
  font-size: 150%;
}

:lang(arc-Hebr) {
  font-family: SBLHebrew;
  font-size: 94%;
}

:lang(arc-Armi) {
  font-family: ImperialAramaic;
  font-size: 100%;
  unicode-bidi: bidi-override;
}

:lang(cop-Copt) {
  font-family: Antinoou;
  font-size: 90%;
}

:lang(grc-Grek) {
  font-family: Brill;
  font-size: 100%;
}

:lang(hbo-Phnx) {
  font-family: Paleo-Hebrew;
  font-size: 80%;
  /* no sample added yet*/
}

:lang(smp-Samr) {
  font-family: Samaritan;
  font-size: 100%;
  /* no sample added yet*/
  unicode-bidi: bidi-override;
}

.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

bdi[dir=ltr],
[dir=rtl] {
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: -ms-isolate;
  unicode-bidi: isolate;
}

bdo[dir=ltr],
bdo[dir=rtl] {
  unicode-bidi: bidi-override;
  unicode-bidi: -webkit-isolate-override;
  unicode-bidi: -moz-isolate-override;
  unicode-bidi: -ms-isolate-override;
  unicode-bidi: isolate-override;
}

@media screen and (min-width: 767px) {
  #headerWrap #headerLogo a {
    background-position: left 10px bottom -8px;
  }
}
@media screen and (min-width: 1200px) {
  #headerWrap #headerLogo {
    width: calc(170px + 10px);
    height: 90px;
    float: left;
  }
  #headerWrap #headerLogo a {
    display: block;
    height: 100%;
    background: 10px center no-repeat url("/fileasset//fileasset/brill-mobile-June2021.png");
    background-size: 170px auto;
    background-position: left top;
  }
  #headerWrap #headerLogo a span {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    /*padding: 0;
    border: 0;*/
    height: 1px;
    width: 1px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1500px) {
  #headerWrap #headerLogo {
    width: calc(540px + 10px);
    height: 90px;
    float: left;
  }
  #headerWrap #headerLogo a {
    background: left center no-repeat url("/fileasset/brill-desktop.png");
    margin-left: 10px;
    background-size: 540px auto;
  }
}
/*- Home -*/
.component-recent-news div.moreLink .btnRss {
  display: none;
}

.component-taxonomy-list .grid span.label,
.component-featured-content-list .grid span.label {
  hyphens: none;
  word-break: normal;
  word-wrap: normal;
}

.page-advancedsearchpage #mainContent {
  padding: 20px 40px 80px 40px;
}
@media screen and (min-width: 1200px) {
  .page-advancedsearchpage #mainContent {
    padding: 80px 40px;
  }
}

/*- News Related -*/
.page-news h1 + #newsList {
  margin-top: 40px;
}
.page-news #pageBody {
  padding: 0 20px;
}
@media screen and (min-width: 1200px) {
  .page-news #pageBody {
    padding: 0 35px;
  }
}
.page-news #resultStatsTop,
.page-news #resultStatsBottom {
  margin-bottom: 40px;
}
.page-news #resultStatsTop::after,
.page-news #resultStatsBottom::after {
  clear: both;
  content: "";
  display: table;
}
.page-news #resultStatsBottom .range {
  float: left;
}
.page-news .t-data-grid-pager {
  float: right;
  margin-top: 2px;
}
.page-news .t-data-grid-pager a, .page-news .t-data-grid-pager span {
  display: inline-block;
  padding: 4px;
}

@media screen and (min-width: 1200px) {
  .page-newsitem #pageBody #columnOne, .page-news #pageBody #columnOne {
    padding-right: 35px;
  }
}
/*- Search Related -*/
span.external-content-label {
  background: 9px center no-repeat url(../img/reference-icon.png);
  background-size: 14px auto;
  padding-left: 30px;
}

/*---- Index Cards ----*/
.type-index-card .source-link {
  display: block;
}

.page-search .contentItem h4.series-list ul {
  display: block;
}

.has-tool-bar .component-package-info ul {
  margin-left: 75px;
}
.has-tool-bar .component-package-info ul li {
  list-style: none;
}

/*---- Dropdown ----*/
.component-content-references .citationActions {
  margin-left: 0;
}
.component-content-references .citationActions li a {
  padding: 2px 0 !important;
}

/*---- Related Content ----*/
.metaBlock dl dt,
.metaBlock dl dd {
  display: inline !important;
}

.page-search .metaBlock dd ol {
  display: inline;
}

/*---- Tabs / UI Components ----*/
@media screen and (min-width: 1200px) {
  .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    padding: 0.4em 0.7em;
  }
}
/*---- Content / Read Panel	----*/
.c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-free:before, .ui-accordion .c-Icon--lockOpen.ico-access-free.ui-accordion-header:before, .c-Icon--lockOpen.c-Icon--before.ico-access-free.goog-te-gadget-simple:before {
  content: "" !important;
  color: #279d24 !important;
  font-size: 20px;
  height: 20px;
  width: 20px;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  line-height: 1 !important;
}

.c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-open:before, .ui-accordion .c-Icon--lockOpen.ico-access-open.ui-accordion-header:before, .c-Icon--lockOpen.c-Icon--before.ico-access-open.goog-te-gadget-simple:before {
  background: center center no-repeat url(../img/open-access.png) !important;
  background-size: auto 80% !important;
  color: rgba(0, 0, 0, 0);
}

.c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-partial:before, .ui-accordion .c-Icon--lockOpen.ico-access-partial.ui-accordion-header:before, .c-Icon--lockOpen.c-Icon--before.ico-access-partial.goog-te-gadget-simple:before {
  content: "" !important;
  color: #279d24 !important;
  font-size: 20px;
  height: 20px;
  width: 20px;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  line-height: 1 !important;
}

.c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-authorized:before, .ui-accordion .c-Icon--lockOpen.ico-access-authorized.ui-accordion-header:before, .c-Icon--lockOpen.c-Icon--before.ico-access-authorized.goog-te-gadget-simple:before {
  content: "" !important;
  color: #279d24 !important;
  font-size: 20px;
  height: 20px;
  width: 20px;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  line-height: 1 !important;
}

.c-Icon.c-Icon--lock.c-Icon--before.ico-access-restricted:before, .ui-accordion .c-Icon--lock.ico-access-restricted.ui-accordion-header:before, .c-Icon--lock.c-Icon--before.ico-access-restricted.goog-te-gadget-simple:before {
  content: "" !important;
  color: #b92020 !important;
  font-size: 20px;
  height: 20px;
  width: 20px;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  line-height: 1 !important;
}

.summary .c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-partial:before, .summary .ui-accordion .c-Icon--lockOpen.ico-access-partial.ui-accordion-header:before, .ui-accordion .summary .c-Icon--lockOpen.ico-access-partial.ui-accordion-header:before, .summary .c-Icon--lockOpen.c-Icon--before.ico-access-partial.goog-te-gadget-simple:before,
.summary .c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-authorized:before,
.summary .ui-accordion .c-Icon--lockOpen.ico-access-authorized.ui-accordion-header:before,
.ui-accordion .summary .c-Icon--lockOpen.ico-access-authorized.ui-accordion-header:before,
.summary .c-Icon--lockOpen.c-Icon--before.ico-access-authorized.goog-te-gadget-simple:before,
.summary .c-Icon.c-Icon--lock.c-Icon--before.ico-access-restricted:before,
.summary .ui-accordion .c-Icon--lock.ico-access-restricted.ui-accordion-header:before,
.ui-accordion .summary .c-Icon--lock.ico-access-restricted.ui-accordion-header:before,
.summary .c-Icon--lock.c-Icon--before.ico-access-restricted.goog-te-gadget-simple:before,
.layout.type-index-card .c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-partial:before,
.layout.type-index-card .ui-accordion .c-Icon--lockOpen.ico-access-partial.ui-accordion-header:before,
.ui-accordion .layout.type-index-card .c-Icon--lockOpen.ico-access-partial.ui-accordion-header:before,
.layout.type-index-card .c-Icon--lockOpen.c-Icon--before.ico-access-partial.goog-te-gadget-simple:before,
.layout.type-index-card .c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-authorized:before,
.layout.type-index-card .ui-accordion .c-Icon--lockOpen.ico-access-authorized.ui-accordion-header:before,
.ui-accordion .layout.type-index-card .c-Icon--lockOpen.ico-access-authorized.ui-accordion-header:before,
.layout.type-index-card .c-Icon--lockOpen.c-Icon--before.ico-access-authorized.goog-te-gadget-simple:before,
.layout.type-index-card .c-Icon.c-Icon--lock.c-Icon--before.ico-access-restricted:before,
.layout.type-index-card .ui-accordion .c-Icon--lock.ico-access-restricted.ui-accordion-header:before,
.ui-accordion .layout.type-index-card .c-Icon--lock.ico-access-restricted.ui-accordion-header:before,
.layout.type-index-card .c-Icon--lock.c-Icon--before.ico-access-restricted.goog-te-gadget-simple:before {
  font-size: 24px;
  height: 24px;
}

.page-search .c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-partial:before, .page-search .ui-accordion .c-Icon--lockOpen.ico-access-partial.ui-accordion-header:before, .ui-accordion .page-search .c-Icon--lockOpen.ico-access-partial.ui-accordion-header:before, .page-search .c-Icon--lockOpen.c-Icon--before.ico-access-partial.goog-te-gadget-simple:before,
.page-search .c-Icon.c-Icon--lockOpen.c-Icon--before.ico-access-authorized:before,
.page-search .ui-accordion .c-Icon--lockOpen.ico-access-authorized.ui-accordion-header:before,
.ui-accordion .page-search .c-Icon--lockOpen.ico-access-authorized.ui-accordion-header:before,
.page-search .c-Icon--lockOpen.c-Icon--before.ico-access-authorized.goog-te-gadget-simple:before,
.page-search .c-Icon.c-Icon--lock.c-Icon--before.ico-access-restricted:before,
.page-search .ui-accordion .c-Icon--lock.ico-access-restricted.ui-accordion-header:before,
.ui-accordion .page-search .c-Icon--lock.ico-access-restricted.ui-accordion-header:before,
.page-search .c-Icon--lock.c-Icon--before.ico-access-restricted.goog-te-gadget-simple:before {
  font-size: 18px;
}

/*- Print Flyer -*/
.page-flyerpage .rightColumn h4.series-list > span {
  display: inline;
}
.page-flyerpage .rightColumn .page-flyerpage .rightColumn h4.series-list ul,
.page-flyerpage .rightColumn .page-flyerpage .rightColumn h4.series-list ul li {
  display: inline;
}
.page-flyerpage .rightColumn img[align=left] {
  margin: 0 10px 10px 0;
}

.contentPage #mainContent .table-wrap {
  overflow: auto;
}
.contentPage #mainContent table {
  max-width: 100%;
}

/*----- Modal -----*/
.cg-primary select,
body select,
select {
  border: 1px solid #bcbec0 !important;
  border-radius: 3px !important;
  padding: 6px 28px 6px 12px !important;
}

#advancedSearchWidget {
  padding-right: 0px !important;
}

.advanced-search .advanced-search-widget .buttons {
  padding: 0px !important;
}

.advSearchModule {
  padding-left: 0px !important;
  margin-left: 0px !important;
}

.tabList.myTabs {
  margin: 0px !important;
}

#toc {
  padding: 20px 40px;
}

#pageLinks ul li a:before {
  position: static;
}

.page-checkout #pageBody {
  padding: 20px 40px;
}

.type-content-flier > .has-centerColumn {
  display: flex !important;
  flex-grow: 1 !important;
  width: 100% !important;
}

.locus-search-form {
  display: flex;
  justify-content: space-between;
  padding: 0px;
}
.locus-search-form > fieldset.locus-group {
  display: inline-block !important;
  padding-bottom: 8px;
}
.locus-search-form > fieldset.locus-group > .form-row {
  display: inline-block !important;
  margin-bottom: 0px !important;
}
.locus-search-form > fieldset.locus-group > .form-row > .form-control,
.locus-search-form > fieldset.locus-group > .form-row .form-control.search-field {
  width: 70px !important;
  height: 40px !important;
  padding: 8px !important;
  border: 1px solid #bcbec0 !important;
  border-radius: 3px !important;
}

/*- Footnote: BRIL-1501 -*/
.footnoteGroup .footnote {
  padding-left: 35px;
  position: relative;
}
.footnoteGroup .footnote label {
  width: 25px;
  position: absolute;
  top: 5px;
  left: 0;
  text-align: right;
}

/*- Static Pages: BRIL-1588 -*/
@media screen and (min-width: 1200px) {
  #localeSelector.open .locale-form {
    display: block !important;
    position: absolute;
    top: 30px;
    right: 36px;
    z-index: 1;
    background: #fff;
    border: solid 1px #bebec0;
    padding: 20px;
  }
}
/*- Flier Print Pages: BRIL-1629 */
@media print {
  #pageBody .column:not(.has-tool-bar) .type-index-card .centerColumn {
    -ro-priority: 1;
    width: unset !important;
    padding: unset !important;
    float: unset !important;
  }

  .type-content-flier > .has-centerColumn.has-rightColumn > .centerColumn {
    -ro-priority: 1;
    width: 76% !important;
  }

  .type-content-flier > .has-centerColumn > .rightColumn {
    -ro-priority: 1;
    width: 24% !important;
  }

  .type-content-flier .footer {
    -ro-priority: 1;
    width: 76% !important;
    position: absolute !important;
    top: 0 !important;
  }
}
div#tokens {
  max-width: 650px;
  margin: 0 auto 25px;
  padding: 0 25px;
}
div#tokens + .ecommerce-cart-entry-display {
  max-width: 650px;
  margin: 0 auto 25px;
  padding: 0 25px;
}

.orders .actionButtons a {
  display: inline-block;
}
.orders dl {
  margin: 30px 0 40px;
}
.orders dl::after {
  clear: both;
  content: "";
  display: table;
}
.orders dl dt {
  float: left;
  clear: left;
  margin-bottom: 20px;
}
.orders dl dt:after {
  display: inline-block;
  content: ":";
  margin-right: 8px;
}
.orders dl dd {
  float: left;
  margin-bottom: 20px;
}

/*- Form Page Overrides -*/
.page-form input,
.page-form select,
.page-form textarea {
  max-width: 450px;
  margin-bottom: 20px;
}
.page-form .form-type-checkbox {
  margin-bottom: 4px;
}
.page-form .form-type-checkbox:last-child {
  margin-bottom: 25px;
}
.page-form input.form-checkbox {
  margin-right: 4px;
  margin-bottom: 0;
  position: relative;
  top: 3px;
}
.page-form #pageBody {
  display: block !important;
  padding: 25px 20px 45px 20px;
}
@media screen and (min-width: 1200px) {
  .page-form #pageBody {
    padding: 36px 40px 80px 40px;
  }
}

.ecommerce-block .ecommerce-block-content h2.ecommerce-block-header {
  margin: unset;
}
.ecommerce-block .ecommerce-block-content a.dropdown-control {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  padding-right: 8px;
  padding-left: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  background-color: #f6f7f8;
}
.ecommerce-block .ecommerce-block-content .dropdown-button {
  padding-bottom: 16px;
}
.ecommerce-block .ecommerce-block-content .dropdown-button .dropdown-control {
  border: 1px solid #bcbec0;
  border-radius: 3px;
}
.ecommerce-block .ecommerce-block-content .dropdown-button.open .dropdown-control {
  box-shadow: none;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ecommerce-block .ecommerce-block-content .dropdown-button.open .menuClass {
  border: 1px solid #bcbec0;
  border-radius: 2px;
  box-shadow: none;
}
.ecommerce-block .ecommerce-block-content .dropdown-button a.dropdown-control:after {
  position: absolute;
  font-size: 1rem;
  height: 1rem;
  width: 1rem;
  right: 8px;
}
.ecommerce-block .ecommerce-block-content .dropdown-button .ui-menu-item {
  margin: 0%;
  padding-right: 8px;
  padding-left: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.ecommerce-block .ecommerce-block-content .dropdown-button .ui-menu-item.dropdown-menu-header {
  color: #0f356c;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #0f356c;
}
.ecommerce-block .ecommerce-block-content .offer .offer-name {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}
.ecommerce-block .ecommerce-block-content .offer .offer-pricing {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}

@media (min-width: 1500px) {
  .c-Appbar .shows-taxonomy ~ ul {
    column-count: 4;
  }
}
.c-Appbar .taxonomyNav img {
  max-width: 40px;
  max-height: 40px;
}

.Modal .c-Paper a.c-Button img, .Modal .c-Paper .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a img, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .Modal .c-Paper a img, .Modal .c-Paper a.goog-te-gadget-simple img {
  max-width: 40px;
  max-height: 40px;
}

.component-table-of-contents ul.tree li .editorial-type {
  font-size: smaller;
}

#searchRadio label {
  font-size: 14px;
}
#searchRadio .searchRadioInputs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
}
#searchRadio .searchRadioInputs input, #searchRadio .searchRadioInputs label {
  display: inline;
}
#searchRadio .searchRadioInputs label {
  margin-right: 20px;
}

/**
 * Column layouts.  This is where the overall layout of the columns on the page is done.  This should not contain
 * visual style elements such as color, backgrounds, borders, etc.
 */
/**
 * Column layouts for Non-Customizable Pages.  This is where the overall layout of the columns on the page is done.  This should not contain
 * visual style elements such as color, backgrounds, borders, etc.
 */
#contentWrapper {
  width: 100%;
}

.page-search #columnWrapper {
  padding: 0;
}

@media screen and (min-width: 767px) {
  .page-search #columnWrapper {
    position: relative;
  }
}
/**
 * This is where the visual style of controls (buttons, etc.) are specified.
 */
.column.has-tool-bar {
  display: flex;
}
.column.column-collapsible .control.control-column-expand, .column.column-collapsible .control.control-column-collapse, .column.column-collapsible .control.control-scroll-to-top {
  display: flex !important;
}
.column.column-expandable .control.control-column-expand {
  display: flex !important;
}
.column.column-expandable .control.control-column-collapse {
  display: flex !important;
}
.column .column-controls {
  position: relative;
  height: 100% !important;
}
.column .column-controls:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
}
.column .column-controls .fixed-controls {
  position: relative;
  margin: 16px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.column .column-controls .column-control-group {
  position: static;
  margin: 0;
}
.column .column-controls .column-control-group li {
  list-style: none;
}
.column .column-controls .column-control-group .control {
  position: relative;
  display: none;
  height: 45px;
  width: 45px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 500ms ease-out;
  will-change: transform;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.15),0px 4px 5px 0px rgba(0, 0, 0, 0.1),0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  background-color: #00093c;
}
.column .column-controls .column-control-group .control.control-scroll-to-top {
  position: absolute;
  bottom: 2%;
}
.column .column-controls .column-control-group .control.control-scroll-to-top:before {
  content: "\f102";
  font-size: 14px;
}
.column .column-controls .column-control-group .control span {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*--- Column One Search Module ---*/
.page-search .pagination {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}
.page-search .pagination a, .page-search .pagination span {
  display: inline-block;
  padding: 4px;
}
.page-search .pagination a {
  text-decoration: none;
  color: #007f92;
}
.page-search .pagination .current {
  color: black;
}
.page-search .jumpto-tool input[type=text] {
  width: 50px;
}
.page-search .results-column {
  flex: 1;
}
.page-search .results-wrapper {
  display: flex;
  flex-flow: row nowrap;
}
.page-search .contentItem:first-of-type {
  border-top: none;
}
.page-search .contentItem .component-cover-image {
  float: left;
}
.page-search .contentItem .component-cover-image img {
  width: auto;
  height: auto;
}
.page-search .contentItem h4.series-list ul {
  display: inline-block;
  list-style: none;
}
.page-search .metaBlock {
  display: none;
}
.page-search .metaBlock dl.subjects {
  overflow: hidden;
}
.page-search .metaBlock dl.subjects dd {
  display: inline;
}
.page-search .metaBlock dl dt,
.page-search .metaBlock dl dd {
  display: inline;
}
.page-search .metaBlock dd ol {
  list-style: none;
  display: inline;
}
.page-search .metaBlock dd ol li {
  display: inline;
}
.page-search .metaBlock dd ol li a:after {
  content: ", ";
  display: inline-block;
}
.page-search .metaBlock dd ol li:last-child a:after {
  display: none;
}
.page-search .contentItem.expanded .metaBlock {
  display: block;
}

.noResultsPage #searchHeader::after {
  clear: both;
  content: "";
  display: table;
}
.noResultsPage #noresults {
  margin-bottom: 25px;
  border-left: 0 !important;
}

span.external-content-label:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline;
  content: "";
}

#searchWithinIndexCardWrapper {
  border-bottom: solid 1px rgba(0, 0, 0, 0.075);
}

@media (min-width: 1152px) {
  .page-search div.dropdown-button {
    float: right;
  }
  .page-search .searchHeader div[data-tasktype=citation-export] {
    float: right;
  }
  .page-search .resultsBar form label {
    display: inline;
  }
  .page-search .pageSizeAndSort {
    float: left;
  }
  .page-search .pageSizeAndSort form {
    display: inline-block;
  }
  .page-search .pagination {
    float: right;
  }
  .page-search #searchContent {
    clear: both;
  }
  .page-search .contentItem .metaBlock {
    display: block;
  }
  .page-search .contentItem.expanded .metaBlock {
    border-top-width: 0;
    padding-top: 0;
    margin-top: 0;
  }
  .page-search .contentItem.splitResult .metaBlock {
    flex: 0 0 320px;
  }
}
.signup-form #joinMailingListRow {
  float: left;
  padding-top: 19px;
}

.page-newsitem #pageBody,
.page-news #pageBody {
  display: flex;
  flex-direction: column;
}
.page-newsitem #pageBody #pageLinks,
.page-news #pageBody #pageLinks {
  order: 1;
}
.page-newsitem #pageBody #columnOne,
.page-news #pageBody #columnOne {
  order: 2;
}
.page-newsitem #pageBody #columnOne h2,
.page-news #pageBody #columnOne h2 {
  margin-top: 0;
}
.page-newsitem #pageBody #mainContent,
.page-news #pageBody #mainContent {
  order: 3;
}

#newsNavigation ul {
  list-style-type: none;
}

.news-teaser p, .news-teaser h1, .news-teaser h2, .news-teaser h3, .news-teaser h4 {
  margin-top: 16px;
  margin-bottom: 0px;
}

header.news-header {
  margin-bottom: 25px;
}
header.news-header h1 {
  margin: 20px 0 0;
}
header.news-header h3 {
  margin-top: 0;
}
header.news-header h4 {
  margin-top: -4px;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}

.news-nav-title button {
  background: transparent !important;
  border: none;
  width: 100%;
  padding: 0;
  text-align: left;
  margin: 0;
}
.news-nav-title > span {
  display: none;
}

h3.archivesYear {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.075);
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  margin: 0 0 8px;
  position: relative;
  padding: 0px;
  cursor: pointer;
}
h3.archivesYear:after {
  content: "keyboard_arrow_down";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  font-size: 24px;
  font-family: "Material Icons";
}
h3.archivesYear.open:after {
  content: "keyboard_arrow_up";
}

ul.news-nav-list {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
  list-style: none;
  margin-left: 0;
}
ul.news-nav-list li {
  line-height: 1.75;
}
ul.news-nav-list .count {
  float: right;
}
ul.news-nav-list.open {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
}

@media screen and (min-width: 1200px) {
  .page-newsitem #pageBody,
.page-news #pageBody {
    flex-direction: row;
  }
}
#myTabs {
  list-style: none;
  height: auto;
  padding: 0;
}
#myTabs a.ico-menu {
  display: none;
  padding: 4px 10px 12px;
}
#myTabs a.ico-menu:before {
  margin-right: 8px;
  font-size: 26px;
  position: relative;
  top: 4px;
}
#myTabs.open li.tab {
  display: block;
}

.accountForm {
  margin-bottom: 32px;
}
.accountForm::after {
  clear: both;
  content: "";
  display: table;
}
.accountForm input.c-InputField.c-InputField--isFloating, .accountForm .page-page #pageContent input.c-InputField--isFloating:not([type=checkbox]), .page-page #pageContent .accountForm input.c-InputField--isFloating:not([type=checkbox]), .accountForm .page-form #mainContent input.c-InputField--isFloating:not([type=checkbox]), .page-form #mainContent .accountForm input.c-InputField--isFloating:not([type=checkbox]) {
  margin-top: 16px !important;
}
.accountForm .c-Input > .c-Select--native, .accountForm .page-page #pageContent .c-Input > select, .page-page #pageContent .accountForm .c-Input > select, .accountForm .page-form #mainContent .c-Input > select, .page-form #mainContent .accountForm .c-Input > select {
  padding-bottom: 0px !important;
  margin-top: 24px;
  margin-bottom: 0px;
  border-bottom: none !important;
}

.hiddenModule {
  display: none;
}

.page-orders .t-data-grid {
  width: 100%;
}

.myStuff .groupsModule .addLink span {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
}
.myStuff .tagsModule {
  width: 100%;
}
@media (min-width: 1152px) {
  .myStuff .tagsModule {
    width: 350px;
  }
}
.myStuff div.t-data-grid {
  overflow-x: scroll;
}
.myStuff table:not(.cart) {
  width: 100%;
  min-width: 768px;
}
.myStuff table:not(.cart) thead th a:nth-child(2):before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  content: "";
  display: inline-block;
  font-size: 16px;
  margin-left: 8px;
}
.myStuff table:not(.cart) thead th a:nth-child(2) img {
  display: none;
}
.myStuff table:not(.cart) thead th a:nth-child(2).t-sort-column-ascending:before {
  content: "";
}
.myStuff table:not(.cart) thead th a:nth-child(2).t-sort-column-descending:before {
  content: "";
}
.myStuff table:not(.cart) td.actions {
  padding: 0px 4px;
  white-space: nowrap;
}
.myStuff table:not(.cart) ul.tags {
  list-style: none;
  margin-left: 0;
}
.myStuff table:not(.cart) ul.actions {
  list-style: none;
  margin-left: 0;
}
.myStuff table:not(.cart) ul.actions li {
  display: inline-block;
}

@media screen and (min-width: 767px) {
  #myTabs {
    list-style: none;
  }
  #myTabs a.ico-menu {
    padding: 4px 20px 12px;
  }

  .myStuff div.t-data-grid {
    overflow-x: auto;
  }
}
@media screen and (min-width: 1200px) {
  #myTabs li {
    margin: 0;
  }
  #myTabs li.mobile-menu {
    display: none;
  }
  #myTabs li.active a {
    position: relative;
  }
  #myTabs li.active a:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    content: " ";
    display: block;
  }
}
.ie-11 #myTabs.c-Tabs--sticky {
  position: static;
}

.grid {
  text-align: center;
}
.grid .row-block.collapsed {
  display: none;
}
.grid a.more:not(.c-Icon):not(.goog-te-gadget-simple.goog-te-gadget-simple):after, .grid a.less:not(.c-Icon):not(.goog-te-gadget-simple.goog-te-gadget-simple):after {
  font-family: FontAwesome;
  line-height: 1;
  display: inline-block;
  font-size: 15px;
  margin-left: 8px;
}
.grid a.more:not(.c-Icon):not(.goog-te-gadget-simple.goog-te-gadget-simple):after {
  content: "";
}
.grid a.less {
  display: none;
}
.grid a.less:not(.c-Icon):not(.goog-te-gadget-simple.goog-te-gadget-simple):after {
  content: "";
}
.grid .grid-row {
  display: flex;
}
.grid .grid-row .grid-item {
  flex: 1;
  display: inline-block;
  list-style: none;
  margin-left: 0;
  padding: 10px;
}

.ie-11 .grid .grid-row .grid-item {
  flex: auto;
  flex-grow: 1;
}

/* These are the styles for a flat list of content */
.flat-list {
  margin-left: 30px;
}
.flat-list.no-bullets {
  list-style: none;
  margin-left: 15px;
}
.flat-list li {
  margin-bottom: 10px;
}

.taxonomy-list-item .icon, .taxonomy-list-item .label {
  display: block;
  text-align: center;
}

.annot {
  background-color: #dcdcdc;
}

#createAnnotation {
  position: absolute;
  z-index: 999;
  margin: 20px 0 0;
  transform: translateX(-50%);
}
#createAnnotation button {
  -webkit-box-shadow: 3px 3px 3px 0 rgba(181, 181, 181, 0.25);
  -moz-box-shadow: 3px 3px 3px 0 rgba(181, 181, 181, 0.25);
  box-shadow: 3px 3px 3px 0 rgba(181, 181, 181, 0.25);
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  border-color: #000000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000000;
  background-image: -webkit-linear-gradient(bottom, #000000, #808080);
  background-image: linear-gradient(to top,#000000, #808080);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#000000, endColorstr=#808080)";
  color: #ffffff !important;
  /* using important to override <a> within blocks */
}
#createAnnotation button:before {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  html.touch #createAnnotation {
    display: none;
  }
}

.annotation {
  margin-bottom: 1.167em;
  padding-top: 1em;
  border-top: 1px solid #dcdcdc;
}
.annotation:first-child {
  padding-top: 0;
  border-top: none;
}
.annotation header {
  margin-bottom: 1.167em;
}
.annotation blockquote {
  margin: 0 0 1em 0;
  font-style: italic;
}
.annotation blockquote:before {
  content: "“";
  font-style: normal;
}
.annotation blockquote:after {
  content: "”";
  font-style: normal;
}
.annotation .timestamp,
.annotation .owner {
  color: #000000;
  font-size: 0.833em;
}
.annotation .annotatedText {
  margin-top: 1.167em;
}

.annotationsForm legend {
  display: none;
}
.annotationsForm .comment {
  width: 100%;
  min-height: 10em;
  overflow-y: scroll;
}
.annotationsForm .rules {
  font-size: 0.833em;
  color: #000000;
}

.annotatedText {
  margin-bottom: 1.167em;
  padding: 1em;
  font-size: 0.833em;
  background-color: #dcdcdc;
}

.annotationNav {
  float: right;
  margin: 0-20em 0 0;
  padding-left: 2em;
  width: 20em;
}
@media screen and (max-width: 767px) {
  .annotationNav {
    float: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}

.myStuff #mainContent .annotationNav {
  margin-right: -32%;
  width: 29%;
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  .myStuff #mainContent .annotationNav {
    margin: 0;
    width: 100%;
    padding-left: 0;
  }
}

.annotSearch input[type=submit],
.annotSearch .search-button {
  margin-left: -0.3em;
}

.component-google-translate-widget .google-translate-container {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 10px;
}

.component-rightslink-widget {
  padding: 10px;
}

.type-index-card .component.component-rightslink-widget {
  padding: 0;
}

/*
Note the styles in here are deliberately using a Safari color palette.  This is because the CXS is an
admin function of the site similar to the management portal so we want a safari style applied.
*/
.cxs-content-root .cxs-container {
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
}
.cxs-content-root .cxs-container:hover {
  padding: 0;
  border: dotted 1px #E98300;
  margin: -1px;
}
.cxs-content-root .cxs-progress {
  min-height: 50px;
  padding-top: 0.8em;
  padding-left: 75px;
}
.cxs-content-root .cxs-error {
  display: none;
  min-height: 50px;
  background: transparent url(../img/error.png) top left no-repeat;
  padding-left: 75px;
}
.cxs-content-root .throbber {
  margin: 0 0 0 -50px;
  top: 30px;
}
.cxs-content-root .cxs-messages {
  padding: 1em;
}
.cxs-content-root .cxs-messages p {
  margin: 0;
}
.cxs-content-root .cxs-messages h3 {
  margin: 0;
  color: #E98300;
}
.cxs-content-root .cxs-exception {
  margin-left: 1em;
  padding-left: 0.5em;
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
}
.cxs-content-root .cxs-exception-message {
  font-weight: bold;
}
.cxs-content-root .cxs-exception-cause {
  margin-left: 1em;
  padding-left: 0.5em;
  border-top: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
}
.cxs-content-root .cxs-exception-label {
  float: left;
  font-weight: bold;
}
.cxs-content-root .cxs-exception-value {
  display: block;
  margin-left: 4.5em;
}
.cxs-content-root .cxs-root-cause {
  background: #eeeeee;
}
.cxs-content-root .cxs-root-cause .cxs-exception-value-cause {
  font-weight: bold;
  color: red;
}
.cxs-content-root .cxs-controls {
  display: none;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  list-style: none;
  border-style: solid;
  border-color: #dedbd3;
  border-width: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 0;
  margin: 0.5em;
  background-color: #F4F3F0;
  z-index: 1000;
}
.cxs-content-root .cxs-controls li {
  float: right;
}
.cxs-content-root .cxs-control {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5em;
  font-size: 1em;
}
.cxs-content-root .cxs-container:hover .cxs-controls {
  display: block;
}
.cxs-content-root .cxs-control div {
  display: none;
}
.cxs-content-root .cxs-params {
  display: none;
  position: absolute;
  top: 10px;
  right: 57px;
  background: #F4F3F0;
  color: #333333;
  width: 400px;
  font-size: 0.8em;
  padding: 0.5em;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border: solid 1px #000000;
  cursor: text;
}
.cxs-content-root .cxs-params h3 {
  font-weight: bold;
  font-size: 1em;
  color: #000000;
}
.cxs-content-root .cxs-params:after, .cxs-content-root .cxs-params:before {
  left: 100%;
  top: 19px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.cxs-content-root .cxs-params:after {
  border-color: rgba(238, 238, 238, 0);
  border-left-color: #F4F3F0;
  border-width: 10px;
  margin-top: -10px;
  bottom: 26px;
}
.cxs-content-root .cxs-params:before {
  border-color: rgba(0, 0, 0, 0);
  border-left-color: #000000;
  border-width: 11px;
  margin-top: -11px;
}
.cxs-content-root .cxs-params .cxs-param {
  clear: both;
  display: block;
  margin-top: 0.3em;
}
.cxs-content-root .cxs-params .cxs-param-name {
  font-weight: bold;
}

/* These are the styles for the structural/slider component which uses the jQuery "slick slider" */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-arrow.slick-hidden {
  display: none;
}

div.slider {
  margin: 0 75px;
  position: relative;
}
div.slider a img {
  width: 80%;
  margin: 0 auto;
  -webkit-box-shadow: 3px 3px 3px 0 rgba(181, 181, 181, 0.6);
  -moz-box-shadow: 3px 3px 3px 0 rgba(181, 181, 181, 0.6);
  box-shadow: 3px 3px 3px 0 rgba(181, 181, 181, 0.6);
}

.slick-arrow {
  width: 75px;
  height: 138px;
  position: absolute;
  top: 50%;
  margin-top: -74px;
  border: none;
  visibility: collapse;
  cursor: pointer;
}
.slick-arrow:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  position: absolute;
  top: 0;
  color: #fff;
  left: 0;
  visibility: visible;
  width: 75px;
  height: 138px;
  line-height: 138px;
  vertical-align: middle;
  text-align: right;
  font-size: 60px;
}
.slick-arrow.slick-prev {
  left: -75px;
}
.slick-arrow.slick-prev:before {
  content: "";
  display: block;
  text-align: left;
}
.slick-arrow.slick-next {
  right: -75px;
}
.slick-arrow.slick-next:before {
  content: "";
  display: block;
  right: 0;
  left: auto;
}
.slick-arrow:active {
  outline: 0;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.slick-dots li {
  display: inline-block;
  list-style: none;
  margin: 0 6px;
}
.slick-dots li button {
  font-size: 0;
  border-radius: 100px;
  padding: 7px;
  margin: 0;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
  text-align: center;
}
.slick-vertical .slick-arrow {
  width: 138px;
  height: 75px;
  position: absolute;
  left: 50%;
  margin-top: 0;
  margin-left: -69px;
  border: none;
  visibility: collapse;
  z-index: 100;
}
.slick-vertical .slick-arrow:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  position: absolute;
  top: 0;
  color: #fff;
  left: 0;
  visibility: visible;
  width: 138px;
  height: 75px;
  line-height: 75px;
  vertical-align: middle;
  text-align: center;
  font-size: 60px;
}
.slick-vertical .slick-arrow.slick-prev {
  top: -20px;
}
.slick-vertical .slick-arrow.slick-prev:before {
  content: "";
  display: block;
}
.slick-vertical .slick-arrow.slick-next {
  bottom: -20px;
  top: auto;
}
.slick-vertical .slick-arrow.slick-next:before {
  content: "";
  display: block;
}
.slick-vertical .slick-arrow:active {
  outline: 0;
}

@media only screen and (max-width: 1250px) {
  .slick-arrow {
    width: 75px;
    height: 138px;
    position: absolute;
    top: 50%;
    margin-top: -74px;
    border: none;
    visibility: collapse;
  }
  .slick-arrow:before {
    width: 55px;
  }
  .slick-arrow.slick-prev {
    left: -45px;
  }
  .slick-arrow.slick-next {
    right: -45px;
  }
}
@media only screen and (max-width: 800px) {
  .slick-arrow {
    width: 45px;
  }
  .slick-arrow:before {
    font-size: 45px;
    width: 55px;
  }
}
.slider.fullwidth {
  margin: -1.5em -1.5em 1.5em;
  position: relative;
  background: #f4f4f4;
}
.slider.fullwidth button {
  background: transparent;
  border: none;
  outline: 0;
}
.slider.fullwidth button.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  text-indent: -9000em;
  font-size: 0;
  margin-top: -45px;
}
.slider.fullwidth button.slick-arrow:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 100px;
  font-size: 140px;
  content: "";
  display: block;
  position: relative;
  top: -5px;
  color: #fff;
}
.slider.fullwidth button.slick-prev {
  left: 20px;
}
.slider.fullwidth button.slick-prev:before {
  content: "";
}
.slider.fullwidth button.slick-next {
  right: 20px;
}
.slider.fullwidth button.slick-next:before {
  content: "";
}
.slider.fullwidth .slick-slide {
  opacity: 0.6;
  transition: opacity 0.3s ease-out;
}
.slider.fullwidth .slick-slide a {
  display: block;
  padding: 30px 20px;
}
.slider.fullwidth .slick-slide a img {
  margin-bottom: 0;
}
.slider.fullwidth .slick-current {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

@media only screen and (max-width: 1000px) {
  .slider.fullwidth button.slick-arrow:before {
    font-size: 90px;
    top: -6px;
  }
}
.c-Action {
  display: flex !important;
  justify-content: center;
}

.c-Link-error {
  color: #ff2626 !important;
}

#annotationsPopup textarea {
  max-width: 100%;
}
#annotationsPopup a.close span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
#annotationsPopup .shell {
  max-height: 65vh;
  overflow-y: scroll;
}
#annotationsPopup .owner {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}

#breadcrumb ul {
  margin-left: 0;
}
#breadcrumb ul li {
  display: inline-block;
  margin-right: 4px;
}
#breadcrumb ul li.first:before {
  display: none;
}

#entryPrevNextNav, .smartNav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
#entryPrevNextNav ul, .smartNav ul {
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 0;
}
#entryPrevNextNav ul li, .smartNav ul li {
  display: inline-block;
}
#entryPrevNextNav ul li a span, .smartNav ul li a span {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
}

.layout > #entryPrevNextNav {
  padding: 10px;
  margin-bottom: 0;
}

@media screen and (min-width: 767px) {
  .layout > #entryPrevNextNav {
    padding: 15px 25px;
  }
}
.component-editorial-content ul, .component-more-by ul, .component-content-html ul, .pattern-library-style-root ul {
  margin: 16px 16px;
  list-style-type: disc;
  list-style-position: outside;
}
.component-editorial-content ul.label-provided > li, .component-editorial-content ul.refList > li, .component-more-by ul.label-provided > li, .component-more-by ul.refList > li, .component-content-html ul.label-provided > li, .component-content-html ul.refList > li, .pattern-library-style-root ul.label-provided > li, .pattern-library-style-root ul.refList > li {
  list-style: none;
}
.component-editorial-content ul > li.download-figure, .component-more-by ul > li.download-figure, .component-content-html ul > li.download-figure, .pattern-library-style-root ul > li.download-figure {
  list-style: none;
}
.component-editorial-content ul.numbered > li, .component-more-by ul.numbered > li, .component-content-html ul.numbered > li, .pattern-library-style-root ul.numbered > li {
  list-style-type: decimal;
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
}
.component-editorial-content ul.numbered > li.download-figure, .component-more-by ul.numbered > li.download-figure, .component-content-html ul.numbered > li.download-figure, .pattern-library-style-root ul.numbered > li.download-figure {
  list-style: none;
}
.component-editorial-content ul ul, .component-more-by ul ul, .component-content-html ul ul, .pattern-library-style-root ul ul {
  margin-left: 32px;
}
.component-editorial-content ol, .component-more-by ol, .component-content-html ol, .pattern-library-style-root ol {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 32px;
  margin-right: 16px;
  list-style-type: decimal;
  list-style-position: outside;
}
.component-editorial-content ol.label-provided > li, .component-editorial-content ol.refList > li, .component-more-by ol.label-provided > li, .component-more-by ol.refList > li, .component-content-html ol.label-provided > li, .component-content-html ol.refList > li, .pattern-library-style-root ol.label-provided > li, .pattern-library-style-root ol.refList > li {
  list-style: none;
}
.component-editorial-content ol > li.download-figure, .component-more-by ol > li.download-figure, .component-content-html ol > li.download-figure, .pattern-library-style-root ol > li.download-figure {
  list-style: none;
}
.component-editorial-content ol ol, .component-more-by ol ol, .component-content-html ol ol, .pattern-library-style-root ol ol {
  margin-left: 32px;
}
.component-editorial-content li > ul > li,
.component-editorial-content li > ol > li, .component-more-by li > ul > li,
.component-more-by li > ol > li, .component-content-html li > ul > li,
.component-content-html li > ol > li, .pattern-library-style-root li > ul > li,
.pattern-library-style-root li > ol > li {
  margin-left: 1em;
  list-style-position: outside;
}
.component-editorial-content ul.content-list li > span:not(:first-child), .component-more-by ul.content-list li > span:not(:first-child), .component-content-html ul.content-list li > span:not(:first-child), .pattern-library-style-root ul.content-list li > span:not(:first-child) {
  display: block;
  padding-top: 8px;
}
.component-editorial-content ul.refList > li, .component-more-by ul.refList > li, .component-content-html ul.refList > li, .pattern-library-style-root ul.refList > li {
  margin-bottom: 24px;
}

.content-list.content-list.content-list-type--order {
  list-style-type: decimal;
}
.content-list.content-list.content-list-type--bullet {
  list-style-type: disc;
}
.content-list.content-list.content-list-type--alpha-lower {
  list-style-type: lower-alpha;
}
.content-list.content-list.content-list-type--alpha-upper {
  list-style-type: upper-alpha;
}
.content-list.content-list.content-list-type--roman-lower {
  list-style-type: lower-roman;
}
.content-list.content-list.content-list-type--roman-upper {
  list-style-type: upper-roman;
}
.content-list.content-list.content-list-type--simple {
  list-style-type: none;
}

.component-content-html .title {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.component-abbreviations .abbreviations > span:not(:first-child) {
  margin-left: 4px;
}

/*--- Hide and Show Toggle on Mobile ---*/
.faceted-nav-toggle {
  display: none;
  border: none;
  background: none !important;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  padding: 4px 0 0 0;
  text-align: center;
  margin: 0;
  height: 52px;
  width: 55px;
}
.faceted-nav-toggle span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.faceted-nav-toggle:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: block;
  content: "";
  font-size: 26px;
  width: 35px;
  margin: 0 auto;
  position: relative;
  top: -2px;
}

.faceted-nav.open .faceted-nav-toggle:before {
  content: "";
  top: -2px;
}

h2.faceted-nav-header {
  margin: 0;
}
h2.faceted-nav-header span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
h2.faceted-nav-header + div > h3 {
  margin-top: 0;
}

/*--- Facets ---*/
.faceted-nav {
  position: relative;
  clear: both;
  /*- Toggle -*/
  /*- Facets Lists -*/
}
.faceted-nav .c-List__item .c-Link {
  margin-left: 12px;
}
.faceted-nav .c-List__item .c-Link span:last-child {
  position: relative !important;
  transform: unset !important;
  top: unset !important;
  right: unset !important;
  padding-left: 8px !important;
}
.faceted-nav fieldset {
  margin: 0;
  padding: 0;
}
.faceted-nav legend {
  width: 100%;
  margin-bottom: 0;
}
.faceted-nav h3.toggle a, .faceted-nav h2.toggle a {
  position: relative;
  align-items: center;
}
.faceted-nav h3.toggle a:after, .faceted-nav h2.toggle a:after {
  content: "keyboard_arrow_up";
  position: absolute;
  right: 0;
  font-family: "pf2-icons", "Material Icons";
}
.faceted-nav .facet-values > .c-List__items > .c-List__item > .c-Ripple {
  transform: translate3d(-18px, 0, 0) !important;
}
.faceted-nav a.toggle {
  z-index: 2;
  position: absolute;
  left: -8px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  transform: translate3d(-50%, 0, 0);
}
.faceted-nav label .facet-count,
.faceted-nav .taxonomy-tree a:not(.toggle) .facet-count,
.faceted-nav .taxonomy-tree span.active .facet-count {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.faceted-nav .shut > ul {
  display: none;
}
.faceted-nav ul ul {
  margin-left: 25px;
}
.faceted-nav.open h3.toggle a:after {
  content: "keyboard_arrow_up";
}
.faceted-nav.open > div {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
}
.faceted-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faceted-nav ul li {
  line-height: 1.75;
}
.faceted-nav .facet-values {
  margin-bottom: 0;
}
.faceted-nav .facetModule.shut h3 a:after, .faceted-nav .facetModule.shut h2 a:after {
  content: "keyboard_arrow_down";
}
.faceted-nav .facetModule.shut .facet-values ul,
.faceted-nav .facetModule.shut .facet-values .form-row,
.faceted-nav .facetModule.shut .facet-values .search-form {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
  margin-bottom: 0;
}
.faceted-nav .facet-count {
  float: right;
}
.faceted-nav .date-search-filter {
  margin: 0;
  padding: 0;
}
.faceted-nav .date-search-filter .form-row {
  padding: 0 15px;
}

@media screen and (min-width: 767px) {
  .faceted-nav-toggle {
    left: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .faceted-nav-toggle {
    display: none;
  }

  .faceted-nav {
    margin: 0 0 25px;
  }
  .faceted-nav h3.toggle {
    margin-bottom: 8px;
  }
  .faceted-nav > div {
    position: static;
    clip: auto;
    height: auto;
    width: auto;
    overflow: visible;
  }
}
.gallery-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: white;
  z-index: 10001;
}
.gallery-overlay.active {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.component-content-figures figure figcaption {
  text-align: center;
  clear: both;
  overflow-wrap: break-word;
}

.component-image-gallery .primary-img {
  background-size: contain !important;
  height: 100px;
  display: block;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
@media (min-width: 480px) {
  .component-image-gallery .primary-img {
    height: 290px;
  }
}
@media (min-width: 1300px) {
  .component-image-gallery .primary-img {
    height: 450px;
  }
}
.component-image-gallery .thumb-slider-splide {
  position: relative;
  height: 90px;
  margin: 0 auto;
  width: 100%;
  max-width: 660px;
  padding-top: 20px;
}
.component-image-gallery .splide__arrow--prev {
  left: -3rem;
}
.component-image-gallery .splide__arrow--next {
  right: -3em;
}
.component-image-gallery .caption {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 720px;
  max-height: 40px;
  display: none;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px;
  overflow-y: hidden;
  left: 50%;
  transform: translateX(-50%);
}
.component-image-gallery .caption:hover {
  max-height: 100%;
  background-color: white;
}
.component-image-gallery .caption:hover p {
  white-space: normal;
  text-overflow: initial;
}
.component-image-gallery .caption p {
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}
.component-image-gallery .splide__slide.has-caption {
  padding-bottom: 40px;
}
.component-image-gallery .splide__slide.has-caption .caption {
  display: block;
}
.component-image-gallery ul.actions {
  list-style: none;
  display: block;
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 10px;
  height: auto !important;
}
.component-image-gallery ul.actions.close {
  position: absolute;
  text-align: right;
}
.component-image-gallery ul.actions li {
  display: inline-block;
  margin-right: 10px;
}
.component-image-gallery ul.actions li a span {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
  margin-left: 8px;
}

.ie-11 .component-image-gallery .full-image-slider {
  flex: auto;
  flex-grow: 1;
}
.ie-11 .component-image-gallery .thumbnail-slider {
  flex: auto;
  flex-grow: 1;
}

.micromodaljs-modal {
  display: none;
}
.micromodaljs-modal.is-open {
  display: block;
}
.micromodaljs-modal iframe {
  border: none;
  width: 100%;
  min-height: 30vh;
}
.micromodaljs-modal header {
  position: absolute;
  top: 10px;
  right: 15px;
}
.micromodaljs-modal .loading {
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.15), 0px 6px 10px 0px rgba(0, 0, 0, 0.1), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  position: fixed;
  top: calc(50vh - 25px);
  z-index: 100;
}
.micromodaljs-modal .loading .throbber {
  margin: 13px auto;
}
.micromodaljs-modal .loading span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.micromodaljs-modal .screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.lightboxTitle span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.micromodaljs-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.micromodaljs-modal-container {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.15), 0px 24px 38px 3px rgba(0, 0, 0, 0.1), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  max-height: 80vh;
  overflow: hidden;
  overflow-y: auto;
  z-index: 0;
}

.micromodaljs-modal-close-button {
  position: absolute;
  top: -28px;
  right: -33px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: white;
  border: none;
  border-radius: 50px;
  padding: 0;
  text-align: center;
}
.micromodaljs-modal-close-button i {
  font-size: 20px;
  color: #0f356c;
}
.micromodaljs-modal-close-button .c-IconButton, .micromodaljs-modal-close-button [data-js=hitHighlightingContent], .micromodaljs-modal-close-button [data-js=hitHighlightingPrev], .micromodaljs-modal-close-button [data-js=hitHighlightingNext], .micromodaljs-modal-close-button [data-js=hitHighlightingClose] {
  padding: 7px;
}

.micromodaljs-modal-content {
  max-height: 100%;
}

.has-open-modal {
  overflow: hidden !important;
}

.micromodaljs-modal-content html {
  overflow-y: hidden;
}

.pageLinks.tools-top {
  position: relative !important;
  padding: 0px !important;
  display: flex !important;
  justify-content: flex-end;
  background-color: transparent;
}
.pageLinks li.share > a > img {
  display: none;
}
.pageLinks.tools-top .actions {
  flex-direction: row !important;
}

.pageTools-toggle, .close-toggle {
  display: none !important;
}

.column-controls #pageLinks {
  position: static;
  padding: 10px 0 0;
  margin-bottom: 10px;
}
.column-controls #pageLinks ul {
  display: none;
}
.column-controls #pageLinks ul li {
  display: block;
}
.column-controls #pageLinks a.pageTools-toggle {
  display: inline-block;
  height: 100%;
  padding: 15px 0;
  text-transform: uppercase;
  border-bottom-width: 0;
}
.column-controls #pageLinks a.pageTools-toggle div {
  overflow: hidden;
}
.column-controls #pageLinks a.pageTools-toggle div div {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  transform: translate(0, 0) rotate(90deg);
  right: 5px;
  line-height: 50px;
}
.column-controls #pageLinks a.pageTools-toggle div div:before {
  content: "";
  float: left;
  margin-top: 100%;
}
.column-controls #pageLinks a.close-toggle {
  border-bottom: none;
  text-align: center;
  padding-top: 12px;
  display: none;
}
.column-controls #pageLinks a.close-toggle:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  content: "\f00d";
}
.column-controls #pageLinks.open ul {
  display: block;
}
.column-controls #pageLinks.open a.pageTools-toggle {
  border-bottom-width: 1px;
}
.column-controls #pageLinks.open a.close-toggle {
  display: block;
}

.c-Modal-paywall .fancybox-skin {
  padding: 0px !important;
  overflow: hidden;
  background-color: #f2f2f2;
  border-radius: 2px;
}

.c-Modal_content {
  overflow: auto;
  overflow-x: hidden;
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  background-color: #f2f2f2;
  border-radius: 2px;
}
.c-Modal_content-large {
  width: 90vw;
  max-width: 1400px;
  height: 100%;
}

.micromodaljs-modal-close-button {
  top: 0;
  right: -10px;
  text-decoration: none;
}

.page-flyerpage .c-App {
  max-width: 100vw !important;
  width: 100vw !important;
}
.page-flyerpage .type-content-flier {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-height: 100vh;
}
.page-flyerpage .type-content-flier > .column-group > .column {
  margin: 0 !important;
  flex-wrap: wrap;
  flex-shrink: 1;
}
.page-flyerpage .type-content-flier > .column-group.has-centerColumn > .column.centerColumn {
  flex-grow: 5;
  flex-basis: 62.5%;
  border-right: solid 24px #0f356c;
}
.page-flyerpage .type-content-flier > .column-group.has-centerColumn > .column.rightColumn {
  flex-grow: 3;
  flex-basis: 37.5%;
}
.page-flyerpage .type-content-flier .footer {
  max-width: 62.5%;
  border-right: solid 24px #0f356c;
}
.page-flyerpage .type-content-flier > .has-centerColumn > .centerColumn,
.page-flyerpage .type-content-flier > .has-rightColumn > .rightColumn,
.page-flyerpage .footer {
  padding-right: 32px !important;
  padding-left: 32px !important;
}
.page-flyerpage #pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn .centerColumn > .column-contents {
  padding-left: 0px;
  padding-right: 0px;
}
.page-flyerpage .offScreen {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.type-content-flier .offScreen {
  display: none;
}
.type-content-flier .has-header {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.type-content-flier .has-header img {
  width: 370px;
}
.type-content-flier h1 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: 15px;
}
.type-content-flier h2 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.type-content-flier .cover-image {
  margin-bottom: 30px;
}
.type-content-flier > .has-centerColumn {
  display: flex !important;
  flex-grow: 0;
}
.type-content-flier > .has-centerColumn.has-rightColumn > .centerColumn .centerColumn {
  padding-right: none;
}
.type-content-flier > .has-centerColumn > .rightColumn .centerColumn {
  padding-right: 0 !important;
}
.type-content-flier > .has-footer {
  display: block;
}
.type-content-flier .footer {
  text-align: center;
  page-break-inside: avoid;
  position: unset !important;
  top: unset !important;
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.type-content-flier .footer p, .type-content-flier .footer div {
  margin-bottom: 0;
  font-size: 12px;
}
.type-content-flier .footer p {
  font-size: 14px;
}
.type-content-flier .footer .content-box-body div:last-child {
  font-size: 16px;
}
.type-content-flier .component-editorial-content .content-box-header {
  padding-left: 0px;
  padding-top: 0px;
}
.type-content-flier .productformats-list {
  padding-left: 16px;
}
.type-content-flier > .column-group.has-footer {
  margin-top: -1px;
}

#progressivedisplay {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.component-related-content .component-content-contributors {
  margin-bottom: 15px;
}
.component-related-content dl dt {
  margin-right: 8px;
}
.component-related-content dl dl {
  display: inline;
}
.component-related-content dl ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.component-related-content dl ol li {
  display: inline;
}
.component-related-content dl ol li a:after {
  content: ", ";
  display: inline-block;
}
.component-related-content dl ol li:last-child a:after {
  display: none;
}
.component-related-content .contentItem {
  background: none;
  border-width: 0;
  margin-bottom: 40px;
  overflow: hidden;
  padding-left: 0px;
  padding-right: 0px;
}
.component-related-content .contentItem:last-child {
  margin-bottom: 0;
}
.component-related-content .contentItem h2 {
  margin-top: 0;
}
.component-related-content .contentItem.hasCover > * {
  margin-left: 100px;
}
.component-related-content .contentItem.hasCover div.component-cover-image {
  width: 80px;
  float: left;
  margin-left: 0;
}

.searchModule button.search-button span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.searchModule .radio-group {
  padding: 8px 10px;
}
.searchModule .radio-group label {
  margin-right: 12px;
}
.searchModule #refineTaxonomy {
  display: none;
}

.column-controls + .column-contents .component-quick-search-form {
  margin: 0 25px 8px;
}
.column-controls + .column-contents .ui-accordion-content .component-quick-search-form {
  margin-left: 0px;
  margin-right: 0px;
}
.column-controls + .column-contents .searchModule {
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
}
.column-controls + .column-contents .searchModule .form-row {
  position: relative;
}

.component-Jump {
  margin: 0 25px 8px;
}
.component-Jump .c-FormControl {
  width: 100%;
}
.component-Jump .c-FormControl.w-33 {
  max-width: 100px;
}

.advanced-search .advanced-search-widget {
  padding: 0;
}
.advanced-search .advanced-search-widget .moduleDetail {
  margin-left: 0;
  margin-bottom: 15px;
}
.advanced-search .advanced-search-widget .fieldset.form-row {
  margin-bottom: 10px;
}
.advanced-search .advanced-search-widget select.searchtype {
  float: left;
  width: auto;
}
.advanced-search .advanced-search-widget input[type=text] {
  width: calc(70% - 10px);
  margin-left: 10px;
}
.advanced-search .advanced-search-widget .buttons {
  margin-left: 0;
}

@media screen and (min-width: 1200px) {
  .column-controls + .column-contents .component:first-child .searchModule {
    padding: 15px 0 0;
  }
}
.ie-11 .advanced-search fieldset.buttons .c-Button, .ie-11 .advanced-search fieldset.buttons .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .ie-11 .advanced-search fieldset.buttons a, .ie-11 .advanced-search fieldset.buttons .goog-te-gadget-simple.goog-te-gadget-simple {
  display: inline;
}

.page-page #pageContent ul, .page-page #pageContent ol {
  list-style: disc;
}

[data-role=shareLinkCopyConfirmation] {
  display: block;
  position: absolute;
  bottom: 50px;
  background-color: #bebebe;
  color: black;
  width: 100%;
  border-radius: 3px;
  text-align: center;
  padding-top: 5px;
}
[data-role=shareLinkCopyConfirmation]::after {
  transform: rotate(45deg);
  position: relative;
  display: block;
  background-color: #bebebe;
  height: 10px;
  bottom: -5px;
  width: 10px;
  margin: auto;
  content: "";
}

.fade-out-supported {
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.fade-out {
  opacity: 0;
}

.fade-out-hidden {
  z-index: -1;
}

.position-relative {
  position: relative;
}

.width-fit-content {
  width: fit-content;
}

body.page-sruhelp {
  max-width: 1440px;
  /* Max width taken from other places in our sites */
}
body.page-sruhelp .help-table {
  border-collapse: collapse;
  border: 2px solid black;
  background-color: white;
}
body.page-sruhelp .help-table td, body.page-sruhelp .help-table th {
  border: 2px solid black;
}
body.page-sruhelp .text-code {
  background-color: rgba(1, 1, 1, 0.09);
  /* Ensures a darker background on non-white backgrounds */
  display: block;
  overflow: auto;
  padding: 8px;
  /* .p-8 */
}
body.page-sruhelp .text-code pre {
  white-space: pre;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: 0;
}

.ui-accordion .ui-accordion-header {
  display: flex !important;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  cursor: pointer;
}
.ui-accordion .ui-accordion-header .c-Icon::after, .ui-accordion .ui-accordion-header .goog-te-gadget-simple::after, .ui-accordion .ui-accordion-header .ui-accordion-header::after {
  margin-left: auto;
}
.ui-accordion .ui-accordion-content {
  padding: 16px 32px;
}
.ui-accordion .ui-accordion-content--no-padding {
  padding: 0 0;
}
.ui-accordion .ui-accordion-header .c-Button, .ui-accordion .ui-accordion-header .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .ui-accordion .ui-accordion-header a, .ui-accordion .ui-accordion-header .goog-te-gadget-simple.goog-te-gadget-simple {
  width: 100%;
  justify-content: left;
}

div.dropdown-button {
  position: relative;
}
div.dropdown-button a.dropdown-control {
  text-align: left;
  padding: 7px 10px 5px 14px;
  margin: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
div.dropdown-button a.dropdown-control:not(.c-Select--native):after {
  position: relative;
  transform: unset;
  top: unset;
  left: unset;
  opacity: 1;
  height: 1em;
  width: 1em;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-family: "pf2-icons", "FontAwesome", "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  background: transparent;
  user-select: none;
  overflow: hidden;
  color: inherit;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  content: "";
  float: right;
  position: relative;
}
div.dropdown-button .dropdown-control-container {
  padding-bottom: 0;
}
div.dropdown-button div.dropdown-menu {
  display: none;
}
div.dropdown-button div.dropdown-menu ul {
  width: 100%;
  z-index: 3;
}
div.dropdown-button div.dropdown-menu ul li.volume {
  font-weight: bold;
}
div.dropdown-button div.dropdown-menu ul li.dropdown-menu-header {
  margin-bottom: 0;
  text-align: left;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}
div.dropdown-button div.dropdown-menu ul li.dropdown-menu-item {
  margin-bottom: 0;
}
div.dropdown-button.open a.dropdown-control {
  box-shadow: none;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
div.dropdown-button.open a.dropdown-control:not(.c-Select--native):after {
  content: "";
}
div.dropdown-button.open div.dropdown-menu {
  display: block;
}
div.dropdown-button.open div.dropdown-menu ul {
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

div.dropdown-button:not(.no-jquery-ui) div.dropdown-menu ul {
  max-width: 550px;
}
div.dropdown-button:not(.no-jquery-ui) div.dropdown-menu ul li {
  width: 100%;
  display: block;
  margin-right: 0;
  margin-bottom: 20px;
  vertical-align: top;
  padding: 6px 7px 7px;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
div.dropdown-button:not(.no-jquery-ui) div.dropdown-menu ul li > div {
  padding: 0;
  margin: 0;
}

div[data-tasktype=citation-export] div.dropdown-button a.dropdown-control {
  padding: 7px 10px 5px 14px;
}
div[data-tasktype=citation-export] div.dropdown-button a.dropdown-control:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  content: "";
  margin-right: 8px;
  font-size: 16px;
  position: relative;
  top: 1px;
}
div[data-tasktype=citation-export] div.dropdown-button a.dropdown-control:after {
  margin-left: 20px;
}

.component-volume-issue-selector div.dropdown-button.open div.dropdown-menu ul li {
  margin-bottom: 0;
}
.component-volume-issue-selector div.dropdown-button.open div.dropdown-menu ul li.dropdown-parent {
  cursor: pointer;
}
.component-volume-issue-selector div.dropdown-button.open div.dropdown-menu ul li.dropdown-parent:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  content: "";
  font-size: 16px;
  margin-left: 8px;
}
.component-volume-issue-selector div.dropdown-button.open div.dropdown-menu ul li.dropdown-child {
  display: none;
}
.component-volume-issue-selector div.dropdown-button.open div.dropdown-menu ul li.dropdown-orphan {
  display: list-item;
}
.component-volume-issue-selector div.dropdown-button.open div.dropdown-menu ul li.open.dropdown-parent:after {
  content: "";
}

@media screen and (min-width: 767px) {
  div[data-tasktype=citation-export] div.dropdown-button.open div.dropdown-menu ul {
    width: 550px;
  }
  div[data-tasktype=citation-export] div.dropdown-button.open div.dropdown-menu ul li {
    width: 33.333333%;
    display: inline-block;
    margin-right: -4px;
    padding-left: 5px;
    margin-bottom: 0;
  }
  div[data-tasktype=citation-export] div.dropdown-button.open div.dropdown-menu ul li:first-child {
    padding-left: 15px;
  }
  div[data-tasktype=citation-export] div.dropdown-button.open div.dropdown-menu ul li:last-child {
    padding-right: 15px;
  }
}
/*----
    Homepage subject icon size
    ----*/
.component-taxonomy-list .grid-row, .component-featured-content-list .grid-row {
  display: block;
}
.component-taxonomy-list .grid .grid-item, .component-featured-content-list .grid .grid-item {
  margin: 0 0 50px -4px;
  vertical-align: top;
  width: 50%;
  padding: 0 15px;
}
.component-taxonomy-list .grid .grid-item:nth-child(even), .component-featured-content-list .grid .grid-item:nth-child(even) {
  border-left-width: 1px;
  border-left-style: solid;
}
.component-taxonomy-list .grid img, .component-featured-content-list .grid img {
  max-width: 128px;
}
.component-taxonomy-list .grid a.button.c-Icon.c-Icon--after:after, .component-taxonomy-list .grid .ui-accordion a.button.c-Icon--after.ui-accordion-header:after, .ui-accordion .component-taxonomy-list .grid a.button.c-Icon--after.ui-accordion-header:after, .component-taxonomy-list .grid a.button.goog-te-gadget-simple:after, .component-featured-content-list .grid a.button.c-Icon.c-Icon--after:after, .component-featured-content-list .grid .ui-accordion a.button.c-Icon--after.ui-accordion-header:after, .ui-accordion .component-featured-content-list .grid a.button.c-Icon--after.ui-accordion-header:after, .component-featured-content-list .grid a.button.goog-te-gadget-simple:after {
  color: white;
  vertical-align: bottom;
}
.component-taxonomy-list .grid .taxonomy-list-item img, .component-featured-content-list .grid .taxonomy-list-item img {
  max-height: 128px;
}
.component-taxonomy-list .grid .taxonomy-list-item > a, .component-featured-content-list .grid .taxonomy-list-item > a {
  text-decoration: none;
  display: inline-block;
}
.component-taxonomy-list .grid span.label, .component-featured-content-list .grid span.label {
  max-width: 160px;
  margin: 0 auto;
}

.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more {
  margin-top: 8px;
}
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .top-level-nodes {
  display: flex;
  flex-wrap: wrap;
}
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-1 {
  width: 30%;
  margin: 32px 16px;
}
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-1 > a.taxonomyNode {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-1 > a.taxonomyNode .node-count {
  display: none;
}
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-1 > ul {
  margin-left: 0px;
  padding-top: 16px;
}
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > ul {
  padding-top: 12px;
}
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li {
  list-style: none;
}
.page-taxonomy .content-box-header {
  display: none;
}

@media screen and (min-width: 767px) {
  .component-taxonomy-list .grid-row, .component-featured-content-list .grid-row {
    display: flex;
  }
  .component-taxonomy-list .grid .grid-item, .component-featured-content-list .grid .grid-item {
    width: 25%;
    margin-right: 0;
    border-left-width: 1px;
    border-left-style: solid;
  }
  .component-taxonomy-list .grid .grid-item:first-child, .component-featured-content-list .grid .grid-item:first-child {
    border-left: 0;
  }
}
.tippy-popper .tippy-content {
  font-family: "Noto Sans", sans-serif;
}

.has-tool-bar .ui-accordion-content .component-table-of-contents .tree.collapsible-tree {
  margin: 0;
}

.component-table-of-contents li.has-access-icon > .ico-access {
  position: absolute;
  display: block;
}
.component-table-of-contents li.text-caption.has-access-icon > .ico-access,
.component-table-of-contents li.text-caption a.toggle:after,
.component-table-of-contents li.text-caption a.toggle-link:after {
  line-height: 1.25rem;
}
.component-table-of-contents li.text-body1.has-access-icon > .ico-access, .component-table-of-contents .Menu li.has-access-icon.ListItem > .ico-access, .Menu .component-table-of-contents li.has-access-icon.ListItem > .ico-access,
.component-table-of-contents li.text-body1 a.toggle:after,
.component-table-of-contents .Menu li.ListItem a.toggle:after,
.Menu .component-table-of-contents li.ListItem a.toggle:after,
.component-table-of-contents li.text-body1 a.toggle-link:after,
.component-table-of-contents .Menu li.ListItem a.toggle-link:after,
.Menu .component-table-of-contents li.ListItem a.toggle-link:after {
  line-height: 1.5rem;
}
.component-table-of-contents li.text-body2.has-access-icon > .ico-access,
.component-table-of-contents li.text-body2 a.toggle:after,
.component-table-of-contents li.text-body2 a.toggle-link:after {
  line-height: 1.5rem;
}
.component-table-of-contents li.text-subheading.has-access-icon > .ico-access,
.component-table-of-contents li.text-subheading a.toggle:after,
.component-table-of-contents li.text-subheading a.toggle-link:after {
  line-height: 1.5rem;
}
.component-table-of-contents li.text-title.has-access-icon > .ico-access,
.component-table-of-contents li.text-title a.toggle:after,
.component-table-of-contents li.text-title a.toggle-link:after {
  line-height: 1.5rem;
}
.component-table-of-contents li.text-headline.has-access-icon > .ico-access,
.component-table-of-contents li.text-headline a.toggle:after,
.component-table-of-contents li.text-headline a.toggle-link:after {
  line-height: 2rem;
}
.component-table-of-contents li.text-display1.has-access-icon > .ico-access,
.component-table-of-contents li.text-display1 a.toggle:after,
.component-table-of-contents li.text-display1 a.toggle-link:after {
  line-height: 2.125rem;
}
.component-table-of-contents li.text-display2.has-access-icon > .ico-access,
.component-table-of-contents li.text-display2 a.toggle:after,
.component-table-of-contents li.text-display2 a.toggle-link:after {
  line-height: 2.125rem;
}
.component-table-of-contents li.text-display3.has-access-icon > .ico-access,
.component-table-of-contents li.text-display3 a.toggle:after,
.component-table-of-contents li.text-display3 a.toggle-link:after {
  line-height: 4.5rem;
}
.component-table-of-contents li.text-display4.has-access-icon > .ico-access,
.component-table-of-contents li.text-display4 a.toggle:after,
.component-table-of-contents li.text-display4 a.toggle-link:after {
  line-height: 4.5rem;
}
.component-table-of-contents .toc-large-display .accessIcon {
  font-size: 1.125rem;
}
.component-table-of-contents .toc-medium-display .accessIcon {
  font-size: 1.125rem;
}
.component-table-of-contents .toc-medium-display .toggle,
.component-table-of-contents .toc-medium-display .togglie-link {
  font-size: 18px;
}
.component-table-of-contents span.c-IconButton--blank {
  opacity: 0;
  cursor: default;
}

.book-toc li, .issue-toc li, .bookseries-toc li, .package-toc li {
  position: relative;
  list-style: none;
}
.book-toc div.subTitle, .issue-toc div.subTitle, .bookseries-toc div.subTitle, .package-toc div.subTitle {
  font-weight: bold;
}

.contentPage #toc {
  margin-bottom: 32px;
  padding-top: 24px;
}
.contentPage #toc .c-List__items {
  margin: 0;
  padding: 0;
}
.contentPage #toc .c-List__items .c-List__item .c-Ripple {
  transform: translate3d(-18px, 0, 0) !important;
}
.contentPage #toc .c-List__items .c-List__item a.toggle {
  z-index: 2;
  position: absolute;
  left: -8px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  transform: translate3d(-50%, 0, 0);
}
.contentPage #toc .c-List__items .c-List__item a.toggle span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}

ul.collapsible-tree li {
  list-style: none;
  position: relative;
}
ul.collapsible-tree li a.toggle-link {
  display: none;
}
ul.collapsible-tree li a.toggle {
  color: black;
  cursor: pointer;
}
ul.collapsible-tree li a.toggle.placeholder {
  color: transparent;
  cursor: default;
}
ul.collapsible-tree li a.toggle span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
ul.collapsible-tree li .toggle-container {
  width: 16px;
}
ul.collapsible-tree li .toggle-container a.toggle {
  position: relative;
}
ul.collapsible-tree li ul {
  margin-bottom: 0;
}
ul.collapsible-tree li ul li:last-child {
  margin-bottom: 0;
}
ul.collapsible-tree li ul li:last-child:after {
  display: none;
}
ul.collapsible-tree li.type-issue div.label .ico-access {
  margin-top: 5px;
}
ul.collapsible-tree li.ajax-node-opener > ul {
  display: none;
}
ul.collapsible-tree li.ajax-node-opener .shut {
  margin-bottom: 0;
}
ul.collapsible-tree li.open {
  margin-bottom: 0;
}
ul.collapsible-tree li.open.shut a.toggle-link {
  display: none;
}
ul.collapsible-tree li.open > ul {
  display: block;
}
ul.collapsible-tree li.shut ul {
  display: none;
}
ul.collapsible-tree .header-container:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

ul.tree li a.toggle.placeholder {
  color: transparent;
  cursor: default;
}

@media screen and (min-width: 1200px) {
  .contentPage #toc {
    padding-top: 35px;
  }
}
.component-volume-issue-selector .dropdown-menu {
  position: absolute;
  width: 100%;
  z-index: 7;
}
.component-volume-issue-selector div.dropdown-button div.dropdown-menu ul.collapsible-tree ul.ajax-zone {
  max-height: none;
}
.component-volume-issue-selector div.dropdown-button.open div.dropdown-menu ul.collapsible-tree {
  cursor: pointer;
}
.component-volume-issue-selector .dropdown-control-container.Input.Input--standard .dropdown-control:after {
  content: "";
  content: unset;
}
.component-volume-issue-selector .label .c-Button--link.c-Button--primary:hover, .component-volume-issue-selector .label .component-content-summary :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle), .component-content-summary .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .component-content-html :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.component-content-html .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-page #pageContent :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.page-page #pageContent .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-form #mainContent :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.page-form #mainContent .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.c-Button--primary:hover:not(.pdf-download):not(.toggle), .component-volume-issue-selector .label [class^=content-contributor-] .contributor-line a.c-Button--primary:hover, [class^=content-contributor-] .contributor-line .component-volume-issue-selector .label a.c-Button--primary:hover, .component-volume-issue-selector .label .c-Button--link.goog-te-gadget-simple:hover, .component-volume-issue-selector .label .component-content-summary :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle), .component-content-summary .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .component-content-html :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.component-content-html .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-page #pageContent :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.page-page #pageContent .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-form #mainContent :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.page-form #mainContent .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body .component-volume-issue-selector .label :not(.t-data-grid-pager) > a.goog-te-gadget-simple:hover:not(.pdf-download):not(.toggle), .component-volume-issue-selector .label [class^=content-contributor-] .contributor-line a.goog-te-gadget-simple:hover, [class^=content-contributor-] .contributor-line .component-volume-issue-selector .label a.goog-te-gadget-simple:hover,
.component-volume-issue-selector .label .page-page #pageContent [data-rhoton-links-visible=true] :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.page-page #pageContent [data-rhoton-links-visible=true] .component-volume-issue-selector .label :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label [data-rhoton-links-visible=true] .page-page #pageContent :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
[data-rhoton-links-visible=true] .page-page #pageContent .component-volume-issue-selector .label :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-form #mainContent [data-rhoton-links-visible=true] :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.page-form #mainContent [data-rhoton-links-visible=true] .component-volume-issue-selector .label :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label [data-rhoton-links-visible=true] .page-form #mainContent :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
[data-rhoton-links-visible=true] .page-form #mainContent .component-volume-issue-selector .label :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item [data-rhoton-links-visible=true] :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item [data-rhoton-links-visible=true] .component-volume-issue-selector .label :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label [data-rhoton-links-visible=true] .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
[data-rhoton-links-visible=true] .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .component-volume-issue-selector .label :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .component-editorial-content .content-page .popover-body [data-rhoton-links-visible=true] :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body [data-rhoton-links-visible=true] .component-volume-issue-selector .label :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label [data-rhoton-links-visible=true] .component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle),
[data-rhoton-links-visible=true] .component-editorial-content .content-page .popover-body .component-volume-issue-selector .label :not(.t-data-grid-pager) > a[data-rhoton]:hover:not(.pdf-download):not(.toggle), .component-volume-issue-selector .label [data-rhoton-links-visible=true] [data-rhoton]:hover, [data-rhoton-links-visible=true] .component-volume-issue-selector .label [data-rhoton]:hover, .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree [data-rhoton-links-visible=true] .level-2:not(.leaf-node) > a.taxonomyNode[data-rhoton]:hover, .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a.c-Button--link:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label a.c-Button--link:hover, .component-volume-issue-selector .label .component-content-summary .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle), .component-content-summary .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle), .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-content-summary :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-content-summary .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .component-content-html .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-content-html .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-content-html :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-content-html .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-page #pageContent .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-page #pageContent .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-page #pageContent :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-page #pageContent .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-form #mainContent .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-form #mainContent .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-form #mainContent :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .page-form #mainContent .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .component-editorial-content .content-page .popover-body .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-editorial-content .content-page .popover-body .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-editorial-content .content-page .popover-body :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle),
.page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-editorial-content .content-page .popover-body .component-volume-issue-selector .label :not(.t-data-grid-pager) > a:hover:not(.pdf-download):not(.toggle), .component-volume-issue-selector .label [class^=content-contributor-] .contributor-line .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a:hover, [class^=content-contributor-] .contributor-line .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label a:hover, .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more [class^=content-contributor-] .contributor-line a:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more [class^=content-contributor-] .contributor-line .component-volume-issue-selector .label a:hover, .component-volume-issue-selector .label [data-rhoton-links-visible=true] .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a[data-rhoton]:hover, [data-rhoton-links-visible=true] .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .component-volume-issue-selector .label a[data-rhoton]:hover, .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more [data-rhoton-links-visible=true] a[data-rhoton]:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more [data-rhoton-links-visible=true] .component-volume-issue-selector .label a[data-rhoton]:hover, .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .level-2:not(.leaf-node) > a.taxonomyNode:hover, .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .component-content-summary .level-2:not(.leaf-node):not(.t-data-grid-pager) > a.taxonomyNode:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .component-content-html .level-2:not(.leaf-node):not(.t-data-grid-pager) > a.taxonomyNode:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .page-page #pageContent .level-2:not(.leaf-node):not(.t-data-grid-pager) > a.taxonomyNode:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .page-form #mainContent .level-2:not(.leaf-node):not(.t-data-grid-pager) > a.taxonomyNode:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .content-page .configurable-layout > .layout > .has-centerColumn > .centerColumn .ui-tabs-panel .component-content-item .level-2:not(.leaf-node):not(.t-data-grid-pager) > a.taxonomyNode:hover:not(.pdf-download):not(.toggle),
.component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .component-editorial-content .content-page .popover-body .level-2:not(.leaf-node):not(.t-data-grid-pager) > a.taxonomyNode:hover:not(.pdf-download):not(.toggle), .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree [class^=content-contributor-] .contributor-line .level-2:not(.leaf-node) > a.taxonomyNode:hover, .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .level-2:not(.leaf-node) > a.taxonomyNode:hover, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree .component-volume-issue-selector .label .level-2:not(.leaf-node) > a.taxonomyNode:hover, .component-volume-issue-selector .label .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) a:hover:not(.truncate-show-more), .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree li:not(.level-1) .component-volume-issue-selector .label a:hover:not(.truncate-show-more) {
  background-color: initial;
  background-color: unset;
}
.component-volume-issue-selector li.ajax-node-opener.type-volume a.toggle {
  vertical-align: middle;
  padding: 0;
  margin-left: 1em;
}
.component-volume-issue-selector .dropdown-button:hover .Input.Input--standard:after {
  transform: scaleX(1);
}
.component-volume-issue-selector ul.collapsible-tree {
  background-color: white;
}
.component-volume-issue-selector li {
  padding-top: 0%;
  padding-bottom: 0%;
  padding-right: 0%;
  padding-left: 0%;
}
.component-volume-issue-selector li .header-container,
.component-volume-issue-selector li > .label > a,
.component-volume-issue-selector li > .label > span {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 16px;
}
.component-volume-issue-selector li > .label > a,
.component-volume-issue-selector li > .label > span {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  min-height: 48px;
}
.component-volume-issue-selector li.type-issue > .header-container, .component-volume-issue-selector li.type-volume > .header-container {
  cursor: pointer;
  transition: background-color 150ms cubic-bezier(0.4, 0, 1, 1);
  background-color: white;
}
.component-volume-issue-selector li.type-issue > .header-container:hover, .component-volume-issue-selector li.type-volume > .header-container:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.08);
}
.component-volume-issue-selector li .label > a,
.component-volume-issue-selector li .label > span {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  color: black;
  letter-spacing: 0.009375em;
  line-height: 1.5rem;
}
.component-volume-issue-selector li.ajax-node-opener ul.ajax-zone li > .header-container .label > a,
.component-volume-issue-selector li.ajax-node-opener ul.ajax-zone li > .header-container .label > span {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  color: black;
  background-color: inherit;
}

/* Tapestry Error Messages (Default Styling) */
form #notifications li {
  padding: 0.5em 1em;
  background-color: #f5f5f5;
}

div.t-error {
  margin-bottom: 1em;
  padding: 0.5em 1em;
  background-color: #f5f5f5;
  color: #be2228;
  overflow: hidden;
  line-height: 1.3;
}
div.t-error div {
  margin-bottom: 0.333em;
  color: #be2228;
  font-weight: 600;
}
.locus-search-form div.t-error div {
  display: none;
}
div.t-error li {
  margin-bottom: 0.333em;
}
.modalWindow div.t-error ul {
  margin: 0 1em 1em 2em;
}
.modalWindow div.t-error li {
  list-style: disc outside none;
}

img.t-error-icon {
  display: none;
}

.t-error-popup {
  display: block !important;
  margin: 69px 0 0 24px;
  padding: 0.25em 0;
  height: auto !important;
  /* override inline styles */
  color: #f44336;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 11px !important;
}
.t-error-popup:hover {
  text-decoration: underline;
  cursor: pointer;
}

.page-advancedsearchpage #mainContent {
  max-width: 700px;
}
.page-advancedsearchpage .multiSearch .form-row {
  position: relative;
}
.page-advancedsearchpage .multiSearch .example {
  float: left;
  clear: left;
  margin-top: -18px;
  position: relative;
  top: 7px;
  margin-left: 155px;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}

@media screen and (min-width: 1200px) {
  .page-advancedsearchpage #pageBody {
    display: block;
  }
  .page-advancedsearchpage #pageBody #columnOne {
    display: none;
  }
}
.cart .data-grid, .checkout .data-grid {
  width: 100%;
}
.cart table thead th,
.cart table thead td, .checkout table thead th,
.checkout table thead td {
  font-family: "Noto Sans", sans-serif;
}
.cart table tr, .checkout table tr {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.075);
}
.cart td, .checkout td {
  font-family: "Noto Sans", sans-serif;
  padding: 16px 12px 16px 0;
}
.cart .cover-image, .checkout .cover-image {
  max-width: 100px;
  float: left;
  margin-right: 16px;
}
.cart input[type=number], .checkout input[type=number] {
  width: 70px;
  display: inline-block;
  padding: 8px 4px;
}
.cart input[type=submit], .checkout input[type=submit] {
  margin-top: 0;
}

.has-access-warning:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  content: "";
  display: inline;
  margin-right: 4px;
  font-size: 14px;
}

ol.ecommerce-checkout-breadcrumb {
  margin-left: 0;
}
ol.ecommerce-checkout-breadcrumb li {
  display: inline-block;
  list-style: none;
}
ol.ecommerce-checkout-breadcrumb li:after {
  content: "/";
  margin: 0 4px 0 8px;
  display: inline-block;
}
ol.ecommerce-checkout-breadcrumb li:last-of-type:after {
  display: none;
}
ol.ecommerce-checkout-breadcrumb li.ecommerce-checkout-step-current {
  font-weight: 700;
}

.checkout h1 + h2 {
  margin-top: 0;
}
.checkout #pageBody {
  display: block;
}
.checkout div.t-beaneditor-row {
  margin-bottom: 16px;
}
.checkout .checkboxRow {
  margin-bottom: 16px;
}

.ecommerce-totals {
  text-align: right;
  list-style: none;
  margin-top: 16px;
}
.ecommerce-totals span.label {
  font-weight: bold;
}

.checkout .ecommerce-checkout-nav .checkout-agree-and-continue {
  float: right;
}
.checkout span#termsAndConditions {
  margin-right: 12px;
  line-height: 37px;
  display: inline-block;
}
.checkout button.checkout-submit-order {
  margin-top: 0;
}

@media screen and (min-width: 767px) {
  .checkout div.checkoutSection {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    margin-right: -4px;
  }
  .checkout #billingAndShipping > div {
    display: inline-block;
    width: 300px;
  }
}
.citationText {
  margin-bottom: 4px;
}

ul.citationActions {
  margin-left: -4px;
  margin-top: 4px;
  margin-bottom: 0;
  list-style: none;
}
ul.citationActions li {
  display: inline-block;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgba(0, 0, 0, 0.075);
  padding-right: 12px;
  padding-left: 12px;
}
ul.citationActions li a {
  display: block;
  padding: 2px 5px;
}
ul.citationActions li:first-child {
  padding-left: 0;
}
ul.citationActions li:last-child {
  border-right: none;
  padding-right: 0;
}
.content-references-list ul.citationActions {
  margin-bottom: 0;
}

.ico-access {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  cursor: default;
}
.ico-access:focus > *, .ico-access:hover > * {
  visibility: visible;
}
.contentItem .ico-access, .summary .ico-access {
  float: right;
}
.ico-access .license-link {
  display: none;
}
.summary .ico-access, .layout.type-index-card .ico-access {
  margin: 0px 0px 8px 0px;
}
.summary .ico-access:before, .layout.type-index-card .ico-access:before {
  font-size: 26px;
}
.summary .ico-access > span, .layout.type-index-card .ico-access > span {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
  position: relative;
  right: 0;
  top: 0;
  margin-left: 8px;
  padding: 0 !important;
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.summary .ico-access .license-link, .layout.type-index-card .ico-access .license-link {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
}
@media (min-width: 1152px) {
  .summary .ico-access .license-link, .layout.type-index-card .ico-access .license-link {
    margin-left: 8px;
  }
}
.summary .ico-access .license-link-open span, .layout.type-index-card .ico-access .license-link-open span {
  height: 15px;
  width: 15px;
  background: url(../img/cc.logo.png) no-repeat;
  clip: auto;
  position: relative;
  display: inline-block;
  margin-bottom: -3px;
}
.summary .ico-access .license-link.licence-cc-by span, .layout.type-index-card .ico-access .license-link.licence-cc-by span {
  background: url(../img/cc/by.svg);
  background-size: 88px 31px;
  width: 88px;
  height: 31px;
}
.summary .ico-access .license-link.licence-cc-by-sa span, .layout.type-index-card .ico-access .license-link.licence-cc-by-sa span {
  background: url(../img/cc/by-sa.svg);
  background-size: 88px 31px;
  width: 88px;
  height: 31px;
}
.summary .ico-access .license-link.licence-cc-by-nd span, .layout.type-index-card .ico-access .license-link.licence-cc-by-nd span {
  background: url(../img/cc/by-nd.svg);
  background-size: 88px 31px;
  width: 88px;
  height: 31px;
}
.summary .ico-access .license-link.licence-cc-by-nc span, .layout.type-index-card .ico-access .license-link.licence-cc-by-nc span {
  background: url(../img/cc/by-nc.svg);
  background-size: 88px 31px;
  width: 88px;
  height: 31px;
}
.summary .ico-access .license-link.licence-cc-by-nc-sa span, .layout.type-index-card .ico-access .license-link.licence-cc-by-nc-sa span {
  background: url(../img/cc/by-nc-sa.svg);
  background-size: 88px 31px;
  width: 88px;
  height: 31px;
}
.summary .ico-access .license-link.licence-cc-by-nc-nd span, .layout.type-index-card .ico-access .license-link.licence-cc-by-nc-nd span {
  background: url(../img/cc/by-nc-nd.svg);
  background-size: 88px 31px;
  width: 88px;
  height: 31px;
}
.ico-access > span {
  /*@include pf-pos-onscreen;*/
  right: -7.8em;
  padding: 0.5em !important;
}
.ico-access > span:before, .ico-access > span:after {
  display: none;
}

@media screen and (max-width: 500px) {
  .indexCard .summary .ico-access {
    margin-right: 40px;
  }
}
.page-contentpage .pagination, .page-content .pagination {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}
.page-contentpage .pagination a, .page-contentpage .pagination span, .page-content .pagination a, .page-content .pagination span {
  display: inline-block;
  padding: 4px;
}
.page-contentpage .pagination a, .page-content .pagination a {
  text-decoration: none;
  color: #007f92;
}
.page-contentpage .pagination .current, .page-content .pagination .current {
  color: black;
}

[class^=content-contributor-] .affiliation-list {
  padding-top: 12px;
}

[class^=content-contributor-].single-line {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
[class^=content-contributor-].single-line .contributor-line {
  margin-right: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
[class^=content-contributor-].single-line .contributor-line > a, [class^=content-contributor-].single-line .contributor-line > span {
  position: relative;
  display: inline;
}
[class^=content-contributor-].single-line > span {
  top: -8px;
  flex: 0 0;
  flex-basis: auto;
  align-self: flex-start;
  padding: 0 16px;
  font-size: 0.875rem !important;
}
[class^=content-contributor-].single-line > span:after {
  padding-left: 4px;
}
[class^=content-contributor-].single-line > span.less {
  display: none;
}
[class^=content-contributor-].single-line .affiliation-list {
  display: none;
  flex: 0 1 100%;
}
[class^=content-contributor-].single-line.expanded .contributor-line {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
[class^=content-contributor-].single-line.expanded .contributor-line > a {
  display: inline-block;
}
[class^=content-contributor-].single-line.expanded span.more {
  display: none;
}
[class^=content-contributor-].single-line.expanded span.less {
  display: flex;
}
[class^=content-contributor-].single-line.expanded .affiliation-list {
  display: block;
}
[class^=content-contributor-].single-line .contributor-note {
  display: none;
}
[class^=content-contributor-].single-line.expanded .contributor-note {
  display: block;
  padding-top: 10px;
}

.orcid {
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 4px;
  background-image: url(../img/orcid_16x16.png);
  background-repeat: no-repeat;
}
.orcid span {
  display: none;
}

.container-latest h2 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  margin: 0 0 12px !important;
}
.container-latest h3.type {
  margin-top: 12px;
}
.container-latest dl.pages {
  margin: 0 0 16px;
}
.container-latest dl.pages dt, .container-latest dl.pages dd {
  display: inline-block;
}

.component-recent-news h2 {
  text-align: center;
}

.component-content-subjects {
  width: 100%;
}

.container-volumeissues h2 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  margin: 0 0 12px !important;
}

div.content-figures-list ul.no-bullets {
  list-style: none;
  margin-left: 0;
  margin-rght: 0;
}
div.content-figures-list img {
  max-width: 100%;
}
div.content-figures-list ul {
  margin: 0px;
}
div.content-figures-list .ListItem {
  display: block;
}
div.content-figures-list .ListItem--button figure {
  border: none;
}

figure {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.075);
  padding: 16px;
  margin-bottom: 24px;
}
figure::after {
  clear: both;
  content: "";
  display: table;
}
figure .glencoe-video-stub:empty {
  border-style: ridge;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.075);
  content: url(../img/icons/default-video.svg);
  width: 150px;
  height: 150px;
  padding: 16px;
}
figure a.gallery-link, figure .download-figure a {
  margin-top: 12px;
  float: right;
}
figure a.gallery-link:after, figure .download-figure a:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  content: "";
  margin-left: 8px;
  font-size: 16px;
}
figure .download-figure {
  margin-bottom: 0;
}
figure .download-figure a {
  float: none;
}
figure .download-figure a:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  content: "";
  padding-right: 5px;
}
figure .download-figure a:after {
  display: none;
}
figure .download-figure a:not([href]) {
  display: none;
}
figure p {
  margin-bottom: 12px;
}

figcaption {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}
figcaption ext-link {
  word-wrap: break-word;
  word-break: break-all;
}

/*-- Impact Factor / External Indexers --*/
.afterColumns .container-impactfactor {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(0, 0, 0, 0.075);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.075);
  position: relative;
  margin: 0-12px 16px;
  padding: 12px;
}
.afterColumns .container-impactfactor > div::after {
  clear: both;
  content: "";
  display: table;
}
.afterColumns .container-impactfactor:after {
  content: " ";
  display: block;
  height: 17px;
  width: 100%;
  bottom: -18px;
  position: absolute;
  left: 0;
}
.afterColumns .container-impactfactor dl {
  margin-bottom: 0;
  float: left;
}
.afterColumns .container-impactfactor dl dt {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.afterColumns .externalindexers {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.afterColumns .externalindexers dt {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.afterColumns .editorialmanager {
  margin: 0;
  padding: 0;
}
.afterColumns .editorialmanager dt {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  /*padding: 0;
  border: 0;*/
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.afterColumns .component-external-links {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(0, 0, 0, 0.075);
  padding-right: 24px;
  padding-left: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.afterColumns .component-external-links::after {
  clear: both;
  content: "";
  display: table;
}
.afterColumns .component-external-links div.column {
  width: 100%;
  padding-right: 0;
  display: block;
}
.afterColumns .component-external-links:after {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(0, 0, 0, 0.075);
  content: " ";
  display: block;
  height: 17px;
  width: 100%;
  margin-left: -24px;
  margin-right: -24px;
  width: calc(100% + 40px);
}
.afterColumns .component-external-links dl, .afterColumns .component-external-links ul {
  margin-bottom: 0 !important;
  padding: 0;
}
.afterColumns .definition-list dl.impactfactor {
  padding: 16px 16px 16px 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: 8px center no-repeat url(../img/impact-factor.png);
  background-size: 40px auto;
  vertical-align: middle;
}
.afterColumns .definition-list dl.impactfactor dt {
  display: block !important;
  position: relative;
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.afterColumns .definition-list dl.impactfactor dd {
  display: block !important;
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.afterColumns .definition-list dl.editorialmanager {
  float: left;
  min-height: 80px;
  background: left center no-repeat url(../img/editorial-manager.png);
  background-size: 40px auto;
}
.afterColumns .definition-list dl.editorialmanager dd {
  display: inline-block !important;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.afterColumns .definition-list dl.editorialmanager dd a {
  padding: 30px 0 0 50px;
  height: 100%;
  vertical-align: middle;
  display: inline-block;
}
.afterColumns ul.externalindexers-list {
  display: flex;
  list-style: none;
  overflow: hidden;
}
.afterColumns ul.externalindexers-list li {
  background: 8px center no-repeat;
}
.afterColumns ul.externalindexers-list li.wos {
  background-image: url(../img/web-of-science.png);
}
.afterColumns ul.externalindexers-list li.scopus {
  background-image: url(../img/scopus.png);
}

@media screen and (min-width: 767px) {
  .afterColumns .component-external-links {
    margin-left: -24px;
    margin-right: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .afterColumns .component-external-links:after {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 50px);
  }
}
@media screen and (min-width: 1200px) {
  .afterColumns .component-external-links {
    margin-left: -35px;
    margin-right: -35px;
    padding-right: 35px;
    padding-left: 35px;
  }
  .afterColumns .component-external-links:after {
    margin-left: -35px;
    margin-right: -35px;
    width: calc(100% + 70px);
  }
}
.footnote .symbol, .footnote .label {
  float: left;
  margin-right: 4px;
}

.component-headings ul, .component-googleScholar ul, .component-pubmedWidget ul, .component-content-subjects ul {
  list-style: none;
}

.page-homepage .subject-overview {
  background-color: #f2f2f2;
}
.page-homepage .subject-overview .inner-bg {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% auto;
  padding: 30px 10px;
}
.page-homepage .subject-overview h2 {
  margin-top: 0;
  font-size: 26px;
  font-family: "Noto Sans", "Open Sans", sans-serif;
}
.page-homepage .subject-overview p {
  font-family: "Noto Sans", "Open Sans", sans-serif;
  clear: both;
  margin-bottom: 15px;
}
.page-homepage .subject-overview p.center {
  text-align: center;
  clear: both;
}
.page-homepage .subject-overview img {
  float: right;
  max-width: 110px;
  margin-bottom: 15px;
}
.page-homepage .subject-overview a.button {
  border: none;
  clear: both;
}
.page-homepage .subject-overview .inner-bg {
  background-size: auto;
  background-position: bottom left;
}
.page-homepage .subject-overview div.copy {
  padding-top: 20px;
}

@media screen and (min-width: 650px) {
  .subject-overview div.copy {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding-right: 340px;
    padding-top: 55px;
    min-height: 415px;
  }
  .subject-overview div.copy img {
    position: absolute;
    bottom: -95px;
    right: 20px;
    margin-bottom: 0;
    max-width: 270px;
  }

  .page-subject .subject-overview div.copy img {
    max-width: 270px !important;
  }
}
@media screen and (min-width: 1200px) {
  div.sub-header {
    padding: 35px 40px;
  }

  nav.subject-navigation a {
    display: inline-block;
    vertical-align: middle;
  }

  nav.subject-navigation span {
    display: inline-block;
    vertical-align: middle;
  }

  nav.subject-navigation > ul {
    display: block;
    margin-top: 0;
  }

  nav.subject-navigation > ul li {
    display: inline-block;
    vertical-align: middle;
  }

  nav.subject-navigation > ul > li {
    margin-left: 30px;
  }

  nav.subject-navigation > ul > li > span {
    margin-right: 8px;
  }

  nav.subject-navigation a.menu-toggle {
    display: none;
  }
}
.page-homepage .slider.slick-slider.slick-initialized {
  margin: 32px 0px 0px 0px;
}
.page-homepage .slider.slick-slider.slick-initialized .wrapper {
  display: flex;
  flex-direction: row;
  min-height: 480px;
}
.page-homepage .slider.slick-slider.slick-initialized .wrapper .copy {
  width: 30%;
  min-width: 250px;
  padding: 32px;
  background-color: white;
  text-align: left;
}
.page-homepage .slider.slick-slider.slick-initialized .wrapper .image {
  flex: 0 1 1000px;
  position: relative;
  min-height: 0;
  background-repeat: no-repeat;
}
.page-homepage .slider.slick-slider.slick-initialized .wrapper .image img {
  position: absolute;
  max-height: 50%;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}

@media (max-width: 767px) {
  .page-homepage .slider.slick-slider.slick-initialized .wrapper {
    flex-direction: column;
    min-height: unset;
  }
  .page-homepage .slider.slick-slider.slick-initialized .wrapper .copy {
    order: 2;
    flex: 1;
    width: 100%;
  }
  .page-homepage .slider.slick-slider.slick-initialized .wrapper .image {
    order: 1;
    height: 50vh;
    max-height: 75vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-homepage .slider.slick-slider.slick-initialized .wrapper .copy {
    width: 35%;
  }
}
.page-homepage .slider.slick-slider.slick-initialized .wrapper .copy p {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.page-homepage .slider.slick-slider.slick-initialized .wrapper .copy h3 {
  color: #0f356c;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

.page-homepage .slider.slick-slider.slick-initialized {
  margin-top: 32px;
  display: flex;
}
.page-homepage .slider.slick-slider.slick-initialized .slick-arrow:before {
  color: #0f356c;
}
.page-homepage .slider.slick-slider.slick-initialized button.slick-arrow {
  flex: 0 0 32px;
  position: unset;
  vertical-align: middle;
  height: unset;
  margin: 0px;
  padding: 0px;
}
.page-homepage .slider.slick-slider.slick-initialized button.slick-arrow:before {
  height: unset;
  line-height: unset;
}
.page-homepage .slider.slick-slider.slick-initialized button.slick-arrow:before {
  font-family: "pf2-icons", "Material Icons", "FontAwesome";
  position: unset;
}
.page-homepage .slider.slick-slider.slick-initialized button.slick-arrow.slick-prev:before {
  content: "keyboard_arrow_left";
}
.page-homepage .slider.slick-slider.slick-initialized button.slick-arrow.slick-next:before {
  content: "keyboard_arrow_right";
}

@media (max-width: 767px) {
  .page-homepage .slider.slick-slider.slick-initialized button.slick-arrow {
    position: absolute;
    z-index: 1;
    height: 42px;
    top: unset;
    bottom: 0;
  }
  .page-homepage .slider.slick-slider.slick-initialized button.slick-arrow.slick-prev {
    left: 0;
  }
  .page-homepage .slider.slick-slider.slick-initialized button.slick-arrow.slick-next {
    bottom: 0;
    right: 0;
  }
}
.ie-11 .page-homepage .slider.slick-slider.slick-initialized .wrapper .image {
  flex: auto;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .ie-11 .page-homepage .slider.slick-slider.slick-initialized .wrapper .copy {
    flex: auto;
    flex-grow: 1;
  }
}

.type-index-card .flat-list {
  margin: 0px;
}
.type-index-card .flat-list > li {
  margin: 0px 0px 12px 0px;
}
.type-index-card .definition-list dl {
  margin: 0 0 4px;
}
.type-index-card .definition-list dl dt {
  display: inline !important;
}
.type-index-card .definition-list dl dd {
  display: inline !important;
}
.type-index-card h4.series-list {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  margin: 4px 0 8px;
}
.type-index-card h4.series-list > span {
  margin-right: 4px;
}
.type-index-card h4.series-list ul {
  margin: 0;
  display: inline-block;
  list-style: none;
}
.type-index-card .component {
  margin-bottom: 16px;
}
.type-index-card .column-group {
  overflow: visible;
}
.type-index-card > div:first-child {
  z-index: 2;
}
.type-index-card ul li,
.type-index-card ol li {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.type-index-card .contributor-note p {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}

/*-- Collapsible column index card styles -*/
.has-tool-bar .type-index-card::after {
  clear: both;
  content: "";
  display: table;
}
.has-tool-bar .type-index-card .leftColumn {
  float: left;
  width: 82px !important;
}
.has-tool-bar .type-index-card .centerColumn {
  float: right;
  width: calc(100% - 82px) !important;
}
.has-tool-bar .type-index-card .rightColumn {
  display: none;
}
.has-tool-bar .type-index-card .component-content-title {
  margin-bottom: 0;
}
.has-tool-bar .type-index-card .definition-list .column {
  display: block;
}
.has-tool-bar .type-index-card h4.series-list .series-label {
  opacity: 0.6;
}
.has-tool-bar .type-index-card h4.series-list ul,
.has-tool-bar .type-index-card h4.series-list li {
  display: inline;
}

/*- Put cover on the left on mobile -*/
#pageBody .column:not(.has-tool-bar) .type-index-card,
#columnWrapper .column:not(.has-tool-bar) .type-index-card {
  padding: 24px 0px 16px 0px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .leftColumn, #pageBody .column:not(.has-tool-bar) .type-index-card .centerColumn, #pageBody .column:not(.has-tool-bar) .type-index-card .rightColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .leftColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .centerColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .rightColumn {
  position: relative;
  margin: 0px;
  padding: 0px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .leftColumn > .column-contents, #pageBody .column:not(.has-tool-bar) .type-index-card .centerColumn > .column-contents, #pageBody .column:not(.has-tool-bar) .type-index-card .rightColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .leftColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .centerColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .rightColumn > .column-contents {
  position: relative;
  width: 100%;
  margin: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .centerColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .centerColumn {
  width: 100%;
}
@media (min-width: 1152px) {
  #pageBody .column:not(.has-tool-bar) .type-index-card .centerColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .centerColumn {
    width: calc(100% - 240px) !important;
  }
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn .leftColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn .leftColumn > .column-contents {
  padding-right: 32px;
  padding-left: 32px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn .leftColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn .leftColumn > .column-contents.no-padding {
  padding-right: 0%;
  padding-left: 0%;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn.has-centerColumn .leftColumn > .column-contents, #pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn.has-rightColumn .leftColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn.has-centerColumn .leftColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn.has-rightColumn .leftColumn > .column-contents {
  padding-right: 16px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn.has-centerColumn .leftColumn > .column-contents.no-padding, #pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn.has-rightColumn .leftColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn.has-centerColumn .leftColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-leftColumn.has-rightColumn .leftColumn > .column-contents.no-padding {
  padding-right: 0%;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn .centerColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn .centerColumn > .column-contents {
  padding-right: 32px;
  padding-left: 32px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn .centerColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn .centerColumn > .column-contents.no-padding {
  padding-right: 0%;
  padding-left: 0%;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn.has-leftColumn .centerColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn.has-leftColumn .centerColumn > .column-contents {
  padding-left: 16px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn.has-leftColumn .centerColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn.has-leftColumn .centerColumn > .column-contents.no-padding {
  padding-right: 0%;
  padding-left: 0%;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn.has-rightColumn .centerColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn.has-rightColumn .centerColumn > .column-contents {
  padding-right: 16px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn.has-rightColumn .centerColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-centerColumn.has-rightColumn .centerColumn > .column-contents.no-padding {
  padding-right: 0%;
  padding-left: 0%;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn .rightColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn .rightColumn > .column-contents {
  padding-right: 32px;
  padding-left: 32px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn .rightColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn .rightColumn > .column-contents.no-padding {
  padding-right: 0%;
  padding-left: 0%;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn.has-leftColumn .rightColumn > .column-contents, #pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn.has-centerColumn .rightColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn.has-leftColumn .rightColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn.has-centerColumn .rightColumn > .column-contents {
  padding-left: 16px;
}
#pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn.has-leftColumn .rightColumn > .column-contents.no-padding, #pageBody .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn.has-centerColumn .rightColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn.has-leftColumn .rightColumn > .column-contents.no-padding,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .column-group.has-rightColumn.has-centerColumn .rightColumn > .column-contents.no-padding {
  padding-right: 0%;
  padding-left: 0%;
}
#pageBody .column:not(.has-tool-bar) .content-sub-documents .type-index-card .column.centerColumn > .column-contents,
#columnWrapper .column:not(.has-tool-bar) .content-sub-documents .type-index-card .column.centerColumn > .column-contents {
  padding-right: 0%;
  padding-left: 0%;
}

.has-tool-bar .ui-accordion-content .type-index-card .component-content-metadata dl {
  margin-bottom: 12px;
}

.type.ico-type:before {
  margin-right: 6px;
}

.component-cover-image .cover-image a {
  display: block;
}
.component-cover-image img {
  width: auto;
}

.content-download.buy-book-in-print {
  text-align: center;
}

.component-content-download-links {
  text-align: center;
}
.component-content-download-links ul {
  list-style: none;
  margin: 0;
}
.component-content-download-links a.content-download {
  margin-right: auto;
  margin-left: auto;
}
.component-content-download-links a.content-download:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  font-size: 16px;
  margin-right: 8px;
}
.component-content-download-links a.content-download.pdf-download:before {
  content: "";
}
.component-content-download-links a.content-download.epub-download:before {
  content: "";
}

/*-- Ecommerce related styling --*/
.offer-prices.inline span:before {
  content: "/";
  margin: 0 5px;
  display: inline-block;
}
.offer-prices.inline span:first-child:before {
  content: "";
  margin: 0;
  display: inline-block;
}

.ecommerce-block .offer {
  text-align: center;
}
.ecommerce-block .offer h3,
.ecommerce-block .offer .offer-pricing {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  margin-bottom: 2px;
}
.ecommerce-block .offer .offer-original-pricing {
  text-decoration: line-through;
  text-decoration-color: #f44336;
}
.ecommerce-block .offer a.button {
  margin-top: 0;
}
.ecommerce-block .offer .offer-info {
  text-align: left;
}
.ecommerce-block .offer-info,
.ecommerce-block .offer-action {
  display: none;
}
.ecommerce-block .offer-info.selected,
.ecommerce-block .offer-action.selected {
  display: block;
  margin-bottom: 10px;
}
.ecommerce-block .offer-select .dropdown-button .offer-info,
.ecommerce-block .offer-select .dropdown-button .offer-action {
  display: block;
}
.ecommerce-block a.dropdown-control {
  width: 100%;
}
.ecommerce-block a.dropdown-control:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  content: "";
  margin-right: 8px;
  font-size: 14px;
}
.ecommerce-block a.ecommerce-add-to-cart {
  width: 100%;
}
.ecommerce-block a.ecommerce-add-to-cart:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  font-size: 18px;
  content: "";
  margin-right: 8px;
}
.ecommerce-block .toggle-activator {
  position: relative;
}
.ecommerce-block .toggle-activator .less {
  display: none;
}
.ecommerce-block .toggle-activator span:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  font-size: 15px;
  content: "";
  margin-right: 8px;
}
.ecommerce-block .toggle-activator span:after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 4px;
  font-size: 26px;
}
.ecommerce-block .toggle-activator.open span:after {
  content: "";
}
.ecommerce-block .toggle-activator.open .less {
  display: block;
}
.ecommerce-block .toggle-activator.open .more {
  display: none;
}
.ecommerce-block div.dropdown-button.open div.dropdown-menu ul {
  max-height: 75vh;
  min-height: 90px;
  position: relative;
}
.ecommerce-block p.ecommerce-disclaimer {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  -webkit-font-smoothing: subpixel-antialiased;
}

a.buttonLink.ccc-rights-link:before {
  content: "";
  background: url(../img/copyright-clearance.png) 0px 0px no-repeat;
  background-size: contain;
  background-origin: content-box;
  width: 24px;
}

@media screen and (min-width: 1200px) {
  /*-- Collapsible column index card styles - hack using pagebody to increase weight -*/
  #pageBody .has-tool-bar .type-index-card,
#columnWrapper .has-tool-bar .type-index-card {
    padding-bottom: 0;
  }
  #pageBody .has-tool-bar .type-index-card .leftColumn,
#columnWrapper .has-tool-bar .type-index-card .leftColumn {
    width: 100px !important;
  }
}
@media screen and (min-width: 1600px) {
  /*-- Collapsible column index card large desktop adjustment -*/
  #pageBody .type-index-card .leftColumn,
#columnWrapper .type-index-card .leftColumn {
    width: 100px !important;
  }
  #pageBody .column:not(.has-tool-bar) .type-index-card .leftColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .leftColumn {
    width: 240px !important;
  }
}
.formula {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.formula .mjx-chtml {
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .formula .mjx-chtml {
    overflow-x: unset;
  }
}
.formula .MathJax_Display {
  margin: 0;
  text-align: left !important;
  width: auto !important;
}
.formula #MathJax_ZoomFrame {
  position: absolute !important;
}
@media (min-width: 768px) {
  .formula #MathJax_Zoom {
    overflow: auto !important;
    max-width: 1000px !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
}

article.contentItem .component-content-contributors {
  margin-bottom: 16px;
}
article.contentItem .metaBlock h3 {
  margin-top: 0;
}
article.contentItem dl dt, article.contentItem dl dd {
  display: inline;
  margin-right: 4px;
}

.component-content-pdf .simple-viewer, .component-content-pdf-preview .simple-viewer {
  background: center center no-repeat url(../img/ajax-loader.gif);
  background-size: 80px auto;
  border-width: 1px;
  border-style: solid;
  min-height: 256px;
}
.component-content-pdf .simple-viewer canvas, .component-content-pdf-preview .simple-viewer canvas {
  display: block;
  margin: auto;
  width: auto;
  max-width: 100%;
}
.component-content-pdf .pdf-js-inline-view-download-message, .component-content-pdf-preview .pdf-js-inline-view-download-message {
  position: absolute;
  text-align: center;
  bottom: 32px;
  width: 100%;
  font-size: 1.125rem;
}

#contentRoot .inline-supplement.categoryIcon {
  margin-right: 4px;
}

/* Page Breaks
	  ========================================================================== */
#contentRoot span.pageBreak {
  display: block;
  color: rgba(0, 0, 0, 0.075);
  text-align: right;
  border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  margin-top: 8px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
}

/*- Off-Site Access Messaging from _off-site-access-message 02 -*/
#offSiteMessage {
  display: none;
}

.off-site-access-message-present #offSiteMessage {
  display: block;
  background: white;
}

/* Make menu absolute, not fixed, on IE 5 & 6 */
.off-site-access {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

#offSiteMessage .off-site-access {
  background-color: white;
  border-color: rgba(0, 0, 0, 0.6);
  border-style: solid;
  width: 27rem;
  text-align: left;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#offSiteMessage .off-site-access ul {
  list-style: none;
}
#offSiteMessage .off-site-access ul li .off-site-access-message-spacers {
  line-height: 2rem;
}
#offSiteMessage .off-site-access .off-site-access-message-dismiss {
  position: absolute;
  color: rgba(0, 0, 0, 0.6);
  right: -10px;
  top: -10px;
}
#offSiteMessage .off-site-access a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .off-site-access-message-present #offSiteMessage {
    width: 100%;
    text-align: center;
  }
  .off-site-access-message-present #offSiteMessage ul li .off-site-access-message-spacers {
    line-height: 1rem;
  }
}
.reference .enumerator ~ .citationText {
  display: inline;
}

.cadmore-player {
  /* Set the min-width to be the starting width breakpoint of when the player will display in wide view, if ever.
  If the player will never display in wide view (due to the max sizing of the outside_container_class or other constraints),
  this class can be omitted. */
  /* Include this class if you will be using a toggled transcript */
}
.cadmore-player .outside_container_class {
  margin: auto;
  width: 100%;
  /* Set a max width if you need one */
  /* max-width: 600px; */
}
.cadmore-player .inside_container_class {
  padding-top: 0;
  height: 80vh;
  /* This is for tablet/mobile.  Set to preference */
  overflow: hidden;
  position: relative;
  width: unset;
  min-height: unset;
}
@media only screen and (min-width: 850px) {
  .cadmore-player .inside_container_class {
    padding-top: 56.25%;
    height: unset;
  }
}
.cadmore-player .inside_container_class iframe {
  position: absolute;
  top: 0;
  left: 0;
}
.cadmore-player .inside_container_class .cmpl_no_transcript {
  padding-top: 56.25%;
  height: unset;
}

@media print {
  /*- hide globally -*/
  @page {
    margin: 1cm;
  }
  /*- header -*/
  #navigation, #quickSearch, #headerUtilityBar {
    display: none !important;
  }

  #headerWrap {
    position: static;
    margin-bottom: 25px;
  }

  #headerWrap #headerLogo {
    float: none;
  }

  /*- page adjustments -*/
  #columnWrapper {
    margin-top: 0 !important;
  }

  .container-tabs {
    display: none;
  }

  .column-controls, #entryPrevNextNav {
    display: none !important;
  }

  .layout .column .column-contents,
.layout .column .column-controls {
    min-height: 0 !important;
    position: static;
  }

  .rightColumn.has-tool-bar,
.leftColumn.has-tool-bar {
    position: static !important;
    transform: none;
    width: 100%;
  }

  .right-column-expands,
.left-column-expands {
    padding: 0 !important;
  }

  .toolbar-fixed > .rightColumn > div {
    position: static !important;
  }

  .layout .column-group {
    display: block;
  }

  #pageBody .column:not(.has-tool-bar) .type-index-card .rightColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .rightColumn {
    border-left: 0;
  }

  #pageBody .column:not(.has-tool-bar) .type-index-card .has-leftColumn.has-rightColumn .centerColumn,
#pageBody .column:not(.has-tool-bar) .type-index-card > .columns-2 > .centerColumn,
#pageBody .column:not(.has-tool-bar) .type-index-card .rightColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .has-leftColumn.has-rightColumn .centerColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card > .columns-2 > .centerColumn,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .rightColumn {
    padding-left: 0 !important;
  }

  #pageBody .column:not(.has-tool-bar) .type-index-card .has-centerColumn.has-rightColumn .centerColumn,
#pageBody .type-content-view .issue-toc, #pageBody .ui-tabs .ui-tabs-panel,
#columnWrapper .column:not(.has-tool-bar) .type-index-card .has-centerColumn.has-rightColumn .centerColumn,
#columnWrapper .type-content-view .issue-toc,
#columnWrapper .ui-tabs .ui-tabs-panel {
    width: 100% !important;
  }

  #pageBody .has-tool-bar .type-index-card {
    background-color: transparent !important;
    margin: 0;
  }

  .column-collapsible .container-accordion,
.column-collapsible .component-quick-search-form,
.column-collapsible .component-volume-issue-selector {
    display: none;
  }

  .right-column-expands {
    display: flex !important;
    flex-direction: column !important;
  }
  .right-column-expands .rightColumn {
    order: 1 !important;
  }
  .right-column-expands .centerColumn {
    order: 2 !important;
  }

  .ico-access {
    text-align: left;
  }

  .flat-list.no-bullets {
    margin-left: 0;
  }

  [class^=content-contributor-].single-line .contributor-line {
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }
  [class^=content-contributor-].single-line > span {
    display: none !important;
  }
  [class^=content-contributor-].single-line .affiliation {
    display: block;
  }

  .configurable-layout div.accessIcon,
.configurable-layout .component-content-download-links,
.configurable-layout .component-content-actions {
    display: none;
  }

  /*--- Old Layouts Print Styles ---*/
  #pageBody {
    display: block;
  }

  div[data-tasktype=citation-export],
#pageLinks, #columnOne, #resultsBarBottom {
    display: none !important;
  }

  .page-search #columnWrapper {
    padding: 20px;
  }
  .page-search #topSection, .page-search #noresults {
    border-left: 0;
    padding: 0 0 20px !important;
  }
  .page-search .results-column {
    background: none !important;
    padding-top: 0;
  }
  .page-search #searchContent {
    padding-top: 0;
  }
  .page-search a.clearAll {
    display: none;
  }
  .page-search .abstract .abstract {
    display: none !important;
  }
  .page-search .abstract .abstract:first-child {
    display: block !important;
  }
  .page-search .abstract a.lesstoggle {
    display: none;
  }
  .page-search .contentItem {
    background: transparent;
  }
  .page-search #resultsBarTop {
    display: none;
  }

  #footerWrap {
    background: transparent !important;
    color: #000 !important;
  }
  #footerWrap a {
    color: #000 !important;
  }

  @page {
    margin: 0.35in 0.1in;
  }
  html {
    font-size: 14px !important;
  }

  .layout.three-column-with-top-bottom-and-header-footer.type-content-flier > .flex-col {
    flex-direction: row !important;
  }

  .type-content-flier .component-table-of-contents .ajax-node-opener .ajax-control {
    display: none;
  }

  .page-search .contentItem .component-cover-image {
    max-width: 150px;
  }
}
.modalWindow body.blanklightbox * {
  display: none;
}
.modalWindow #modalContent::after {
  clear: both;
  content: "";
  display: table;
}
.modalWindow {
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
}
.modalWindow .fancybox-inner {
  overflow: hidden !important;
}
.modalWindow input[type=checkbox] {
  display: inline-block;
  margin-right: 8px;
}
.modalWindow #selectTags ol {
  list-style: none;
  margin-left: 0;
}
.modalWindow #selectTags ol li.checkboxRow {
  margin-bottom: 0;
}
.modalWindow #selectTags ol li.checkboxRow label {
  display: inline-block;
}
.modalWindow ul.groups {
  margin-left: 0;
}
.modalWindow ul.groups li {
  margin-bottom: 0;
}
.modalWindow ul.groups li label {
  display: inline-block;
}
.modalWindow div.showToRecipients label,
.modalWindow div.copyMe label {
  display: inline-block;
}
.modalWindow div.copyMe {
  margin-top: 15px;
}
.modalWindow #submitRow {
  margin-bottom: 10px;
  padding-top: 10px;
}
.modalWindow #submitRow .c-Button, .modalWindow #submitRow .goog-te-gadget-simple.goog-te-gadget-simple, .modalWindow #submitRow .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .modalWindow #submitRow a, .modalWindow .formRow .c-Button, .modalWindow .formRow .goog-te-gadget-simple.goog-te-gadget-simple, .modalWindow .formRow .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more a, .page-taxonomy #taxonomyDisplayRecursive.full-taxonomy-tree.truncate-list .truncate-show-more .modalWindow .formRow a {
  display: inline;
}
.modalWindow .saveSearch h3, .modalWindow .saveSearch h4 {
  margin-top: 0 !important;
}
.modalWindow .saveSearch h3 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  font-style: normal;
}
.modalWindow .saveSearch h4 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.modalWindow .saveSearch .messageText {
  margin-bottom: 15px;
}
.modalWindow .saveSearch #alert {
  float: left;
}
.modalWindow .page-emaillightbox #copyRow label {
  display: inline-block;
}
.modalWindow .page-emaillightbox #copyRow input[type=checkbox] {
  float: left;
}
.modalWindow .page-cite h2 {
  margin-top: 0;
}
.modalWindow .page-cite select {
  margin-right: 10px;
}
.modalWindow .page-cite a.button.primary {
  padding: 7px 20px 10px 20px;
  margin-top: 0;
}
.modalWindow .page-cite a.button.primary:before {
  margin-right: 7px;
}
.modalWindow .page-cite p.citationPreview {
  margin: 16px 0;
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.modalWindow .page-cite div.export-formats > a {
  width: 33.333333%;
  display: inline-block;
  margin-right: -4px;
  padding-left: 5px;
  margin-bottom: 0;
  vertical-align: top;
}
.modalWindow .page-cite div.export-formats > a div {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.modalWindow .page-cite div.export-formats > a div.button {
  padding: 6px 12px 7px 12px;
  margin-bottom: 5px;
  margin-left: 0;
}
.modalWindow .page-cite div.export-formats > a div.button:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  display: inline-block;
  font-size: 16px;
  display: inline-block;
  content: "";
  margin-right: 4px;
}
.modalWindow .page-cite div.export-formats > a:first-child {
  padding-left: 0;
}
.modalWindow .page-cite div.export-formats > a:last-child {
  padding-right: 0;
}
.modalWindow textarea {
  max-width: unset;
}
.modalWindow fieldset {
  border: 0 none;
}
.modalWindow legend {
  margin: 0px;
  padding: 0px;
}
.modalWindow fieldset.selectTags:hover:before {
  background-color: unset;
}
.modalWindow .shareAnnos {
  padding: 1em;
}
.modalWindow body {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.modalWindow .saveSearch h3, .modalWindow .saveSearch h4 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  margin-top: 0 !important;
}
.modalWindow .saveSearch h3 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  font-style: normal;
}
.modalWindow .saveSearch h4 {
  color: black;
  font-family: "Brill", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.modalWindow .saveSearch .messageText {
  margin-bottom: 15px;
}

/* 
    The following styles are intended to do a reset on the div so that
    clients have a clean slate for applying their own styles.
*/
.cxs-content-root {
  width: 100%;
}

.cxs-style-root {
  line-height: 1;
}
.cxs-style-root div, .cxs-style-root span, .cxs-style-root applet, .cxs-style-root object, .cxs-style-root iframe, .cxs-style-root h1, .cxs-style-root h2, .cxs-style-root h3, .cxs-style-root h4, .cxs-style-root h5, .cxs-style-root h6, .cxs-style-root p, .cxs-style-root blockquote, .cxs-style-root pre, .cxs-style-root a, .cxs-style-root abbr, .cxs-style-root acronym, .cxs-style-root address, .cxs-style-root big, .cxs-style-root cite, .cxs-style-root code,
.cxs-style-root del, .cxs-style-root dfn, .cxs-style-root em, .cxs-style-root img, .cxs-style-root ins, .cxs-style-root kbd, .cxs-style-root q, .cxs-style-root s, .cxs-style-root samp, .cxs-style-root small, .cxs-style-root strike, .cxs-style-root strong, .cxs-style-root sub, .cxs-style-root sup, .cxs-style-root tt, .cxs-style-root var, .cxs-style-root b, .cxs-style-root u, .cxs-style-root i, .cxs-style-root center, .cxs-style-root dl, .cxs-style-root dt, .cxs-style-root dd, .cxs-style-root ol, .cxs-style-root ul, .cxs-style-root li,
.cxs-style-root fieldset, .cxs-style-root form, .cxs-style-root label, .cxs-style-root legend, .cxs-style-root table, .cxs-style-root caption, .cxs-style-root tbody, .cxs-style-root tfoot, .cxs-style-root thead, .cxs-style-root tr, .cxs-style-root th, .cxs-style-root td, .cxs-style-root article, .cxs-style-root aside, .cxs-style-root canvas, .cxs-style-root details, .cxs-style-root embed,
.cxs-style-root figure, .cxs-style-root figcaption, .cxs-style-root footer, .cxs-style-root header, .cxs-style-root hgroup, .cxs-style-root menu, .cxs-style-root nav, .cxs-style-root output, .cxs-style-root ruby, .cxs-style-root section, .cxs-style-root summary, .cxs-style-root time, .cxs-style-root mark, .cxs-style-root audio, .cxs-style-root video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
.cxs-style-root article, .cxs-style-root aside, .cxs-style-root details, .cxs-style-root figcaption, .cxs-style-root figure, .cxs-style-root footer, .cxs-style-root header, .cxs-style-root hgroup, .cxs-style-root menu, .cxs-style-root nav, .cxs-style-root section {
  display: block;
}
.cxs-style-root ol, .cxs-style-root ul {
  list-style: none;
}
.cxs-style-root blockquote, .cxs-style-root q {
  quotes: none;
}
.cxs-style-root blockquote:before, .cxs-style-root blockquote:after, .cxs-style-root q:before, .cxs-style-root q:after {
  content: "";
  content: none;
}
.cxs-style-root table {
  border-collapse: collapse;
  border-spacing: 0;
}
