<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Colors
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Fonts
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Layout
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Flex Mixins
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Links
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Animations
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Other Mixins
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Color Themes
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
[toolTip-trigger] {
  position: relative;
}

#ToolTipDialog {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 0px 32px 0px rgba(45, 45, 45, 0.15);
  box-sizing: border-box;
  display: block;
  font-size: 1rem;
  font-style: normal;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3.2em;
  line-height: 1.2;
  margin: auto;
  min-width: 300px;
  max-width: 600px;
  white-space: normal;
  z-index: 100000;
  animation-name: openToolTip;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0, 0.07, 0.2, 1.57);
  animation-fill-mode: none;
}
#ToolTipDialog .tooltip-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  margin-top: 0;
  padding: 10px;
  position: absolute;
  top: 6px;
  right: 6px;
  -webkit-appearance: none;
}
#ToolTipDialog .tooltip-close svg {
  position: static;
  max-width: 15px;
  max-height: 15px;
}
#ToolTipDialog .tooltip-close svg path {
  transition: fill 0.3s;
}
#ToolTipDialog .tooltip-close:hover svg path {
  fill: #0077B3;
}
#ToolTipDialog .tip-scroll {
  height: 100%;
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
  padding-bottom: 10px;
}
#ToolTipDialog .tip-scroll::after {
  background: transparent;
  background: -webkit-linear-gradient(top, white 0%, transparent 100%);
  background: -moz-linear-gradient(top, white 0%, transparent 100%);
  background: linear-gradient(to bottom, white 0%, transparent 100%);
}
#ToolTipDialog .arrow {
  bottom: -15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
  position: absolute;
  height: 0px;
  left: 0;
  width: 0px;
  animation-name: openArrow;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
}
#ToolTipDialog.flip {
  animation-name: openToolTipFlip;
}
#ToolTipDialog.flip .arrow {
  top: -15px;
  transform: rotate(180deg);
  animation-name: openArrowFlip;
}
#ToolTipDialog .tip-body {
  font-size: 1.4em;
  font-weight: 400;
  color: #707070;
  text-align: left;
}
#ToolTipDialog .tip-body a {
  color: #0077B3;
  font-weight: 600;
  box-shadow: none;
  padding-bottom: 0;
}
#ToolTipDialog .tip-body a:hover {
  text-decoration: none;
}
body:not(.disable-focus-state) #site #ToolTipDialog .tip-body a:focus {
  outline: -webkit-focus-ring-color none 0;
  outline: 3px dashed #0077B3;
  outline-offset: -3px;
}
#ToolTipDialog .tip-body a[target=_blank] img {
  width: 1rem;
  height: 1rem;
  margin: 0 0.25em 0.25em;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - IE11 Specific Querys */
body[data-version="msie 11"] sup #ToolTipDialog .tip-body {
  font-size: 1.7rem !important;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - High Contrast Mode */
/* Targets displays using any of Windows' High Contrast Mode themes: */
@media screen and (-ms-high-contrast: active) {
  #ToolTipDialog .tooltip-close svg {
    fill: #fff;
  }
  #ToolTipDialog .arrow {
    border-top-color: #000;
  }
}
/* Targets displays using the Windows' "High Contrast Black" theme: */
@media screen and (-ms-high-contrast: white-on-black) {
  #ToolTipDialog .tooltip-close svg {
    fill: #fff;
  }
  #ToolTipDialog .arrow {
    border-top-color: #000;
  }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Animations */
@keyframes openToolTip {
  0% {
    transform: translateY(25%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes openToolTipFlip {
  0% {
    transform: translateY(-25%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes openArrow {
  0% {
    transform: translateY(-35%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes openArrowFlip {
  0% {
    transform: translateY(35%) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(180deg);
  }
}
</pre></body></html>