
    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_d71b27ff196772ff01d295e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.081000;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_7d380e2cec06d2efc83f7c1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.081000;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_3897aa08e720af0b082504f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969053;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_570d13ceba5883bc7d614776.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.099053;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_54d5bc1e9b9a6d3f63b6d31d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100000;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_5ad080b44e65f9417258c162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_cb53f27528951d6a4e67efb1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.105000;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_006cebb9a8b0d82f6341fcb8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100000;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_89fc3541cd37337d9251f79b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_1609ea08477e87a90cab9c54.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.102000;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_cb66f904d15fe9193bc422ea.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.081000;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_97f158978ba56e99c286b5a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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_d216a06d375d63cd4d2272ac.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100000;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);}
.v2{vertical-align:-20.979000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.983000px;}
.v1{vertical-align:20.979000px;}
.ls2{letter-spacing:-4.914000px;}
.ls3{letter-spacing:-3.978000px;}
.ls4{letter-spacing:-2.754000px;}
.ls0{letter-spacing:-1.680000px;}
.ls1{letter-spacing:0.000000px;}
.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;}
}
.ws5c{word-spacing:-60.000000px;}
.ws18{word-spacing:-16.821000px;}
.ws2{word-spacing:-13.617000px;}
.ws31{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.320000px;}
.ws1{word-spacing:-9.806643px;}
.wsb{word-spacing:-8.379000px;}
.ws44{word-spacing:-7.938711px;}
.ws6{word-spacing:-5.355000px;}
.ws19{word-spacing:-3.339000px;}
.ws11{word-spacing:-3.276000px;}
.ws7{word-spacing:-3.150000px;}
.ws69{word-spacing:-2.961000px;}
.ws9{word-spacing:-2.646000px;}
.ws7a{word-spacing:-2.583000px;}
.ws21{word-spacing:-2.520000px;}
.ws36{word-spacing:-2.457000px;}
.ws7b{word-spacing:-2.331000px;}
.ws66{word-spacing:-2.268000px;}
.ws22{word-spacing:-2.142000px;}
.ws73{word-spacing:-2.079000px;}
.ws28{word-spacing:-1.953000px;}
.wsa{word-spacing:-1.890000px;}
.ws71{word-spacing:-1.827000px;}
.ws38{word-spacing:-1.764000px;}
.ws8{word-spacing:-1.575000px;}
.ws32{word-spacing:-1.512000px;}
.ws29{word-spacing:-1.449000px;}
.ws78{word-spacing:-1.260000px;}
.ws2c{word-spacing:-1.197000px;}
.ws2a{word-spacing:-1.134000px;}
.ws57{word-spacing:-1.122000px;}
.ws1a{word-spacing:-1.071000px;}
.ws14{word-spacing:-1.020000px;}
.ws79{word-spacing:-1.008000px;}
.ws1c{word-spacing:-0.882000px;}
.ws6b{word-spacing:-0.756000px;}
.ws4{word-spacing:-0.702000px;}
.ws4b{word-spacing:-0.567000px;}
.ws74{word-spacing:-0.441000px;}
.ws3d{word-spacing:-0.378000px;}
.ws6a{word-spacing:-0.315000px;}
.ws4e{word-spacing:-0.252000px;}
.ws46{word-spacing:-0.063000px;}
.ws3{word-spacing:0.000000px;}
.ws5d{word-spacing:0.378000px;}
.ws34{word-spacing:0.441000px;}
.ws3e{word-spacing:0.612000px;}
.ws5f{word-spacing:0.630000px;}
.ws20{word-spacing:0.756000px;}
.ws1f{word-spacing:0.819000px;}
.ws3a{word-spacing:0.882000px;}
.ws58{word-spacing:0.918000px;}
.ws12{word-spacing:0.945000px;}
.ws59{word-spacing:1.020000px;}
.ws41{word-spacing:1.122000px;}
.ws47{word-spacing:1.134000px;}
.ws5{word-spacing:1.197000px;}
.ws26{word-spacing:1.386000px;}
.ws7c{word-spacing:1.449000px;}
.ws5a{word-spacing:1.479000px;}
.ws64{word-spacing:1.512000px;}
.ws72{word-spacing:1.701000px;}
.ws1d{word-spacing:1.764000px;}
.ws49{word-spacing:1.827000px;}
.ws65{word-spacing:1.890000px;}
.ws53{word-spacing:1.953000px;}
.ws35{word-spacing:2.016000px;}
.ws55{word-spacing:2.079000px;}
.wsf{word-spacing:2.205000px;}
.ws2d{word-spacing:2.268000px;}
.ws4a{word-spacing:2.646000px;}
.ws40{word-spacing:2.652000px;}
.ws5b{word-spacing:2.703000px;}
.ws2e{word-spacing:2.709000px;}
.ws15{word-spacing:2.754000px;}
.ws10{word-spacing:2.835000px;}
.ws6d{word-spacing:2.907000px;}
.ws4f{word-spacing:3.024000px;}
.ws27{word-spacing:3.087000px;}
.ws45{word-spacing:3.213000px;}
.ws30{word-spacing:3.315000px;}
.ws5e{word-spacing:3.339000px;}
.ws51{word-spacing:3.402000px;}
.ws37{word-spacing:3.528000px;}
.ws16{word-spacing:3.978000px;}
.ws7d{word-spacing:4.158000px;}
.ws2b{word-spacing:4.284000px;}
.wsc{word-spacing:4.347000px;}
.ws33{word-spacing:4.473000px;}
.ws61{word-spacing:4.536000px;}
.ws24{word-spacing:4.599000px;}
.ws68{word-spacing:4.662000px;}
.ws48{word-spacing:4.725000px;}
.ws13{word-spacing:4.914000px;}
.ws67{word-spacing:4.977000px;}
.ws3f{word-spacing:5.100000px;}
.wse{word-spacing:5.103000px;}
.ws2f{word-spacing:5.166000px;}
.ws6f{word-spacing:5.292000px;}
.ws1e{word-spacing:5.355000px;}
.ws3b{word-spacing:5.418000px;}
.ws4c{word-spacing:5.481000px;}
.ws23{word-spacing:5.922000px;}
.ws42{word-spacing:5.967000px;}
.ws62{word-spacing:5.985000px;}
.ws3c{word-spacing:6.300000px;}
.ws6c{word-spacing:6.552000px;}
.ws52{word-spacing:6.678000px;}
.ws76{word-spacing:6.804000px;}
.ws56{word-spacing:6.867000px;}
.ws4d{word-spacing:7.119000px;}
.ws75{word-spacing:7.434000px;}
.ws60{word-spacing:7.497000px;}
.ws77{word-spacing:7.686000px;}
.ws1b{word-spacing:8.001000px;}
.ws39{word-spacing:8.253000px;}
.ws63{word-spacing:8.379000px;}
.ws54{word-spacing:8.631000px;}
.wsd{word-spacing:9.135000px;}
.ws70{word-spacing:9.261000px;}
.ws25{word-spacing:9.513000px;}
.ws50{word-spacing:9.702000px;}
.ws43{word-spacing:607.018800px;}
.ws17{word-spacing:607.918800px;}
.ws6e{word-spacing:657.178800px;}
._e{margin-left:-2260.842000px;}
._0{margin-left:-2259.162600px;}
._18{margin-left:-26.183895px;}
._16{margin-left:-23.703900px;}
._15{margin-left:-20.223000px;}
._10{margin-left:-17.778000px;}
._14{margin-left:-16.532895px;}
._17{margin-left:-15.448200px;}
._b{margin-left:-13.494000px;}
._5{margin-left:-12.159000px;}
._12{margin-left:-7.085085px;}
._4{margin-left:-5.574105px;}
._7{margin-left:-4.081200px;}
._1{margin-left:-2.886000px;}
._2{margin-left:-1.380000px;}
._3{width:1.074600px;}
._8{width:2.175900px;}
._11{width:3.179700px;}
._6{width:4.687200px;}
._c{width:5.832900px;}
._d{width:6.867705px;}
._13{width:7.898175px;}
._f{width:8.990100px;}
._a{width:35.751000px;}
._9{width:37.383000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:29.733000px;}
.fs5{font-size:36.729000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:127.559100px;}
.y22{bottom:127.559250px;}
.y78{bottom:127.559400px;}
.ya0{bottom:144.809100px;}
.y21{bottom:144.809250px;}
.y77{bottom:144.809400px;}
.y9f{bottom:162.059100px;}
.y20{bottom:162.059250px;}
.y61{bottom:168.437400px;}
.y1f{bottom:185.687250px;}
.y60{bottom:185.687400px;}
.y1e{bottom:202.937250px;}
.y48{bottom:204.345300px;}
.y5f{bottom:209.315550px;}
.y1d{bottom:220.187250px;}
.y9e{bottom:223.332450px;}
.y47{bottom:226.545300px;}
.y76{bottom:226.565550px;}
.y5e{bottom:232.943550px;}
.ybf{bottom:233.168850px;}
.y75{bottom:243.815550px;}
.y9d{bottom:245.532450px;}
.y46{bottom:248.745150px;}
.y5d{bottom:250.193550px;}
.ybe{bottom:255.368850px;}
.y1c{bottom:259.073700px;}
.y5c{bottom:267.443550px;}
.y74{bottom:267.443700px;}
.y9c{bottom:267.732450px;}
.y45{bottom:270.945150px;}
.ybd{bottom:277.568850px;}
.y1b{bottom:281.273700px;}
.y5b{bottom:284.693550px;}
.y73{bottom:284.693700px;}
.y9b{bottom:289.932450px;}
.y44{bottom:293.145300px;}
.ybc{bottom:299.768850px;}
.y5a{bottom:301.943550px;}
.y72{bottom:301.943700px;}
.y9a{bottom:312.132450px;}
.y43{bottom:315.345300px;}
.y59{bottom:319.193550px;}
.ybb{bottom:321.968850px;}
.y1a{bottom:324.981600px;}
.y99{bottom:334.332450px;}
.y58{bottom:336.443550px;}
.y42{bottom:337.545300px;}
.yba{bottom:344.168850px;}
.y98{bottom:356.532450px;}
.y71{bottom:356.532600px;}
.y41{bottom:359.745150px;}
.yb9{bottom:366.368850px;}
.y19{bottom:377.245350px;}
.y97{bottom:378.732450px;}
.y70{bottom:378.732600px;}
.y57{bottom:383.924700px;}
.yb8{bottom:388.568850px;}
.y40{bottom:398.953050px;}
.y18{bottom:399.445350px;}
.y96{bottom:400.932450px;}
.y6f{bottom:400.932600px;}
.y56{bottom:406.124700px;}
.yb7{bottom:410.768850px;}
.y3f{bottom:421.153050px;}
.y17{bottom:421.645350px;}
.y95{bottom:423.132450px;}
.y6e{bottom:423.132600px;}
.y55{bottom:428.324700px;}
.yb6{bottom:432.968850px;}
.y3e{bottom:443.353050px;}
.y16{bottom:443.845350px;}
.y94{bottom:445.332450px;}
.y6d{bottom:445.332600px;}
.y54{bottom:450.524700px;}
.yb5{bottom:455.168850px;}
.y3d{bottom:465.553050px;}
.y15{bottom:466.045350px;}
.y93{bottom:467.532450px;}
.y6c{bottom:467.532600px;}
.y53{bottom:472.724700px;}
.yb4{bottom:477.368850px;}
.y14{bottom:488.245350px;}
.y92{bottom:489.732450px;}
.y6b{bottom:489.732600px;}
.y52{bottom:494.924700px;}
.yb3{bottom:499.568850px;}
.y3c{bottom:509.260950px;}
.y13{bottom:510.445350px;}
.y91{bottom:511.932450px;}
.y6a{bottom:511.932600px;}
.y51{bottom:517.124700px;}
.yb2{bottom:521.768850px;}
.y12{bottom:532.645350px;}
.y90{bottom:534.132450px;}
.y69{bottom:534.132600px;}
.y50{bottom:539.324700px;}
.yb1{bottom:543.968850px;}
.y11{bottom:554.845350px;}
.y8f{bottom:556.332450px;}
.y68{bottom:556.332600px;}
.y3b{bottom:561.524700px;}
.yb0{bottom:566.168850px;}
.y67{bottom:578.532600px;}
.y3a{bottom:583.724700px;}
.yaf{bottom:588.368850px;}
.y10{bottom:594.053250px;}
.y8e{bottom:595.540350px;}
.y66{bottom:600.732600px;}
.y39{bottom:605.924700px;}
.yae{bottom:610.568850px;}
.yf{bottom:616.253100px;}
.y8d{bottom:617.740350px;}
.y65{bottom:622.932600px;}
.y4f{bottom:628.124700px;}
.yad{bottom:632.768850px;}
.ye{bottom:638.453250px;}
.y8c{bottom:639.940350px;}
.y38{bottom:645.132600px;}
.yac{bottom:654.968850px;}
.yd{bottom:660.653250px;}
.y8b{bottom:662.140350px;}
.y37{bottom:667.332600px;}
.yab{bottom:677.168850px;}
.yc{bottom:682.853250px;}
.y8a{bottom:684.340350px;}
.y36{bottom:689.532600px;}
.yb{bottom:705.053250px;}
.y89{bottom:706.540350px;}
.y35{bottom:711.732600px;}
.yaa{bottom:716.376750px;}
.ya{bottom:727.253100px;}
.y88{bottom:728.740350px;}
.y64{bottom:728.740500px;}
.y34{bottom:733.932600px;}
.ya9{bottom:738.576750px;}
.y9{bottom:749.453250px;}
.y87{bottom:750.940350px;}
.y63{bottom:750.940500px;}
.y33{bottom:756.132600px;}
.ya8{bottom:760.776750px;}
.y8{bottom:771.653100px;}
.y86{bottom:773.140350px;}
.y62{bottom:773.140500px;}
.y4e{bottom:778.332600px;}
.ya7{bottom:782.976750px;}
.y85{bottom:795.340350px;}
.y32{bottom:795.340500px;}
.ya6{bottom:805.176750px;}
.y7{bottom:815.361000px;}
.y84{bottom:817.540350px;}
.y31{bottom:817.540500px;}
.ya5{bottom:827.376750px;}
.y83{bottom:839.740350px;}
.y30{bottom:839.740500px;}
.ya4{bottom:849.576750px;}
.y82{bottom:861.940350px;}
.y2f{bottom:861.940500px;}
.y6{bottom:867.624900px;}
.ya3{bottom:871.776600px;}
.y81{bottom:884.140350px;}
.y2e{bottom:884.140500px;}
.y5{bottom:885.624900px;}
.y80{bottom:906.340350px;}
.y4d{bottom:906.340500px;}
.y4{bottom:914.378850px;}
.ya2{bottom:915.484650px;}
.y2d{bottom:923.348400px;}
.y7f{bottom:928.540350px;}
.y4c{bottom:928.540500px;}
.y2c{bottom:945.548400px;}
.y7e{bottom:950.740350px;}
.y4b{bottom:950.740500px;}
.y3{bottom:956.338650px;}
.y2b{bottom:967.748400px;}
.y7d{bottom:972.940350px;}
.y4a{bottom:972.940500px;}
.y2{bottom:983.338650px;}
.y2a{bottom:989.948400px;}
.y7c{bottom:995.140350px;}
.y49{bottom:995.140500px;}
.y29{bottom:1012.148400px;}
.y7b{bottom:1017.340350px;}
.y28{bottom:1034.348400px;}
.y7a{bottom:1039.540350px;}
.y27{bottom:1056.548250px;}
.y79{bottom:1061.740350px;}
.y26{bottom:1078.748250px;}
.y25{bottom:1100.948250px;}
.y24{bottom:1123.148250px;}
.y23{bottom:1168.305300px;}
.y1{bottom:1183.305300px;}
.h6{height:39.528000px;}
.h7{height:41.760000px;}
.hb{height:44.370000px;}
.h5{height:46.980000px;}
.h2{height:53.640000px;}
.h9{height:54.810000px;}
.h4{height:68.580000px;}
.ha{height:68.760000px;}
.h3{height:80.280000px;}
.h8{height:80.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.519600px;}
.x2{left:106.299150px;}
.x6{left:225.354300px;}
.x4{left:508.680900px;}
.x3{left:579.324150px;}
.x7{left:834.853650px;}
.x1{left:837.748800px;}
@media print{
.v2{vertical-align:-18.648000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.096000pt;}
.v1{vertical-align:18.648000pt;}
.ls2{letter-spacing:-4.368000pt;}
.ls3{letter-spacing:-3.536000pt;}
.ls4{letter-spacing:-2.448000pt;}
.ls0{letter-spacing:-1.493333pt;}
.ls1{letter-spacing:0.000000pt;}
.ws5c{word-spacing:-53.333333pt;}
.ws18{word-spacing:-14.952000pt;}
.ws2{word-spacing:-12.104000pt;}
.ws31{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.173333pt;}
.ws1{word-spacing:-8.717016pt;}
.wsb{word-spacing:-7.448000pt;}
.ws44{word-spacing:-7.056632pt;}
.ws6{word-spacing:-4.760000pt;}
.ws19{word-spacing:-2.968000pt;}
.ws11{word-spacing:-2.912000pt;}
.ws7{word-spacing:-2.800000pt;}
.ws69{word-spacing:-2.632000pt;}
.ws9{word-spacing:-2.352000pt;}
.ws7a{word-spacing:-2.296000pt;}
.ws21{word-spacing:-2.240000pt;}
.ws36{word-spacing:-2.184000pt;}
.ws7b{word-spacing:-2.072000pt;}
.ws66{word-spacing:-2.016000pt;}
.ws22{word-spacing:-1.904000pt;}
.ws73{word-spacing:-1.848000pt;}
.ws28{word-spacing:-1.736000pt;}
.wsa{word-spacing:-1.680000pt;}
.ws71{word-spacing:-1.624000pt;}
.ws38{word-spacing:-1.568000pt;}
.ws8{word-spacing:-1.400000pt;}
.ws32{word-spacing:-1.344000pt;}
.ws29{word-spacing:-1.288000pt;}
.ws78{word-spacing:-1.120000pt;}
.ws2c{word-spacing:-1.064000pt;}
.ws2a{word-spacing:-1.008000pt;}
.ws57{word-spacing:-0.997333pt;}
.ws1a{word-spacing:-0.952000pt;}
.ws14{word-spacing:-0.906667pt;}
.ws79{word-spacing:-0.896000pt;}
.ws1c{word-spacing:-0.784000pt;}
.ws6b{word-spacing:-0.672000pt;}
.ws4{word-spacing:-0.624000pt;}
.ws4b{word-spacing:-0.504000pt;}
.ws74{word-spacing:-0.392000pt;}
.ws3d{word-spacing:-0.336000pt;}
.ws6a{word-spacing:-0.280000pt;}
.ws4e{word-spacing:-0.224000pt;}
.ws46{word-spacing:-0.056000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.336000pt;}
.ws34{word-spacing:0.392000pt;}
.ws3e{word-spacing:0.544000pt;}
.ws5f{word-spacing:0.560000pt;}
.ws20{word-spacing:0.672000pt;}
.ws1f{word-spacing:0.728000pt;}
.ws3a{word-spacing:0.784000pt;}
.ws58{word-spacing:0.816000pt;}
.ws12{word-spacing:0.840000pt;}
.ws59{word-spacing:0.906667pt;}
.ws41{word-spacing:0.997333pt;}
.ws47{word-spacing:1.008000pt;}
.ws5{word-spacing:1.064000pt;}
.ws26{word-spacing:1.232000pt;}
.ws7c{word-spacing:1.288000pt;}
.ws5a{word-spacing:1.314667pt;}
.ws64{word-spacing:1.344000pt;}
.ws72{word-spacing:1.512000pt;}
.ws1d{word-spacing:1.568000pt;}
.ws49{word-spacing:1.624000pt;}
.ws65{word-spacing:1.680000pt;}
.ws53{word-spacing:1.736000pt;}
.ws35{word-spacing:1.792000pt;}
.ws55{word-spacing:1.848000pt;}
.wsf{word-spacing:1.960000pt;}
.ws2d{word-spacing:2.016000pt;}
.ws4a{word-spacing:2.352000pt;}
.ws40{word-spacing:2.357333pt;}
.ws5b{word-spacing:2.402667pt;}
.ws2e{word-spacing:2.408000pt;}
.ws15{word-spacing:2.448000pt;}
.ws10{word-spacing:2.520000pt;}
.ws6d{word-spacing:2.584000pt;}
.ws4f{word-spacing:2.688000pt;}
.ws27{word-spacing:2.744000pt;}
.ws45{word-spacing:2.856000pt;}
.ws30{word-spacing:2.946667pt;}
.ws5e{word-spacing:2.968000pt;}
.ws51{word-spacing:3.024000pt;}
.ws37{word-spacing:3.136000pt;}
.ws16{word-spacing:3.536000pt;}
.ws7d{word-spacing:3.696000pt;}
.ws2b{word-spacing:3.808000pt;}
.wsc{word-spacing:3.864000pt;}
.ws33{word-spacing:3.976000pt;}
.ws61{word-spacing:4.032000pt;}
.ws24{word-spacing:4.088000pt;}
.ws68{word-spacing:4.144000pt;}
.ws48{word-spacing:4.200000pt;}
.ws13{word-spacing:4.368000pt;}
.ws67{word-spacing:4.424000pt;}
.ws3f{word-spacing:4.533333pt;}
.wse{word-spacing:4.536000pt;}
.ws2f{word-spacing:4.592000pt;}
.ws6f{word-spacing:4.704000pt;}
.ws1e{word-spacing:4.760000pt;}
.ws3b{word-spacing:4.816000pt;}
.ws4c{word-spacing:4.872000pt;}
.ws23{word-spacing:5.264000pt;}
.ws42{word-spacing:5.304000pt;}
.ws62{word-spacing:5.320000pt;}
.ws3c{word-spacing:5.600000pt;}
.ws6c{word-spacing:5.824000pt;}
.ws52{word-spacing:5.936000pt;}
.ws76{word-spacing:6.048000pt;}
.ws56{word-spacing:6.104000pt;}
.ws4d{word-spacing:6.328000pt;}
.ws75{word-spacing:6.608000pt;}
.ws60{word-spacing:6.664000pt;}
.ws77{word-spacing:6.832000pt;}
.ws1b{word-spacing:7.112000pt;}
.ws39{word-spacing:7.336000pt;}
.ws63{word-spacing:7.448000pt;}
.ws54{word-spacing:7.672000pt;}
.wsd{word-spacing:8.120000pt;}
.ws70{word-spacing:8.232000pt;}
.ws25{word-spacing:8.456000pt;}
.ws50{word-spacing:8.624000pt;}
.ws43{word-spacing:539.572267pt;}
.ws17{word-spacing:540.372267pt;}
.ws6e{word-spacing:584.158933pt;}
._e{margin-left:-2009.637333pt;}
._0{margin-left:-2008.144533pt;}
._18{margin-left:-23.274573pt;}
._16{margin-left:-21.070133pt;}
._15{margin-left:-17.976000pt;}
._10{margin-left:-15.802667pt;}
._14{margin-left:-14.695907pt;}
._17{margin-left:-13.731733pt;}
._b{margin-left:-11.994667pt;}
._5{margin-left:-10.808000pt;}
._12{margin-left:-6.297853pt;}
._4{margin-left:-4.954760pt;}
._7{margin-left:-3.627733pt;}
._1{margin-left:-2.565333pt;}
._2{margin-left:-1.226667pt;}
._3{width:0.955200pt;}
._8{width:1.934133pt;}
._11{width:2.826400pt;}
._6{width:4.166400pt;}
._c{width:5.184800pt;}
._d{width:6.104627pt;}
._13{width:7.020600pt;}
._f{width:7.991200pt;}
._a{width:31.778667pt;}
._9{width:33.229333pt;}
.fs7{font-size:26.429333pt;}
.fs5{font-size:32.648000pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:113.385867pt;}
.y22{bottom:113.386000pt;}
.y78{bottom:113.386133pt;}
.ya0{bottom:128.719200pt;}
.y21{bottom:128.719333pt;}
.y77{bottom:128.719467pt;}
.y9f{bottom:144.052533pt;}
.y20{bottom:144.052667pt;}
.y61{bottom:149.722133pt;}
.y1f{bottom:165.055333pt;}
.y60{bottom:165.055467pt;}
.y1e{bottom:180.388667pt;}
.y48{bottom:181.640267pt;}
.y5f{bottom:186.058267pt;}
.y1d{bottom:195.722000pt;}
.y9e{bottom:198.517733pt;}
.y47{bottom:201.373600pt;}
.y76{bottom:201.391600pt;}
.y5e{bottom:207.060933pt;}
.ybf{bottom:207.261200pt;}
.y75{bottom:216.724933pt;}
.y9d{bottom:218.251067pt;}
.y46{bottom:221.106800pt;}
.y5d{bottom:222.394267pt;}
.ybe{bottom:226.994533pt;}
.y1c{bottom:230.287733pt;}
.y5c{bottom:237.727600pt;}
.y74{bottom:237.727733pt;}
.y9c{bottom:237.984400pt;}
.y45{bottom:240.840133pt;}
.ybd{bottom:246.727867pt;}
.y1b{bottom:250.021067pt;}
.y5b{bottom:253.060933pt;}
.y73{bottom:253.061067pt;}
.y9b{bottom:257.717733pt;}
.y44{bottom:260.573600pt;}
.ybc{bottom:266.461200pt;}
.y5a{bottom:268.394267pt;}
.y72{bottom:268.394400pt;}
.y9a{bottom:277.451067pt;}
.y43{bottom:280.306933pt;}
.y59{bottom:283.727600pt;}
.ybb{bottom:286.194533pt;}
.y1a{bottom:288.872533pt;}
.y99{bottom:297.184400pt;}
.y58{bottom:299.060933pt;}
.y42{bottom:300.040267pt;}
.yba{bottom:305.927867pt;}
.y98{bottom:316.917733pt;}
.y71{bottom:316.917867pt;}
.y41{bottom:319.773467pt;}
.yb9{bottom:325.661200pt;}
.y19{bottom:335.329200pt;}
.y97{bottom:336.651067pt;}
.y70{bottom:336.651200pt;}
.y57{bottom:341.266400pt;}
.yb8{bottom:345.394533pt;}
.y40{bottom:354.624933pt;}
.y18{bottom:355.062533pt;}
.y96{bottom:356.384400pt;}
.y6f{bottom:356.384533pt;}
.y56{bottom:360.999733pt;}
.yb7{bottom:365.127867pt;}
.y3f{bottom:374.358267pt;}
.y17{bottom:374.795867pt;}
.y95{bottom:376.117733pt;}
.y6e{bottom:376.117867pt;}
.y55{bottom:380.733067pt;}
.yb6{bottom:384.861200pt;}
.y3e{bottom:394.091600pt;}
.y16{bottom:394.529200pt;}
.y94{bottom:395.851067pt;}
.y6d{bottom:395.851200pt;}
.y54{bottom:400.466400pt;}
.yb5{bottom:404.594533pt;}
.y3d{bottom:413.824933pt;}
.y15{bottom:414.262533pt;}
.y93{bottom:415.584400pt;}
.y6c{bottom:415.584533pt;}
.y53{bottom:420.199733pt;}
.yb4{bottom:424.327867pt;}
.y14{bottom:433.995867pt;}
.y92{bottom:435.317733pt;}
.y6b{bottom:435.317867pt;}
.y52{bottom:439.933067pt;}
.yb3{bottom:444.061200pt;}
.y3c{bottom:452.676400pt;}
.y13{bottom:453.729200pt;}
.y91{bottom:455.051067pt;}
.y6a{bottom:455.051200pt;}
.y51{bottom:459.666400pt;}
.yb2{bottom:463.794533pt;}
.y12{bottom:473.462533pt;}
.y90{bottom:474.784400pt;}
.y69{bottom:474.784533pt;}
.y50{bottom:479.399733pt;}
.yb1{bottom:483.527867pt;}
.y11{bottom:493.195867pt;}
.y8f{bottom:494.517733pt;}
.y68{bottom:494.517867pt;}
.y3b{bottom:499.133067pt;}
.yb0{bottom:503.261200pt;}
.y67{bottom:514.251200pt;}
.y3a{bottom:518.866400pt;}
.yaf{bottom:522.994533pt;}
.y10{bottom:528.047333pt;}
.y8e{bottom:529.369200pt;}
.y66{bottom:533.984533pt;}
.y39{bottom:538.599733pt;}
.yae{bottom:542.727867pt;}
.yf{bottom:547.780533pt;}
.y8d{bottom:549.102533pt;}
.y65{bottom:553.717867pt;}
.y4f{bottom:558.333067pt;}
.yad{bottom:562.461200pt;}
.ye{bottom:567.514000pt;}
.y8c{bottom:568.835867pt;}
.y38{bottom:573.451200pt;}
.yac{bottom:582.194533pt;}
.yd{bottom:587.247333pt;}
.y8b{bottom:588.569200pt;}
.y37{bottom:593.184533pt;}
.yab{bottom:601.927867pt;}
.yc{bottom:606.980667pt;}
.y8a{bottom:608.302533pt;}
.y36{bottom:612.917867pt;}
.yb{bottom:626.714000pt;}
.y89{bottom:628.035867pt;}
.y35{bottom:632.651200pt;}
.yaa{bottom:636.779333pt;}
.ya{bottom:646.447200pt;}
.y88{bottom:647.769200pt;}
.y64{bottom:647.769333pt;}
.y34{bottom:652.384533pt;}
.ya9{bottom:656.512667pt;}
.y9{bottom:666.180667pt;}
.y87{bottom:667.502533pt;}
.y63{bottom:667.502667pt;}
.y33{bottom:672.117867pt;}
.ya8{bottom:676.246000pt;}
.y8{bottom:685.913867pt;}
.y86{bottom:687.235867pt;}
.y62{bottom:687.236000pt;}
.y4e{bottom:691.851200pt;}
.ya7{bottom:695.979333pt;}
.y85{bottom:706.969200pt;}
.y32{bottom:706.969333pt;}
.ya6{bottom:715.712667pt;}
.y7{bottom:724.765333pt;}
.y84{bottom:726.702533pt;}
.y31{bottom:726.702667pt;}
.ya5{bottom:735.446000pt;}
.y83{bottom:746.435867pt;}
.y30{bottom:746.436000pt;}
.ya4{bottom:755.179333pt;}
.y82{bottom:766.169200pt;}
.y2f{bottom:766.169333pt;}
.y6{bottom:771.222133pt;}
.ya3{bottom:774.912533pt;}
.y81{bottom:785.902533pt;}
.y2e{bottom:785.902667pt;}
.y5{bottom:787.222133pt;}
.y80{bottom:805.635867pt;}
.y4d{bottom:805.636000pt;}
.y4{bottom:812.781200pt;}
.ya2{bottom:813.764133pt;}
.y2d{bottom:820.754133pt;}
.y7f{bottom:825.369200pt;}
.y4c{bottom:825.369333pt;}
.y2c{bottom:840.487467pt;}
.y7e{bottom:845.102533pt;}
.y4b{bottom:845.102667pt;}
.y3{bottom:850.078800pt;}
.y2b{bottom:860.220800pt;}
.y7d{bottom:864.835867pt;}
.y4a{bottom:864.836000pt;}
.y2{bottom:874.078800pt;}
.y2a{bottom:879.954133pt;}
.y7c{bottom:884.569200pt;}
.y49{bottom:884.569333pt;}
.y29{bottom:899.687467pt;}
.y7b{bottom:904.302533pt;}
.y28{bottom:919.420800pt;}
.y7a{bottom:924.035867pt;}
.y27{bottom:939.154000pt;}
.y79{bottom:943.769200pt;}
.y26{bottom:958.887333pt;}
.y25{bottom:978.620667pt;}
.y24{bottom:998.354000pt;}
.y23{bottom:1038.493600pt;}
.y1{bottom:1051.826933pt;}
.h6{height:35.136000pt;}
.h7{height:37.120000pt;}
.hb{height:39.440000pt;}
.h5{height:41.760000pt;}
.h2{height:47.680000pt;}
.h9{height:48.720000pt;}
.h4{height:60.960000pt;}
.ha{height:61.120000pt;}
.h3{height:71.360000pt;}
.h8{height:71.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.795200pt;}
.x2{left:94.488133pt;}
.x6{left:200.314933pt;}
.x4{left:452.160800pt;}
.x3{left:514.954800pt;}
.x7{left:742.092133pt;}
.x1{left:744.665600pt;}
}




    .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; }
  