
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c2ba84a4228d906186c0d189.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b69968b5191a1ac9f9ff4352.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e8df76165c10366e66b6894b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5d7868663c1c5cc679a1dc82.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d820b73aae4bf6d0bbbad7e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5a7cbd5de5c552e154bee330.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_557ba21e861ff93b3f20633d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.977000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_87e7e3e587c39d46ead3f582.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7db2abb106fb81b84fb4b4b5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_abb66d176e767e47ea419b31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b2e94e3170526f8377bd21f8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b2fd7c3667223499b01a862c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0239336f6c890a9a370917ab.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_60d5369c6e482b526ecd5ece.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4eef168af18c948f04645193.woff2')format("woff");}.fff{font-family:fff;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_12245e01af54505d32ab470e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_865b1cb63e04dfee80250cc1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8d8e0aa90fa601a7607533a1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_fac94b9606b0c0f60695f56b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0403ccd604c5ec5411fd758f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_abd0aa4033b16bcdbcff0534.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d7db25cda466918a005d99a2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_4ca8108be5d600db63b90e16.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.949000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f531a1df5168d25e8b4fad5b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.122000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_468d8a14b5995042752f64c8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f8476177da161fd192bad188.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_12245e01af54505d32ab470e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_550c8892bec6a3299c2f2ff2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_245260792f389ab67a0029d6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_8246fda83ae0bcb3b6dcba13.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_7c88cf405c6eb7db97a7dd5a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_09c028f73c0c3d3b31f25120.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_82fc9ebba405cccce51aaade.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_abeb89e262d72f8a3a6bff8a.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_f8476177da161fd192bad188.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_12245e01af54505d32ab470e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_226bb7d808e2067d0435eae2.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_4221bec42ad86938e853889d.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_aa6252019201818c6fdae5b3.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_17c5777184d043668ed6d96b.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_dede317c16712e97cb36d0e7.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_5af78bd94da54ae81c3f4b0b.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_63cf1f8d8a0628d9fdc3b97a.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_a14f6651d7dec086ef2ee6d9.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_6c920ae493f34fe5f713238b.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_c0d992f4ed480229d7c641c8.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_f2da202180bd190441a68486.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_06431c20fd30b1e160a9ef7d.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_4b31182a19ca9c7bbbb65077.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_d77b9a00d745aa18e38749ea.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_13e360bbcbb0e0896a35e173.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_ea077aff1731467343b17700.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-17.820000px;}
.v2{vertical-align:-15.840000px;}
.v7{vertical-align:-13.860000px;}
.v8{vertical-align:-5.670000px;}
.va{vertical-align:-2.808000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.478000px;}
.v9{vertical-align:9.936000px;}
.v6{vertical-align:13.839600px;}
.v1{vertical-align:15.840000px;}
.v4{vertical-align:17.639400px;}
.v3{vertical-align:19.800000px;}
.vc{vertical-align:34.020000px;}
.ls8{letter-spacing:-8.706960px;}
.ls19{letter-spacing:-5.832000px;}
.lsf{letter-spacing:-1.350000px;}
.ls1b{letter-spacing:-1.050000px;}
.ls4{letter-spacing:-0.960000px;}
.ls18{letter-spacing:-0.783000px;}
.ls1c{letter-spacing:-0.609000px;}
.ls7{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.313200px;}
.ls14{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000120px;}
.ls12{letter-spacing:0.000240px;}
.ls1{letter-spacing:0.004680px;}
.ls2{letter-spacing:0.025800px;}
.ls11{letter-spacing:0.243600px;}
.ls17{letter-spacing:0.313200px;}
.lsc{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.540000px;}
.ls6{letter-spacing:1.350000px;}
.ls0{letter-spacing:3.360000px;}
.ls16{letter-spacing:6.750000px;}
.ls1e{letter-spacing:10.800000px;}
.ls10{letter-spacing:17.874000px;}
.ls1f{letter-spacing:19.494000px;}
.lsa{letter-spacing:44.274720px;}
.ls1d{letter-spacing:1259.766000px;}
.ls13{letter-spacing:1264.734000px;}
.ls21{letter-spacing:1280.880000px;}
.ls20{letter-spacing:1342.656000px;}
.ls1a{letter-spacing:1383.804000px;}
.lsd{letter-spacing:1390.392000px;}
.ls15{letter-spacing:1417.932000px;}
.lse{letter-spacing:1420.956000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-48.000000px;}
.ws19{word-spacing:-19.710000px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.330000px;}
.ws5{word-spacing:-15.012000px;}
.ws9{word-spacing:-14.472000px;}
.ws18{word-spacing:-13.662000px;}
.ws1{word-spacing:-11.952000px;}
.ws4{word-spacing:-11.762400px;}
.ws13{word-spacing:-9.020160px;}
.wse{word-spacing:-8.891400px;}
.ws7{word-spacing:-8.706960px;}
.wsa{word-spacing:-8.393760px;}
.ws14{word-spacing:-7.923960px;}
.ws0{word-spacing:-6.932160px;}
.ws11{word-spacing:-6.723360px;}
.ws10{word-spacing:-6.479760px;}
.ws15{word-spacing:-5.870760px;}
.ws6{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:57.624000px;}
.wsc{word-spacing:61.488000px;}
.wsd{word-spacing:126.378000px;}
.ws12{word-spacing:1263.708000px;}
.ws17{word-spacing:1283.742000px;}
.ws16{word-spacing:1307.070000px;}
._3f{margin-left:-20.142000px;}
._3c{margin-left:-18.246000px;}
._1f{margin-left:-15.336000px;}
._3e{margin-left:-14.191800px;}
._9{margin-left:-12.867600px;}
._a{margin-left:-11.156520px;}
._3d{margin-left:-9.682680px;}
._b{margin-left:-8.615400px;}
._15{margin-left:-7.285200px;}
._0{margin-left:-5.838000px;}
._18{margin-left:-4.752000px;}
._2{margin-left:-3.456000px;}
._1{margin-left:-2.166000px;}
._5{margin-left:-1.056960px;}
._3{width:1.458000px;}
._4{width:2.598000px;}
._6{width:3.702000px;}
._7{width:4.710000px;}
._13{width:6.522000px;}
._c{width:8.208000px;}
._12{width:9.990000px;}
._10{width:11.664000px;}
._f{width:12.744000px;}
._16{width:13.878000px;}
._1e{width:16.362000px;}
._e{width:18.090000px;}
._11{width:19.872000px;}
._3b{width:20.898000px;}
._1d{width:22.032000px;}
._1a{width:23.652000px;}
._14{width:24.786000px;}
._1b{width:26.082000px;}
._d{width:27.108000px;}
._25{width:28.458000px;}
._20{width:29.754000px;}
._22{width:31.698000px;}
._19{width:33.642000px;}
._23{width:35.046000px;}
._26{width:37.854000px;}
._1c{width:38.988000px;}
._44{width:40.122000px;}
._43{width:42.373920px;}
._42{width:43.734960px;}
._41{width:45.360000px;}
._17{width:47.016000px;}
._46{width:49.465200px;}
._45{width:51.574800px;}
._24{width:53.028000px;}
._21{width:70.038000px;}
._35{width:75.810000px;}
._32{width:78.036000px;}
._31{width:79.296000px;}
._37{width:80.472000px;}
._2c{width:83.748000px;}
._39{width:86.982000px;}
._2e{width:88.704000px;}
._2b{width:97.608000px;}
._2d{width:99.330000px;}
._28{width:118.818000px;}
._27{width:119.910000px;}
._29{width:121.800000px;}
._2a{width:124.950000px;}
._30{width:134.988000px;}
._36{width:146.916000px;}
._3a{width:187.362000px;}
._34{width:195.510000px;}
._33{width:202.314000px;}
._8{width:204.048000px;}
._38{width:206.388000px;}
._40{width:271.656000px;}
._2f{width:933.702000px;}
.fc5{color:rgb(17,178,240);}
.fc4{color:rgb(239,106,24);}
.fc3{color:rgb(77,79,89);}
.fc2{color:rgb(93,96,107);}
.fc1{color:rgb(23,22,25);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:24.360000px;}
.fs4{font-size:27.840000px;}
.fs9{font-size:31.320000px;}
.fs7{font-size:34.800000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs3{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:62.095800px;}
.yeb{bottom:62.095950px;}
.y5{bottom:65.285250px;}
.y3f{bottom:65.287800px;}
.ya5{bottom:65.287950px;}
.y2{bottom:79.960650px;}
.y174{bottom:97.892850px;}
.y19a{bottom:99.834300px;}
.y115{bottom:101.288700px;}
.y101{bottom:101.298750px;}
.y1e1{bottom:101.796750px;}
.y1cd{bottom:104.388600px;}
.y1b9{bottom:105.097350px;}
.y71{bottom:107.079450px;}
.y130{bottom:107.369700px;}
.ya2{bottom:108.538950px;}
.y147{bottom:109.079550px;}
.y148{bottom:113.517090px;}
.y173{bottom:115.897350px;}
.y199{bottom:117.829800px;}
.y114{bottom:119.284200px;}
.y100{bottom:119.294250px;}
.y1e0{bottom:119.792250px;}
.y1cc{bottom:122.420100px;}
.y1b8{bottom:123.101850px;}
.y70{bottom:125.074950px;}
.y12f{bottom:125.365200px;}
.ya1{bottom:126.534450px;}
.y146{bottom:127.075050px;}
.y2f{bottom:127.857105px;}
.y3d{bottom:128.236755px;}
.yb4{bottom:130.075950px;}
.y172{bottom:133.892850px;}
.y198{bottom:135.829800px;}
.y113{bottom:137.279700px;}
.yff{bottom:137.289750px;}
.y1df{bottom:137.787750px;}
.y1a2{bottom:137.966550px;}
.y1cb{bottom:140.415600px;}
.y1b7{bottom:141.097350px;}
.yb3{bottom:142.077450px;}
.y6f{bottom:143.070450px;}
.y12e{bottom:143.369700px;}
.ya0{bottom:144.529950px;}
.y145{bottom:145.070550px;}
.y2d{bottom:145.897755px;}
.y3c{bottom:146.232255px;}
.y2e{bottom:150.308145px;}
.y1a1{bottom:150.566550px;}
.y170{bottom:151.897350px;}
.y197{bottom:153.838800px;}
.y112{bottom:155.275200px;}
.yfe{bottom:155.285250px;}
.y1de{bottom:155.783250px;}
.y171{bottom:156.343740px;}
.yb2{bottom:157.543950px;}
.y1ca{bottom:158.411100px;}
.y1b6{bottom:159.097350px;}
.y6e{bottom:161.065950px;}
.y12d{bottom:161.365200px;}
.y9f{bottom:162.529950px;}
.y144{bottom:163.066050px;}
.y1a0{bottom:163.166550px;}
.y2c{bottom:163.893255px;}
.y3b{bottom:164.227755px;}
.yb1{bottom:166.072650px;}
.y16f{bottom:169.892850px;}
.y196{bottom:171.834300px;}
.y111{bottom:173.270700px;}
.yfd{bottom:173.280750px;}
.y1dd{bottom:173.778750px;}
.y1f1{bottom:174.043350px;}
.y1c9{bottom:176.406600px;}
.y1b5{bottom:177.110850px;}
.yb0{bottom:178.074150px;}
.y6d{bottom:179.061450px;}
.y12c{bottom:179.374200px;}
.y142{bottom:181.075050px;}
.y2b{bottom:181.888755px;}
.y3a{bottom:182.223255px;}
.y143{bottom:185.517090px;}
.y16e{bottom:187.915350px;}
.y195{bottom:189.829800px;}
.yfc{bottom:191.276250px;}
.y110{bottom:191.288700px;}
.y1dc{bottom:191.774250px;}
.y1f0{bottom:192.038850px;}
.y1c8{bottom:194.402100px;}
.y1b4{bottom:195.106350px;}
.y6c{bottom:197.056950px;}
.y12b{bottom:197.369700px;}
.y141{bottom:199.070550px;}
.y2a{bottom:199.884255px;}
.y39{bottom:200.253105px;}
.y9e{bottom:201.538950px;}
.y16d{bottom:205.910850px;}
.y194{bottom:207.829800px;}
.yfb{bottom:209.271750px;}
.y10f{bottom:209.284200px;}
.y1db{bottom:209.769750px;}
.y1ef{bottom:210.034350px;}
.yaf{bottom:210.582150px;}
.y1c7{bottom:212.397600px;}
.y1b3{bottom:213.101850px;}
.y6b{bottom:215.052450px;}
.y12a{bottom:215.365200px;}
.y140{bottom:217.066050px;}
.y29{bottom:217.879755px;}
.y38{bottom:218.248605px;}
.y9d{bottom:219.534450px;}
.y16c{bottom:223.906350px;}
.y193{bottom:225.825300px;}
.y192{bottom:225.829800px;}
.yfa{bottom:227.276250px;}
.y10e{bottom:227.279700px;}
.y1da{bottom:227.765250px;}
.y1ee{bottom:228.029850px;}
.y1c6{bottom:230.393100px;}
.y1b2{bottom:231.097350px;}
.y6a{bottom:233.047950px;}
.y129{bottom:233.378700px;}
.y13f{bottom:235.075050px;}
.yae{bottom:235.141650px;}
.y28{bottom:235.875255px;}
.y37{bottom:236.244105px;}
.y9c{bottom:237.543450px;}
.y16b{bottom:241.901850px;}
.y191{bottom:243.829800px;}
.yf9{bottom:245.271750px;}
.y10d{bottom:245.275200px;}
.y1d9{bottom:245.760750px;}
.y1ed{bottom:246.025350px;}
.y1c5{bottom:248.388600px;}
.y1b1{bottom:249.092850px;}
.y69{bottom:251.043450px;}
.y128{bottom:251.374200px;}
.y13e{bottom:253.070550px;}
.y27{bottom:253.870755px;}
.y36{bottom:254.239605px;}
.y9b{bottom:255.538950px;}
.yad{bottom:259.701150px;}
.y16a{bottom:259.897350px;}
.y190{bottom:261.834300px;}
.yf8{bottom:263.267250px;}
.y10c{bottom:263.270700px;}
.yf7{bottom:263.271750px;}
.y1d8{bottom:263.756250px;}
.y1ec{bottom:264.020850px;}
.y1c4{bottom:266.384100px;}
.y1b0{bottom:267.092850px;}
.y68{bottom:269.038950px;}
.y127{bottom:269.369700px;}
.y13d{bottom:271.066050px;}
.y26{bottom:271.866255px;}
.y35{bottom:272.235105px;}
.y9a{bottom:273.534450px;}
.y169{bottom:277.892850px;}
.y18f{bottom:279.829800px;}
.y10b{bottom:281.266200px;}
.yf6{bottom:281.285250px;}
.y1d7{bottom:281.751750px;}
.y1eb{bottom:282.016350px;}
.yac{bottom:284.260650px;}
.y1c3{bottom:284.384100px;}
.y67{bottom:287.034450px;}
.y126{bottom:287.365200px;}
.y13c{bottom:289.061550px;}
.y25{bottom:289.861755px;}
.y34{bottom:290.230605px;}
.y99{bottom:291.534450px;}
.y168{bottom:295.901850px;}
.y18e{bottom:297.829800px;}
.y10a{bottom:299.266200px;}
.yf5{bottom:299.280750px;}
.y1ea{bottom:300.011850px;}
.y66{bottom:305.052450px;}
.y125{bottom:305.369700px;}
.y1af{bottom:306.128850px;}
.y13b{bottom:307.061550px;}
.y24{bottom:307.857255px;}
.y33{bottom:308.226105px;}
.y98{bottom:309.534450px;}
.yab{bottom:311.140650px;}
.y167{bottom:313.897350px;}
.y18d{bottom:315.829800px;}
.yf4{bottom:317.276250px;}
.y1d6{bottom:317.751750px;}
.y1e9{bottom:318.007350px;}
.y65{bottom:323.047950px;}
.y124{bottom:323.365200px;}
.y1c2{bottom:323.393100px;}
.y1ae{bottom:324.124350px;}
.y23{bottom:325.852755px;}
.y32{bottom:326.221605px;}
.y97{bottom:327.552450px;}
.y166{bottom:331.892850px;}
.y18c{bottom:333.834300px;}
.yf3{bottom:335.271750px;}
.y1e8{bottom:336.002850px;}
.y123{bottom:336.905160px;}
.yaa{bottom:338.020650px;}
.y109{bottom:338.300250px;}
.y64{bottom:341.043450px;}
.y122{bottom:341.360700px;}
.y1c1{bottom:341.388600px;}
.y1ad{bottom:342.119850px;}
.y31{bottom:344.217105px;}
.y96{bottom:345.547950px;}
.y13a{bottom:346.070550px;}
.y165{bottom:349.901850px;}
.ya9{bottom:350.313900px;}
.ya7{bottom:350.320200px;}
.y18b{bottom:351.829800px;}
.yf2{bottom:353.289750px;}
.y1e7{bottom:354.002850px;}
.y108{bottom:356.295750px;}
.y63{bottom:359.038950px;}
.y121{bottom:359.360700px;}
.y1c0{bottom:359.393100px;}
.y1ac{bottom:360.115350px;}
.y22{bottom:361.852755px;}
.y30{bottom:362.212605px;}
.ya8{bottom:362.609400px;}
.y95{bottom:363.543450px;}
.y139{bottom:364.066050px;}
.y164{bottom:367.897350px;}
.y18a{bottom:369.829800px;}
.yf1{bottom:371.285250px;}
.y1e5{bottom:372.011850px;}
.y1d5{bottom:373.265250px;}
.y107{bottom:374.291250px;}
.y1e6{bottom:376.453890px;}
.y62{bottom:377.034450px;}
.y1bf{bottom:377.388600px;}
.y1ab{bottom:378.110850px;}
.y94{bottom:381.538950px;}
.y138{bottom:382.099200px;}
.y163{bottom:385.892850px;}
.y189{bottom:387.825300px;}
.y188{bottom:387.847800px;}
.yf0{bottom:389.280750px;}
.y1e4{bottom:390.007350px;}
.y1d4{bottom:391.260750px;}
.y106{bottom:392.286750px;}
.y61{bottom:395.052450px;}
.y1bd{bottom:395.401350px;}
.y1aa{bottom:396.106350px;}
.y120{bottom:398.387700px;}
.y93{bottom:399.534450px;}
.y1be{bottom:399.839640px;}
.y137{bottom:400.094700px;}
.ya6{bottom:402.694200px;}
.y162{bottom:403.892850px;}
.y187{bottom:405.843300px;}
.yef{bottom:407.276250px;}
.y1e3{bottom:408.002850px;}
.y1d3{bottom:409.256250px;}
.y105{bottom:410.282250px;}
.y60{bottom:413.047950px;}
.y1bc{bottom:413.396850px;}
.y1a9{bottom:414.101850px;}
.y11f{bottom:416.383200px;}
.y92{bottom:417.534450px;}
.y136{bottom:418.090200px;}
.y161{bottom:421.892850px;}
.y186{bottom:423.838800px;}
.y20c{bottom:424.972500px;}
.yee{bottom:425.271750px;}
.y225{bottom:425.796000px;}
.y1e2{bottom:426.039750px;}
.y1d2{bottom:427.251750px;}
.y104{bottom:428.277750px;}
.y5f{bottom:431.043450px;}
.y1bb{bottom:431.392350px;}
.y1a8{bottom:432.097350px;}
.y11e{bottom:434.378700px;}
.y91{bottom:435.538950px;}
.y135{bottom:436.085700px;}
.y160{bottom:439.888350px;}
.y15f{bottom:439.897350px;}
.yd0{bottom:440.034450px;}
.y185{bottom:441.834300px;}
.y17{bottom:442.265220px;}
.y20b{bottom:442.968000px;}
.yed{bottom:443.267250px;}
.y224{bottom:443.791500px;}
.y103{bottom:446.273250px;}
.y5e{bottom:449.038950px;}
.y1ba{bottom:449.387850px;}
.y1a7{bottom:450.092850px;}
.y11d{bottom:452.374200px;}
.y90{bottom:453.534450px;}
.y134{bottom:454.081200px;}
.y15e{bottom:457.892850px;}
.ycf{bottom:458.038950px;}
.y15{bottom:458.522670px;}
.y184{bottom:459.829800px;}
.y20a{bottom:460.963500px;}
.yec{bottom:461.267250px;}
.y223{bottom:461.787000px;}
.y16{bottom:462.028020px;}
.y102{bottom:464.268750px;}
.y5d{bottom:467.034450px;}
.y11c{bottom:470.369700px;}
.y8f{bottom:471.534450px;}
.y133{bottom:472.076700px;}
.y15d{bottom:475.892850px;}
.yce{bottom:476.034450px;}
.y183{bottom:477.825300px;}
.y209{bottom:478.959000px;}
.y222{bottom:479.782500px;}
.yea{bottom:483.556950px;}
.y1d1{bottom:483.637350px;}
.y5c{bottom:485.029950px;}
.y11b{bottom:488.365200px;}
.y14{bottom:488.522670px;}
.y8e{bottom:489.534450px;}
.y132{bottom:490.072200px;}
.y15c{bottom:493.928850px;}
.ycd{bottom:494.083950px;}
.y182{bottom:495.825300px;}
.y1d0{bottom:496.237350px;}
.y208{bottom:496.954500px;}
.y221{bottom:497.778000px;}
.ye9{bottom:501.552450px;}
.y5b{bottom:503.029950px;}
.y13{bottom:503.522670px;}
.y11a{bottom:506.360700px;}
.y1a6{bottom:507.023250px;}
.y8d{bottom:507.538950px;}
.y131{bottom:508.067700px;}
.y19f{bottom:511.700400px;}
.y15b{bottom:511.924350px;}
.ycc{bottom:512.079450px;}
.y207{bottom:514.950000px;}
.y220{bottom:515.773500px;}
.y117{bottom:517.653150px;}
.y12{bottom:518.522670px;}
.ye8{bottom:519.547950px;}
.y1a5{bottom:519.623250px;}
.y19e{bottom:524.300400px;}
.y8c{bottom:525.534450px;}
.y15a{bottom:529.919850px;}
.ycb{bottom:530.074950px;}
.y116{bottom:530.253150px;}
.y206{bottom:532.945500px;}
.y11{bottom:533.522670px;}
.y21f{bottom:533.769000px;}
.ye7{bottom:537.543450px;}
.y5a{bottom:542.092950px;}
.y8b{bottom:543.534450px;}
.y181{bottom:546.829800px;}
.y159{bottom:547.915350px;}
.yca{bottom:548.070450px;}
.y10{bottom:548.522670px;}
.y205{bottom:550.941000px;}
.y21e{bottom:551.764500px;}
.ye6{bottom:555.538950px;}
.y14a{bottom:558.472200px;}
.y59{bottom:560.088450px;}
.y8a{bottom:561.529950px;}
.yf{bottom:563.522670px;}
.y180{bottom:564.838800px;}
.y158{bottom:565.910850px;}
.yc9{bottom:566.065950px;}
.y204{bottom:568.936500px;}
.y21d{bottom:569.760000px;}
.y149{bottom:571.072200px;}
.ye5{bottom:573.534450px;}
.y58{bottom:578.083950px;}
.ye{bottom:578.522670px;}
.y89{bottom:579.529950px;}
.y17f{bottom:582.834300px;}
.y157{bottom:583.906350px;}
.yc8{bottom:584.061450px;}
.y203{bottom:586.932000px;}
.y21c{bottom:587.755500px;}
.ye4{bottom:591.538950px;}
.yd{bottom:593.522670px;}
.y57{bottom:596.079450px;}
.y17e{bottom:600.829800px;}
.y156{bottom:601.901850px;}
.yc7{bottom:602.056950px;}
.y202{bottom:604.927500px;}
.y21b{bottom:605.751000px;}
.yc{bottom:608.522670px;}
.ye3{bottom:609.534450px;}
.y56{bottom:614.074950px;}
.y88{bottom:618.529950px;}
.y17d{bottom:618.834300px;}
.y155{bottom:619.897350px;}
.yc6{bottom:620.052450px;}
.y201{bottom:622.923000px;}
.yb{bottom:623.522670px;}
.y21a{bottom:623.746500px;}
.ye2{bottom:627.529950px;}
.y55{bottom:632.070450px;}
.y17c{bottom:636.829800px;}
.y154{bottom:637.892850px;}
.yc5{bottom:638.047950px;}
.ya{bottom:638.522670px;}
.y200{bottom:640.918500px;}
.y219{bottom:641.742000px;}
.ye1{bottom:645.529950px;}
.y54{bottom:650.065950px;}
.y17b{bottom:654.834300px;}
.y153{bottom:655.892850px;}
.yc4{bottom:656.043450px;}
.y87{bottom:656.047950px;}
.y1ff{bottom:658.914000px;}
.y218{bottom:659.737500px;}
.y9{bottom:666.965970px;}
.y53{bottom:668.061450px;}
.y17a{bottom:672.829800px;}
.y152{bottom:673.892850px;}
.yc3{bottom:674.038950px;}
.y86{bottom:674.043450px;}
.y1fe{bottom:676.909500px;}
.y217{bottom:677.733000px;}
.ye0{bottom:684.583950px;}
.y52{bottom:686.056950px;}
.y178{bottom:690.829800px;}
.y151{bottom:691.897350px;}
.yc2{bottom:692.034450px;}
.y85{bottom:692.038950px;}
.y1fd{bottom:694.905000px;}
.y179{bottom:695.280840px;}
.y216{bottom:695.728500px;}
.ydf{bottom:702.579450px;}
.y51{bottom:704.052450px;}
.y1f3{bottom:708.754800px;}
.y177{bottom:708.825300px;}
.y176{bottom:708.829800px;}
.y150{bottom:709.892850px;}
.y84{bottom:710.034450px;}
.yc1{bottom:710.088450px;}
.y1fc{bottom:712.900500px;}
.y215{bottom:713.724000px;}
.yde{bottom:720.574950px;}
.y1f{bottom:720.769320px;}
.y50{bottom:722.047950px;}
.y175{bottom:726.830850px;}
.y14f{bottom:727.888350px;}
.yc0{bottom:728.083950px;}
.y83{bottom:728.088450px;}
.y1fb{bottom:730.896000px;}
.y214{bottom:731.719500px;}
.ydd{bottom:738.570450px;}
.y1e{bottom:739.129320px;}
.y4f{bottom:740.043450px;}
.ybf{bottom:746.079450px;}
.y82{bottom:746.083950px;}
.y1fa{bottom:748.891500px;}
.y1d{bottom:749.569320px;}
.y213{bottom:749.715000px;}
.ydc{bottom:756.565950px;}
.y4e{bottom:758.038950px;}
.y1a4{bottom:762.607350px;}
.y1c{bottom:763.969320px;}
.ybe{bottom:764.074950px;}
.y81{bottom:764.079450px;}
.y1cf{bottom:766.860600px;}
.y1f9{bottom:766.887000px;}
.y212{bottom:767.710500px;}
.y1a{bottom:767.929320px;}
.y119{bottom:768.275850px;}
.ydb{bottom:774.561450px;}
.y4d{bottom:776.034450px;}
.y19{bottom:778.369170px;}
.y14e{bottom:779.149350px;}
.y1b{bottom:780.680040px;}
.ybd{bottom:782.070450px;}
.y80{bottom:782.074950px;}
.y1f8{bottom:784.882500px;}
.y211{bottom:785.706000px;}
.y14d{bottom:791.749350px;}
.yda{bottom:792.556950px;}
.y4c{bottom:794.038950px;}
.y14b{bottom:796.625850px;}
.y18{bottom:796.729170px;}
.ybc{bottom:800.065950px;}
.y7f{bottom:800.070450px;}
.y1f7{bottom:802.878000px;}
.y210{bottom:803.701500px;}
.yd9{bottom:810.552450px;}
.y4b{bottom:812.034450px;}
.ybb{bottom:818.061450px;}
.y7e{bottom:818.065950px;}
.y1f6{bottom:820.873500px;}
.y20f{bottom:821.697000px;}
.yd8{bottom:828.547950px;}
.y4a{bottom:830.029950px;}
.y20{bottom:831.116370px;}
.yba{bottom:836.056950px;}
.y7d{bottom:836.061450px;}
.y1f5{bottom:838.869000px;}
.y20e{bottom:839.692500px;}
.yd7{bottom:846.543450px;}
.y49{bottom:848.023950px;}
.yb9{bottom:854.052450px;}
.y7c{bottom:854.056950px;}
.y1f4{bottom:856.864500px;}
.y20d{bottom:857.688000px;}
.y21{bottom:861.511155px;}
.yd6{bottom:864.538950px;}
.y48{bottom:869.029950px;}
.yb8{bottom:872.047950px;}
.y7b{bottom:872.052450px;}
.yd5{bottom:882.534450px;}
.yb7{bottom:890.043450px;}
.y7a{bottom:890.047950px;}
.y226{bottom:893.796450px;}
.yd4{bottom:900.529950px;}
.y8{bottom:903.279870px;}
.yb6{bottom:908.038950px;}
.y79{bottom:908.043450px;}
.yd3{bottom:918.523950px;}
.yb5{bottom:926.034450px;}
.y78{bottom:926.038950px;}
.y47{bottom:926.056950px;}
.y22b{bottom:929.156400px;}
.y7{bottom:937.479870px;}
.yd2{bottom:939.529950px;}
.y77{bottom:944.034450px;}
.y46{bottom:944.052450px;}
.y22a{bottom:947.151900px;}
.y45{bottom:962.047950px;}
.y76{bottom:962.101950px;}
.y229{bottom:965.147400px;}
.y6{bottom:971.679870px;}
.y1f2{bottom:974.502300px;}
.yd1{bottom:978.529950px;}
.y44{bottom:980.043450px;}
.y75{bottom:980.097450px;}
.y228{bottom:983.142900px;}
.y43{bottom:998.038950px;}
.y74{bottom:998.092950px;}
.y42{bottom:1016.034450px;}
.y73{bottom:1016.088450px;}
.y1ce{bottom:1018.446600px;}
.y227{bottom:1019.142900px;}
.y19b{bottom:1019.157300px;}
.y1a3{bottom:1020.281850px;}
.y118{bottom:1033.321350px;}
.y41{bottom:1034.029950px;}
.y72{bottom:1034.083950px;}
.y1{bottom:1060.389900px;}
.y19d{bottom:1101.861000px;}
.ya4{bottom:1101.861150px;}
.y4{bottom:1102.286250px;}
.y3e{bottom:1112.979300px;}
.y14c{bottom:1112.979450px;}
.y19c{bottom:1114.461000px;}
.ya3{bottom:1114.461150px;}
.y3{bottom:1114.886250px;}
.h23{height:18.026400px;}
.hc{height:21.102720px;}
.hb{height:21.168000px;}
.h12{height:22.817109px;}
.h4{height:30.912000px;}
.h20{height:30.996000px;}
.h21{height:31.080000px;}
.h7{height:31.122000px;}
.h14{height:31.836000px;}
.h28{height:31.837680px;}
.h2c{height:31.838280px;}
.h1e{height:31.890360px;}
.h1f{height:31.910760px;}
.h22{height:31.911600px;}
.h3{height:36.384000px;}
.h8{height:36.960000px;}
.ha{height:37.008000px;}
.h24{height:38.430000px;}
.h10{height:39.339844px;}
.h1d{height:40.014000px;}
.h18{height:40.348509px;}
.h19{height:40.403109px;}
.h25{height:40.421109px;}
.h11{height:40.456509px;}
.h31{height:40.471509px;}
.h2d{height:40.475109px;}
.h13{height:40.499709px;}
.h27{height:40.511109px;}
.h2e{height:40.529109px;}
.h17{height:40.547109px;}
.h26{height:40.565109px;}
.h2a{height:40.583109px;}
.h16{height:40.600509px;}
.h1c{height:40.601109px;}
.h2f{height:40.614909px;}
.h1b{height:40.619109px;}
.h1a{height:40.637109px;}
.h9{height:40.932000px;}
.hd{height:45.412800px;}
.h30{height:47.817844px;}
.h2{height:48.576000px;}
.h2b{height:49.275844px;}
.h15{height:55.440000px;}
.h29{height:58.459269px;}
.hf{height:69.300000px;}
.h32{height:73.359844px;}
.h6{height:83.904000px;}
.h1{height:1177.500000px;}
.he{height:1177.795455px;}
.h5{height:1177.795470px;}
.h0{height:1177.795500px;}
.w4{width:892.912500px;}
.w3{width:892.913989px;}
.w2{width:892.913996px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:31.920900px;}
.x5{left:33.882000px;}
.xa{left:102.189000px;}
.xc{left:105.732300px;}
.x16{left:108.425100px;}
.x1d{left:113.842500px;}
.x29{left:126.172650px;}
.x20{left:129.687750px;}
.x15{left:132.619796px;}
.x33{left:134.894850px;}
.xd{left:169.511846px;}
.xb{left:177.189000px;}
.x22{left:178.416300px;}
.x28{left:181.926150px;}
.x1e{left:188.697000px;}
.x17{left:222.518580px;}
.x7{left:246.051150px;}
.x6{left:247.134150px;}
.x2a{left:344.955930px;}
.x1{left:360.059850px;}
.xe{left:369.320096px;}
.x31{left:387.637800px;}
.x32{left:391.188300px;}
.x24{left:408.390600px;}
.x2f{left:413.142450px;}
.x23{left:415.275600px;}
.x2d{left:417.401550px;}
.x13{left:426.654896px;}
.x21{left:437.456700px;}
.x18{left:454.993500px;}
.x1a{left:468.026850px;}
.x9{left:470.542350px;}
.x26{left:476.716050px;}
.x2c{left:479.315280px;}
.x34{left:485.435850px;}
.x27{left:489.816030px;}
.x25{left:520.115130px;}
.x30{left:550.056630px;}
.x3{left:553.044000px;}
.x10{left:571.959896px;}
.x11{left:575.425976px;}
.x12{left:577.158896px;}
.x4{left:601.102500px;}
.x8{left:623.248650px;}
.x1f{left:633.666000px;}
.x1b{left:640.226850px;}
.xf{left:651.598946px;}
.x14{left:657.489896px;}
.x2{left:666.112650px;}
.x2e{left:777.948030px;}
.x2b{left:784.911300px;}
.x19{left:828.141750px;}
@media print{
.v5{vertical-align:-15.840000pt;}
.v2{vertical-align:-14.080000pt;}
.v7{vertical-align:-12.320000pt;}
.v8{vertical-align:-5.040000pt;}
.va{vertical-align:-2.496000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.536000pt;}
.v9{vertical-align:8.832000pt;}
.v6{vertical-align:12.301867pt;}
.v1{vertical-align:14.080000pt;}
.v4{vertical-align:15.679467pt;}
.v3{vertical-align:17.600000pt;}
.vc{vertical-align:30.240000pt;}
.ls8{letter-spacing:-7.739520pt;}
.ls19{letter-spacing:-5.184000pt;}
.lsf{letter-spacing:-1.200000pt;}
.ls1b{letter-spacing:-0.933333pt;}
.ls4{letter-spacing:-0.853333pt;}
.ls18{letter-spacing:-0.696000pt;}
.ls1c{letter-spacing:-0.541333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.278400pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000107pt;}
.ls12{letter-spacing:0.000213pt;}
.ls1{letter-spacing:0.004160pt;}
.ls2{letter-spacing:0.022933pt;}
.ls11{letter-spacing:0.216533pt;}
.ls17{letter-spacing:0.278400pt;}
.lsc{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls6{letter-spacing:1.200000pt;}
.ls0{letter-spacing:2.986667pt;}
.ls16{letter-spacing:6.000000pt;}
.ls1e{letter-spacing:9.600000pt;}
.ls10{letter-spacing:15.888000pt;}
.ls1f{letter-spacing:17.328000pt;}
.lsa{letter-spacing:39.355307pt;}
.ls1d{letter-spacing:1119.792000pt;}
.ls13{letter-spacing:1124.208000pt;}
.ls21{letter-spacing:1138.560000pt;}
.ls20{letter-spacing:1193.472000pt;}
.ls1a{letter-spacing:1230.048000pt;}
.lsd{letter-spacing:1235.904000pt;}
.ls15{letter-spacing:1260.384000pt;}
.lse{letter-spacing:1263.072000pt;}
.ws2{word-spacing:-42.666667pt;}
.ws19{word-spacing:-17.520000pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.626667pt;}
.ws5{word-spacing:-13.344000pt;}
.ws9{word-spacing:-12.864000pt;}
.ws18{word-spacing:-12.144000pt;}
.ws1{word-spacing:-10.624000pt;}
.ws4{word-spacing:-10.455467pt;}
.ws13{word-spacing:-8.017920pt;}
.wse{word-spacing:-7.903467pt;}
.ws7{word-spacing:-7.739520pt;}
.wsa{word-spacing:-7.461120pt;}
.ws14{word-spacing:-7.043520pt;}
.ws0{word-spacing:-6.161920pt;}
.ws11{word-spacing:-5.976320pt;}
.ws10{word-spacing:-5.759787pt;}
.ws15{word-spacing:-5.218453pt;}
.ws6{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:51.221333pt;}
.wsc{word-spacing:54.656000pt;}
.wsd{word-spacing:112.336000pt;}
.ws12{word-spacing:1123.296000pt;}
.ws17{word-spacing:1141.104000pt;}
.ws16{word-spacing:1161.840000pt;}
._3f{margin-left:-17.904000pt;}
._3c{margin-left:-16.218667pt;}
._1f{margin-left:-13.632000pt;}
._3e{margin-left:-12.614933pt;}
._9{margin-left:-11.437867pt;}
._a{margin-left:-9.916907pt;}
._3d{margin-left:-8.606827pt;}
._b{margin-left:-7.658133pt;}
._15{margin-left:-6.475733pt;}
._0{margin-left:-5.189333pt;}
._18{margin-left:-4.224000pt;}
._2{margin-left:-3.072000pt;}
._1{margin-left:-1.925333pt;}
._5{margin-left:-0.939520pt;}
._3{width:1.296000pt;}
._4{width:2.309333pt;}
._6{width:3.290667pt;}
._7{width:4.186667pt;}
._13{width:5.797333pt;}
._c{width:7.296000pt;}
._12{width:8.880000pt;}
._10{width:10.368000pt;}
._f{width:11.328000pt;}
._16{width:12.336000pt;}
._1e{width:14.544000pt;}
._e{width:16.080000pt;}
._11{width:17.664000pt;}
._3b{width:18.576000pt;}
._1d{width:19.584000pt;}
._1a{width:21.024000pt;}
._14{width:22.032000pt;}
._1b{width:23.184000pt;}
._d{width:24.096000pt;}
._25{width:25.296000pt;}
._20{width:26.448000pt;}
._22{width:28.176000pt;}
._19{width:29.904000pt;}
._23{width:31.152000pt;}
._26{width:33.648000pt;}
._1c{width:34.656000pt;}
._44{width:35.664000pt;}
._43{width:37.665707pt;}
._42{width:38.875520pt;}
._41{width:40.320000pt;}
._17{width:41.792000pt;}
._46{width:43.969067pt;}
._45{width:45.844267pt;}
._24{width:47.136000pt;}
._21{width:62.256000pt;}
._35{width:67.386667pt;}
._32{width:69.365333pt;}
._31{width:70.485333pt;}
._37{width:71.530667pt;}
._2c{width:74.442667pt;}
._39{width:77.317333pt;}
._2e{width:78.848000pt;}
._2b{width:86.762667pt;}
._2d{width:88.293333pt;}
._28{width:105.616000pt;}
._27{width:106.586667pt;}
._29{width:108.266667pt;}
._2a{width:111.066667pt;}
._30{width:119.989333pt;}
._36{width:130.592000pt;}
._3a{width:166.544000pt;}
._34{width:173.786667pt;}
._33{width:179.834667pt;}
._8{width:181.376000pt;}
._38{width:183.456000pt;}
._40{width:241.472000pt;}
._2f{width:829.957333pt;}
.fsb{font-size:21.653333pt;}
.fs4{font-size:24.746667pt;}
.fs9{font-size:27.840000pt;}
.fs7{font-size:30.933333pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs3{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:55.196267pt;}
.yeb{bottom:55.196400pt;}
.y5{bottom:58.031333pt;}
.y3f{bottom:58.033600pt;}
.ya5{bottom:58.033733pt;}
.y2{bottom:71.076133pt;}
.y174{bottom:87.015867pt;}
.y19a{bottom:88.741600pt;}
.y115{bottom:90.034400pt;}
.y101{bottom:90.043333pt;}
.y1e1{bottom:90.486000pt;}
.y1cd{bottom:92.789867pt;}
.y1b9{bottom:93.419867pt;}
.y71{bottom:95.181733pt;}
.y130{bottom:95.439733pt;}
.ya2{bottom:96.479067pt;}
.y147{bottom:96.959600pt;}
.y148{bottom:100.904080pt;}
.y173{bottom:103.019867pt;}
.y199{bottom:104.737600pt;}
.y114{bottom:106.030400pt;}
.y100{bottom:106.039333pt;}
.y1e0{bottom:106.482000pt;}
.y1cc{bottom:108.817867pt;}
.y1b8{bottom:109.423867pt;}
.y70{bottom:111.177733pt;}
.y12f{bottom:111.435733pt;}
.ya1{bottom:112.475067pt;}
.y146{bottom:112.955600pt;}
.y2f{bottom:113.650760pt;}
.y3d{bottom:113.988227pt;}
.yb4{bottom:115.623067pt;}
.y172{bottom:119.015867pt;}
.y198{bottom:120.737600pt;}
.y113{bottom:122.026400pt;}
.yff{bottom:122.035333pt;}
.y1df{bottom:122.478000pt;}
.y1a2{bottom:122.636933pt;}
.y1cb{bottom:124.813867pt;}
.y1b7{bottom:125.419867pt;}
.yb3{bottom:126.291067pt;}
.y6f{bottom:127.173733pt;}
.y12e{bottom:127.439733pt;}
.ya0{bottom:128.471067pt;}
.y145{bottom:128.951600pt;}
.y2d{bottom:129.686893pt;}
.y3c{bottom:129.984227pt;}
.y2e{bottom:133.607240pt;}
.y1a1{bottom:133.836933pt;}
.y170{bottom:135.019867pt;}
.y197{bottom:136.745600pt;}
.y112{bottom:138.022400pt;}
.yfe{bottom:138.031333pt;}
.y1de{bottom:138.474000pt;}
.y171{bottom:138.972213pt;}
.yb2{bottom:140.039067pt;}
.y1ca{bottom:140.809867pt;}
.y1b6{bottom:141.419867pt;}
.y6e{bottom:143.169733pt;}
.y12d{bottom:143.435733pt;}
.y9f{bottom:144.471067pt;}
.y144{bottom:144.947600pt;}
.y1a0{bottom:145.036933pt;}
.y2c{bottom:145.682893pt;}
.y3b{bottom:145.980227pt;}
.yb1{bottom:147.620133pt;}
.y16f{bottom:151.015867pt;}
.y196{bottom:152.741600pt;}
.y111{bottom:154.018400pt;}
.yfd{bottom:154.027333pt;}
.y1dd{bottom:154.470000pt;}
.y1f1{bottom:154.705200pt;}
.y1c9{bottom:156.805867pt;}
.y1b5{bottom:157.431867pt;}
.yb0{bottom:158.288133pt;}
.y6d{bottom:159.165733pt;}
.y12c{bottom:159.443733pt;}
.y142{bottom:160.955600pt;}
.y2b{bottom:161.678893pt;}
.y3a{bottom:161.976227pt;}
.y143{bottom:164.904080pt;}
.y16e{bottom:167.035867pt;}
.y195{bottom:168.737600pt;}
.yfc{bottom:170.023333pt;}
.y110{bottom:170.034400pt;}
.y1dc{bottom:170.466000pt;}
.y1f0{bottom:170.701200pt;}
.y1c8{bottom:172.801867pt;}
.y1b4{bottom:173.427867pt;}
.y6c{bottom:175.161733pt;}
.y12b{bottom:175.439733pt;}
.y141{bottom:176.951600pt;}
.y2a{bottom:177.674893pt;}
.y39{bottom:178.002760pt;}
.y9e{bottom:179.145733pt;}
.y16d{bottom:183.031867pt;}
.y194{bottom:184.737600pt;}
.yfb{bottom:186.019333pt;}
.y10f{bottom:186.030400pt;}
.y1db{bottom:186.462000pt;}
.y1ef{bottom:186.697200pt;}
.yaf{bottom:187.184133pt;}
.y1c7{bottom:188.797867pt;}
.y1b3{bottom:189.423867pt;}
.y6b{bottom:191.157733pt;}
.y12a{bottom:191.435733pt;}
.y140{bottom:192.947600pt;}
.y29{bottom:193.670893pt;}
.y38{bottom:193.998760pt;}
.y9d{bottom:195.141733pt;}
.y16c{bottom:199.027867pt;}
.y193{bottom:200.733600pt;}
.y192{bottom:200.737600pt;}
.yfa{bottom:202.023333pt;}
.y10e{bottom:202.026400pt;}
.y1da{bottom:202.458000pt;}
.y1ee{bottom:202.693200pt;}
.y1c6{bottom:204.793867pt;}
.y1b2{bottom:205.419867pt;}
.y6a{bottom:207.153733pt;}
.y129{bottom:207.447733pt;}
.y13f{bottom:208.955600pt;}
.yae{bottom:209.014800pt;}
.y28{bottom:209.666893pt;}
.y37{bottom:209.994760pt;}
.y9c{bottom:211.149733pt;}
.y16b{bottom:215.023867pt;}
.y191{bottom:216.737600pt;}
.yf9{bottom:218.019333pt;}
.y10d{bottom:218.022400pt;}
.y1d9{bottom:218.454000pt;}
.y1ed{bottom:218.689200pt;}
.y1c5{bottom:220.789867pt;}
.y1b1{bottom:221.415867pt;}
.y69{bottom:223.149733pt;}
.y128{bottom:223.443733pt;}
.y13e{bottom:224.951600pt;}
.y27{bottom:225.662893pt;}
.y36{bottom:225.990760pt;}
.y9b{bottom:227.145733pt;}
.yad{bottom:230.845467pt;}
.y16a{bottom:231.019867pt;}
.y190{bottom:232.741600pt;}
.yf8{bottom:234.015333pt;}
.y10c{bottom:234.018400pt;}
.yf7{bottom:234.019333pt;}
.y1d8{bottom:234.450000pt;}
.y1ec{bottom:234.685200pt;}
.y1c4{bottom:236.785867pt;}
.y1b0{bottom:237.415867pt;}
.y68{bottom:239.145733pt;}
.y127{bottom:239.439733pt;}
.y13d{bottom:240.947600pt;}
.y26{bottom:241.658893pt;}
.y35{bottom:241.986760pt;}
.y9a{bottom:243.141733pt;}
.y169{bottom:247.015867pt;}
.y18f{bottom:248.737600pt;}
.y10b{bottom:250.014400pt;}
.yf6{bottom:250.031333pt;}
.y1d7{bottom:250.446000pt;}
.y1eb{bottom:250.681200pt;}
.yac{bottom:252.676133pt;}
.y1c3{bottom:252.785867pt;}
.y67{bottom:255.141733pt;}
.y126{bottom:255.435733pt;}
.y13c{bottom:256.943600pt;}
.y25{bottom:257.654893pt;}
.y34{bottom:257.982760pt;}
.y99{bottom:259.141733pt;}
.y168{bottom:263.023867pt;}
.y18e{bottom:264.737600pt;}
.y10a{bottom:266.014400pt;}
.yf5{bottom:266.027333pt;}
.y1ea{bottom:266.677200pt;}
.y66{bottom:271.157733pt;}
.y125{bottom:271.439733pt;}
.y1af{bottom:272.114533pt;}
.y13b{bottom:272.943600pt;}
.y24{bottom:273.650893pt;}
.y33{bottom:273.978760pt;}
.y98{bottom:275.141733pt;}
.yab{bottom:276.569467pt;}
.y167{bottom:279.019867pt;}
.y18d{bottom:280.737600pt;}
.yf4{bottom:282.023333pt;}
.y1d6{bottom:282.446000pt;}
.y1e9{bottom:282.673200pt;}
.y65{bottom:287.153733pt;}
.y124{bottom:287.435733pt;}
.y1c2{bottom:287.460533pt;}
.y1ae{bottom:288.110533pt;}
.y23{bottom:289.646893pt;}
.y32{bottom:289.974760pt;}
.y97{bottom:291.157733pt;}
.y166{bottom:295.015867pt;}
.y18c{bottom:296.741600pt;}
.yf3{bottom:298.019333pt;}
.y1e8{bottom:298.669200pt;}
.y123{bottom:299.471253pt;}
.yaa{bottom:300.462800pt;}
.y109{bottom:300.711333pt;}
.y64{bottom:303.149733pt;}
.y122{bottom:303.431733pt;}
.y1c1{bottom:303.456533pt;}
.y1ad{bottom:304.106533pt;}
.y31{bottom:305.970760pt;}
.y96{bottom:307.153733pt;}
.y13a{bottom:307.618267pt;}
.y165{bottom:311.023867pt;}
.ya9{bottom:311.390133pt;}
.ya7{bottom:311.395733pt;}
.y18b{bottom:312.737600pt;}
.yf2{bottom:314.035333pt;}
.y1e7{bottom:314.669200pt;}
.y108{bottom:316.707333pt;}
.y63{bottom:319.145733pt;}
.y121{bottom:319.431733pt;}
.y1c0{bottom:319.460533pt;}
.y1ac{bottom:320.102533pt;}
.y22{bottom:321.646893pt;}
.y30{bottom:321.966760pt;}
.ya8{bottom:322.319467pt;}
.y95{bottom:323.149733pt;}
.y139{bottom:323.614267pt;}
.y164{bottom:327.019867pt;}
.y18a{bottom:328.737600pt;}
.yf1{bottom:330.031333pt;}
.y1e5{bottom:330.677200pt;}
.y1d5{bottom:331.791333pt;}
.y107{bottom:332.703333pt;}
.y1e6{bottom:334.625680pt;}
.y62{bottom:335.141733pt;}
.y1bf{bottom:335.456533pt;}
.y1ab{bottom:336.098533pt;}
.y94{bottom:339.145733pt;}
.y138{bottom:339.643733pt;}
.y163{bottom:343.015867pt;}
.y189{bottom:344.733600pt;}
.y188{bottom:344.753600pt;}
.yf0{bottom:346.027333pt;}
.y1e4{bottom:346.673200pt;}
.y1d4{bottom:347.787333pt;}
.y106{bottom:348.699333pt;}
.y61{bottom:351.157733pt;}
.y1bd{bottom:351.467867pt;}
.y1aa{bottom:352.094533pt;}
.y120{bottom:354.122400pt;}
.y93{bottom:355.141733pt;}
.y1be{bottom:355.413013pt;}
.y137{bottom:355.639733pt;}
.ya6{bottom:357.950400pt;}
.y162{bottom:359.015867pt;}
.y187{bottom:360.749600pt;}
.yef{bottom:362.023333pt;}
.y1e3{bottom:362.669200pt;}
.y1d3{bottom:363.783333pt;}
.y105{bottom:364.695333pt;}
.y60{bottom:367.153733pt;}
.y1bc{bottom:367.463867pt;}
.y1a9{bottom:368.090533pt;}
.y11f{bottom:370.118400pt;}
.y92{bottom:371.141733pt;}
.y136{bottom:371.635733pt;}
.y161{bottom:375.015867pt;}
.y186{bottom:376.745600pt;}
.y20c{bottom:377.753333pt;}
.yee{bottom:378.019333pt;}
.y225{bottom:378.485333pt;}
.y1e2{bottom:378.702000pt;}
.y1d2{bottom:379.779333pt;}
.y104{bottom:380.691333pt;}
.y5f{bottom:383.149733pt;}
.y1bb{bottom:383.459867pt;}
.y1a8{bottom:384.086533pt;}
.y11e{bottom:386.114400pt;}
.y91{bottom:387.145733pt;}
.y135{bottom:387.631733pt;}
.y160{bottom:391.011867pt;}
.y15f{bottom:391.019867pt;}
.yd0{bottom:391.141733pt;}
.y185{bottom:392.741600pt;}
.y17{bottom:393.124640pt;}
.y20b{bottom:393.749333pt;}
.yed{bottom:394.015333pt;}
.y224{bottom:394.481333pt;}
.y103{bottom:396.687333pt;}
.y5e{bottom:399.145733pt;}
.y1ba{bottom:399.455867pt;}
.y1a7{bottom:400.082533pt;}
.y11d{bottom:402.110400pt;}
.y90{bottom:403.141733pt;}
.y134{bottom:403.627733pt;}
.y15e{bottom:407.015867pt;}
.ycf{bottom:407.145733pt;}
.y15{bottom:407.575707pt;}
.y184{bottom:408.737600pt;}
.y20a{bottom:409.745333pt;}
.yec{bottom:410.015333pt;}
.y223{bottom:410.477333pt;}
.y16{bottom:410.691573pt;}
.y102{bottom:412.683333pt;}
.y5d{bottom:415.141733pt;}
.y11c{bottom:418.106400pt;}
.y8f{bottom:419.141733pt;}
.y133{bottom:419.623733pt;}
.y15d{bottom:423.015867pt;}
.yce{bottom:423.141733pt;}
.y183{bottom:424.733600pt;}
.y209{bottom:425.741333pt;}
.y222{bottom:426.473333pt;}
.yea{bottom:429.828400pt;}
.y1d1{bottom:429.899867pt;}
.y5c{bottom:431.137733pt;}
.y11b{bottom:434.102400pt;}
.y14{bottom:434.242373pt;}
.y8e{bottom:435.141733pt;}
.y132{bottom:435.619733pt;}
.y15c{bottom:439.047867pt;}
.ycd{bottom:439.185733pt;}
.y182{bottom:440.733600pt;}
.y1d0{bottom:441.099867pt;}
.y208{bottom:441.737333pt;}
.y221{bottom:442.469333pt;}
.ye9{bottom:445.824400pt;}
.y5b{bottom:447.137733pt;}
.y13{bottom:447.575707pt;}
.y11a{bottom:450.098400pt;}
.y1a6{bottom:450.687333pt;}
.y8d{bottom:451.145733pt;}
.y131{bottom:451.615733pt;}
.y19f{bottom:454.844800pt;}
.y15b{bottom:455.043867pt;}
.ycc{bottom:455.181733pt;}
.y207{bottom:457.733333pt;}
.y220{bottom:458.465333pt;}
.y117{bottom:460.136133pt;}
.y12{bottom:460.909040pt;}
.ye8{bottom:461.820400pt;}
.y1a5{bottom:461.887333pt;}
.y19e{bottom:466.044800pt;}
.y8c{bottom:467.141733pt;}
.y15a{bottom:471.039867pt;}
.ycb{bottom:471.177733pt;}
.y116{bottom:471.336133pt;}
.y206{bottom:473.729333pt;}
.y11{bottom:474.242373pt;}
.y21f{bottom:474.461333pt;}
.ye7{bottom:477.816400pt;}
.y5a{bottom:481.860400pt;}
.y8b{bottom:483.141733pt;}
.y181{bottom:486.070933pt;}
.y159{bottom:487.035867pt;}
.yca{bottom:487.173733pt;}
.y10{bottom:487.575707pt;}
.y205{bottom:489.725333pt;}
.y21e{bottom:490.457333pt;}
.ye6{bottom:493.812400pt;}
.y14a{bottom:496.419733pt;}
.y59{bottom:497.856400pt;}
.y8a{bottom:499.137733pt;}
.yf{bottom:500.909040pt;}
.y180{bottom:502.078933pt;}
.y158{bottom:503.031867pt;}
.yc9{bottom:503.169733pt;}
.y204{bottom:505.721333pt;}
.y21d{bottom:506.453333pt;}
.y149{bottom:507.619733pt;}
.ye5{bottom:509.808400pt;}
.y58{bottom:513.852400pt;}
.ye{bottom:514.242373pt;}
.y89{bottom:515.137733pt;}
.y17f{bottom:518.074933pt;}
.y157{bottom:519.027867pt;}
.yc8{bottom:519.165733pt;}
.y203{bottom:521.717333pt;}
.y21c{bottom:522.449333pt;}
.ye4{bottom:525.812400pt;}
.yd{bottom:527.575707pt;}
.y57{bottom:529.848400pt;}
.y17e{bottom:534.070933pt;}
.y156{bottom:535.023867pt;}
.yc7{bottom:535.161733pt;}
.y202{bottom:537.713333pt;}
.y21b{bottom:538.445333pt;}
.yc{bottom:540.909040pt;}
.ye3{bottom:541.808400pt;}
.y56{bottom:545.844400pt;}
.y88{bottom:549.804400pt;}
.y17d{bottom:550.074933pt;}
.y155{bottom:551.019867pt;}
.yc6{bottom:551.157733pt;}
.y201{bottom:553.709333pt;}
.yb{bottom:554.242373pt;}
.y21a{bottom:554.441333pt;}
.ye2{bottom:557.804400pt;}
.y55{bottom:561.840400pt;}
.y17c{bottom:566.070933pt;}
.y154{bottom:567.015867pt;}
.yc5{bottom:567.153733pt;}
.ya{bottom:567.575707pt;}
.y200{bottom:569.705333pt;}
.y219{bottom:570.437333pt;}
.ye1{bottom:573.804400pt;}
.y54{bottom:577.836400pt;}
.y17b{bottom:582.074933pt;}
.y153{bottom:583.015867pt;}
.yc4{bottom:583.149733pt;}
.y87{bottom:583.153733pt;}
.y1ff{bottom:585.701333pt;}
.y218{bottom:586.433333pt;}
.y9{bottom:592.858640pt;}
.y53{bottom:593.832400pt;}
.y17a{bottom:598.070933pt;}
.y152{bottom:599.015867pt;}
.yc3{bottom:599.145733pt;}
.y86{bottom:599.149733pt;}
.y1fe{bottom:601.697333pt;}
.y217{bottom:602.429333pt;}
.ye0{bottom:608.519067pt;}
.y52{bottom:609.828400pt;}
.y178{bottom:614.070933pt;}
.y151{bottom:615.019867pt;}
.yc2{bottom:615.141733pt;}
.y85{bottom:615.145733pt;}
.y1fd{bottom:617.693333pt;}
.y179{bottom:618.027413pt;}
.y216{bottom:618.425333pt;}
.ydf{bottom:624.515067pt;}
.y51{bottom:625.824400pt;}
.y1f3{bottom:630.004267pt;}
.y177{bottom:630.066933pt;}
.y176{bottom:630.070933pt;}
.y150{bottom:631.015867pt;}
.y84{bottom:631.141733pt;}
.yc1{bottom:631.189733pt;}
.y1fc{bottom:633.689333pt;}
.y215{bottom:634.421333pt;}
.yde{bottom:640.511067pt;}
.y1f{bottom:640.683840pt;}
.y50{bottom:641.820400pt;}
.y175{bottom:646.071867pt;}
.y14f{bottom:647.011867pt;}
.yc0{bottom:647.185733pt;}
.y83{bottom:647.189733pt;}
.y1fb{bottom:649.685333pt;}
.y214{bottom:650.417333pt;}
.ydd{bottom:656.507067pt;}
.y1e{bottom:657.003840pt;}
.y4f{bottom:657.816400pt;}
.ybf{bottom:663.181733pt;}
.y82{bottom:663.185733pt;}
.y1fa{bottom:665.681333pt;}
.y1d{bottom:666.283840pt;}
.y213{bottom:666.413333pt;}
.ydc{bottom:672.503067pt;}
.y4e{bottom:673.812400pt;}
.y1a4{bottom:677.873200pt;}
.y1c{bottom:679.083840pt;}
.ybe{bottom:679.177733pt;}
.y81{bottom:679.181733pt;}
.y1cf{bottom:681.653867pt;}
.y1f9{bottom:681.677333pt;}
.y212{bottom:682.409333pt;}
.y1a{bottom:682.603840pt;}
.y119{bottom:682.911867pt;}
.ydb{bottom:688.499067pt;}
.y4d{bottom:689.808400pt;}
.y19{bottom:691.883707pt;}
.y14e{bottom:692.577200pt;}
.y1b{bottom:693.937813pt;}
.ybd{bottom:695.173733pt;}
.y80{bottom:695.177733pt;}
.y1f8{bottom:697.673333pt;}
.y211{bottom:698.405333pt;}
.y14d{bottom:703.777200pt;}
.yda{bottom:704.495067pt;}
.y4c{bottom:705.812400pt;}
.y14b{bottom:708.111867pt;}
.y18{bottom:708.203707pt;}
.ybc{bottom:711.169733pt;}
.y7f{bottom:711.173733pt;}
.y1f7{bottom:713.669333pt;}
.y210{bottom:714.401333pt;}
.yd9{bottom:720.491067pt;}
.y4b{bottom:721.808400pt;}
.ybb{bottom:727.165733pt;}
.y7e{bottom:727.169733pt;}
.y1f6{bottom:729.665333pt;}
.y20f{bottom:730.397333pt;}
.yd8{bottom:736.487067pt;}
.y4a{bottom:737.804400pt;}
.y20{bottom:738.770107pt;}
.yba{bottom:743.161733pt;}
.y7d{bottom:743.165733pt;}
.y1f5{bottom:745.661333pt;}
.y20e{bottom:746.393333pt;}
.yd7{bottom:752.483067pt;}
.y49{bottom:753.799067pt;}
.yb9{bottom:759.157733pt;}
.y7c{bottom:759.161733pt;}
.y1f4{bottom:761.657333pt;}
.y20d{bottom:762.389333pt;}
.y21{bottom:765.787693pt;}
.yd6{bottom:768.479067pt;}
.y48{bottom:772.471067pt;}
.yb8{bottom:775.153733pt;}
.y7b{bottom:775.157733pt;}
.yd5{bottom:784.475067pt;}
.yb7{bottom:791.149733pt;}
.y7a{bottom:791.153733pt;}
.y226{bottom:794.485733pt;}
.yd4{bottom:800.471067pt;}
.y8{bottom:802.915440pt;}
.yb6{bottom:807.145733pt;}
.y79{bottom:807.149733pt;}
.yd3{bottom:816.465733pt;}
.yb5{bottom:823.141733pt;}
.y78{bottom:823.145733pt;}
.y47{bottom:823.161733pt;}
.y22b{bottom:825.916800pt;}
.y7{bottom:833.315440pt;}
.yd2{bottom:835.137733pt;}
.y77{bottom:839.141733pt;}
.y46{bottom:839.157733pt;}
.y22a{bottom:841.912800pt;}
.y45{bottom:855.153733pt;}
.y76{bottom:855.201733pt;}
.y229{bottom:857.908800pt;}
.y6{bottom:863.715440pt;}
.y1f2{bottom:866.224267pt;}
.yd1{bottom:869.804400pt;}
.y44{bottom:871.149733pt;}
.y75{bottom:871.197733pt;}
.y228{bottom:873.904800pt;}
.y43{bottom:887.145733pt;}
.y74{bottom:887.193733pt;}
.y42{bottom:903.141733pt;}
.y73{bottom:903.189733pt;}
.y1ce{bottom:905.285867pt;}
.y227{bottom:905.904800pt;}
.y19b{bottom:905.917600pt;}
.y1a3{bottom:906.917200pt;}
.y118{bottom:918.507867pt;}
.y41{bottom:919.137733pt;}
.y72{bottom:919.185733pt;}
.y1{bottom:942.568800pt;}
.y19d{bottom:979.432000pt;}
.ya4{bottom:979.432133pt;}
.y4{bottom:979.810000pt;}
.y3e{bottom:989.314933pt;}
.y14c{bottom:989.315067pt;}
.y19c{bottom:990.632000pt;}
.ya3{bottom:990.632133pt;}
.y3{bottom:991.010000pt;}
.h23{height:16.023467pt;}
.hc{height:18.757973pt;}
.hb{height:18.816000pt;}
.h12{height:20.281875pt;}
.h4{height:27.477333pt;}
.h20{height:27.552000pt;}
.h21{height:27.626667pt;}
.h7{height:27.664000pt;}
.h14{height:28.298667pt;}
.h28{height:28.300160pt;}
.h2c{height:28.300693pt;}
.h1e{height:28.346987pt;}
.h1f{height:28.365120pt;}
.h22{height:28.365867pt;}
.h3{height:32.341333pt;}
.h8{height:32.853333pt;}
.ha{height:32.896000pt;}
.h24{height:34.160000pt;}
.h10{height:34.968750pt;}
.h1d{height:35.568000pt;}
.h18{height:35.865342pt;}
.h19{height:35.913875pt;}
.h25{height:35.929875pt;}
.h11{height:35.961342pt;}
.h31{height:35.974675pt;}
.h2d{height:35.977875pt;}
.h13{height:35.999742pt;}
.h27{height:36.009875pt;}
.h2e{height:36.025875pt;}
.h17{height:36.041875pt;}
.h26{height:36.057875pt;}
.h2a{height:36.073875pt;}
.h16{height:36.089342pt;}
.h1c{height:36.089875pt;}
.h2f{height:36.102142pt;}
.h1b{height:36.105875pt;}
.h1a{height:36.121875pt;}
.h9{height:36.384000pt;}
.hd{height:40.366933pt;}
.h30{height:42.504750pt;}
.h2{height:43.178667pt;}
.h2b{height:43.800750pt;}
.h15{height:49.280000pt;}
.h29{height:51.963795pt;}
.hf{height:61.600000pt;}
.h32{height:65.208750pt;}
.h6{height:74.581333pt;}
.h1{height:1046.666667pt;}
.he{height:1046.929293pt;}
.h5{height:1046.929307pt;}
.h0{height:1046.929333pt;}
.w4{width:793.700000pt;}
.w3{width:793.701323pt;}
.w2{width:793.701330pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:28.374133pt;}
.x5{left:30.117333pt;}
.xa{left:90.834667pt;}
.xc{left:93.984267pt;}
.x16{left:96.377867pt;}
.x1d{left:101.193333pt;}
.x29{left:112.153467pt;}
.x20{left:115.278000pt;}
.x15{left:117.884263pt;}
.x33{left:119.906533pt;}
.xd{left:150.677197pt;}
.xb{left:157.501333pt;}
.x22{left:158.592267pt;}
.x28{left:161.712133pt;}
.x1e{left:167.730667pt;}
.x17{left:197.794293pt;}
.x7{left:218.712133pt;}
.x6{left:219.674800pt;}
.x2a{left:306.627493pt;}
.x1{left:320.053200pt;}
.xe{left:328.284530pt;}
.x31{left:344.566933pt;}
.x32{left:347.722933pt;}
.x24{left:363.013867pt;}
.x2f{left:367.237733pt;}
.x23{left:369.133867pt;}
.x2d{left:371.023600pt;}
.x13{left:379.248797pt;}
.x21{left:388.850400pt;}
.x18{left:404.438667pt;}
.x1a{left:416.023867pt;}
.x9{left:418.259867pt;}
.x26{left:423.747600pt;}
.x2c{left:426.058027pt;}
.x34{left:431.498533pt;}
.x27{left:435.392027pt;}
.x25{left:462.324560pt;}
.x30{left:488.939227pt;}
.x3{left:491.594667pt;}
.x10{left:508.408797pt;}
.x11{left:511.489757pt;}
.x12{left:513.030130pt;}
.x4{left:534.313333pt;}
.x8{left:553.998800pt;}
.x1f{left:563.258667pt;}
.x1b{left:569.090533pt;}
.xf{left:579.199063pt;}
.x14{left:584.435463pt;}
.x2{left:592.100133pt;}
.x2e{left:691.509360pt;}
.x2b{left:697.698933pt;}
.x19{left:736.126000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  