
    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_111898714e9f68a92201309d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_048d925f854879637250640a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_ca5b360b8b0f0d32c4594ded.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_f2e556ee7e397b503ce8d02c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922363;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_d0fdfe2d7112e3b0b3aa87e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_fbbee086c87d23ea11c9d1c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_333b3849239c144de7f020ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_cb105452543f1f23e38fa538.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.984000px;}
.ls4{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.618000px;}
.ls6{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.334200px;}
.ls2{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.172800px;}
.ls9{letter-spacing:-0.166800px;}
.ls12{letter-spacing:-0.155400px;}
.ls3{letter-spacing:-0.089400px;}
.ls11{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.048960px;}
.lse{letter-spacing:0.075000px;}
.ls7{letter-spacing:0.100800px;}
.ls5{letter-spacing:0.337200px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:3.412800px;}
.lsb{letter-spacing:19.745280px;}
.lsa{letter-spacing:55.745280px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.ws5{word-spacing:-14.621760px;}
.ws1{word-spacing:-14.572800px;}
.ws4{word-spacing:-14.238600px;}
.ws6{word-spacing:-13.147200px;}
.ws2{word-spacing:-9.187200px;}
.ws7{word-spacing:-8.553600px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.751040px;}
._1{width:1.378080px;}
._2{width:2.784000px;}
._a{width:4.368000px;}
._16{width:5.456160px;}
._11{width:6.639120px;}
._3{width:8.331120px;}
._4{width:9.788400px;}
._10{width:11.724480px;}
._f{width:12.916800px;}
._19{width:15.698880px;}
._1f{width:16.758720px;}
._13{width:17.818560px;}
._14{width:19.607040px;}
._b{width:20.890800px;}
._5{width:22.695120px;}
._9{width:23.875200px;}
._8{width:25.038720px;}
._6{width:26.568000px;}
._7{width:27.616320px;}
._1c{width:28.621440px;}
._20{width:29.813760px;}
._1d{width:31.397760px;}
._2d{width:32.872320px;}
._2b{width:34.246080px;}
._2c{width:35.372160px;}
._21{width:36.498240px;}
._22{width:37.601760px;}
._25{width:38.684160px;}
._12{width:40.406400px;}
._17{width:42.393600px;}
._18{width:44.078400px;}
._1b{width:45.241920px;}
._23{width:46.765440px;}
._24{width:47.986560px;}
._33{width:49.178880px;}
._28{width:50.209920px;}
._15{width:51.600960px;}
._26{width:52.856640px;}
._27{width:53.864640px;}
._30{width:55.310400px;}
._32{width:56.370240px;}
._2e{width:70.148160px;}
._29{width:71.472960px;}
._2a{width:72.694080px;}
._35{width:74.577600px;}
._36{width:75.663360px;}
._31{width:78.428160px;}
._1e{width:79.819200px;}
._1a{width:84.323520px;}
._d{width:101.545920px;}
._c{width:102.605760px;}
._2f{width:107.441280px;}
._34{width:143.740800px;}
._e{width:174.173760px;}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.yc1{bottom:-11.160000px;}
.y0{bottom:0.000000px;}
.y4{bottom:67.320000px;}
.y4e{bottom:104.040000px;}
.yba{bottom:108.000000px;}
.y86{bottom:112.140000px;}
.y98{bottom:118.080000px;}
.y29{bottom:119.520000px;}
.yff{bottom:120.060000px;}
.y73{bottom:123.120000px;}
.y4d{bottom:133.056000px;}
.yb9{bottom:137.016000px;}
.yfe{bottom:137.196000px;}
.y85{bottom:141.156000px;}
.y97{bottom:147.096000px;}
.y28{bottom:148.536000px;}
.y72{bottom:152.130000px;}
.yfd{bottom:154.470000px;}
.y4c{bottom:162.210000px;}
.yb8{bottom:166.170000px;}
.y84{bottom:170.130000px;}
.yfc{bottom:171.750000px;}
.y96{bottom:176.250000px;}
.y27{bottom:177.510000px;}
.y71{bottom:181.110000px;}
.yfb{bottom:189.030000px;}
.y4b{bottom:191.190000px;}
.yb7{bottom:195.150000px;}
.y83{bottom:199.110000px;}
.y95{bottom:205.230000px;}
.yfa{bottom:206.310000px;}
.y26{bottom:206.490000px;}
.y70{bottom:210.090000px;}
.y4a{bottom:220.170000px;}
.yf9{bottom:223.590000px;}
.yb6{bottom:224.130000px;}
.y82{bottom:228.270000px;}
.y94{bottom:234.210000px;}
.y25{bottom:235.650000px;}
.y6f{bottom:239.070000px;}
.yf8{bottom:240.690000px;}
.y49{bottom:249.150000px;}
.yb5{bottom:253.110000px;}
.y81{bottom:257.250000px;}
.yf7{bottom:257.970000px;}
.y93{bottom:263.190000px;}
.y24{bottom:264.630000px;}
.y6e{bottom:268.230000px;}
.yf6{bottom:275.250000px;}
.y48{bottom:278.130000px;}
.yb4{bottom:282.090000px;}
.y92{bottom:292.170000px;}
.yf5{bottom:292.530000px;}
.y22{bottom:293.610000px;}
.y6d{bottom:297.210000px;}
.y23{bottom:297.390000px;}
.y80{bottom:301.170000px;}
.y47{bottom:307.290000px;}
.yf4{bottom:309.810000px;}
.yb3{bottom:311.250000px;}
.y91{bottom:321.330000px;}
.y21{bottom:322.590000px;}
.y6c{bottom:326.190000px;}
.yf3{bottom:326.910000px;}
.y7f{bottom:330.150000px;}
.y46{bottom:336.270000px;}
.yb2{bottom:340.230000px;}
.yf2{bottom:344.190000px;}
.y90{bottom:350.310000px;}
.y20{bottom:351.570000px;}
.y6b{bottom:355.170000px;}
.y7e{bottom:359.310000px;}
.yf1{bottom:361.470000px;}
.y45{bottom:365.250000px;}
.yb1{bottom:369.210000px;}
.yf0{bottom:378.750000px;}
.y8f{bottom:379.335000px;}
.y1f{bottom:380.775000px;}
.y6a{bottom:384.195000px;}
.y7d{bottom:389.235000px;}
.y44{bottom:394.275000px;}
.yef{bottom:396.075000px;}
.yb0{bottom:398.235000px;}
.y8e{bottom:408.315000px;}
.y1d{bottom:409.755000px;}
.y68{bottom:413.355000px;}
.y1e{bottom:413.535000px;}
.y69{bottom:417.135000px;}
.y7c{bottom:419.115000px;}
.y43{bottom:423.255000px;}
.y76{bottom:427.035000px;}
.yaf{bottom:427.215000px;}
.yee{bottom:430.455000px;}
.y8d{bottom:437.295000px;}
.y1c{bottom:438.735000px;}
.y67{bottom:442.335000px;}
.yed{bottom:447.735000px;}
.y7a{bottom:448.995000px;}
.y42{bottom:452.415000px;}
.y7b{bottom:452.775000px;}
.yae{bottom:456.375000px;}
.yec{bottom:465.015000px;}
.y8c{bottom:466.455000px;}
.y1b{bottom:467.715000px;}
.y66{bottom:471.315000px;}
.y75{bottom:475.095000px;}
.y79{bottom:478.155000px;}
.y41{bottom:481.395000px;}
.yeb{bottom:482.295000px;}
.yad{bottom:485.355000px;}
.y8b{bottom:495.435000px;}
.y1a{bottom:496.695000px;}
.yea{bottom:499.575000px;}
.y65{bottom:500.295000px;}
.y11d{bottom:503.355000px;}
.y78{bottom:507.135000px;}
.y40{bottom:510.375000px;}
.yac{bottom:514.335000px;}
.ye9{bottom:516.855000px;}
.y11c{bottom:520.635000px;}
.y8a{bottom:524.415000px;}
.y19{bottom:525.855000px;}
.y64{bottom:529.275000px;}
.ye8{bottom:533.955000px;}
.y77{bottom:536.115000px;}
.y11b{bottom:537.735000px;}
.y3f{bottom:539.355000px;}
.yab{bottom:543.315000px;}
.ye7{bottom:551.235000px;}
.y89{bottom:553.395000px;}
.y18{bottom:554.835000px;}
.y11a{bottom:555.015000px;}
.y63{bottom:558.435000px;}
.y3e{bottom:568.335000px;}
.ye6{bottom:568.515000px;}
.yaa{bottom:572.295000px;}
.yc0{bottom:577.695000px;}
.y88{bottom:582.375000px;}
.y17{bottom:583.815000px;}
.ye5{bottom:585.795000px;}
.y62{bottom:587.415000px;}
.y119{bottom:591.555000px;}
.ybf{bottom:597.135000px;}
.y3d{bottom:597.495000px;}
.ya9{bottom:601.455000px;}
.ye4{bottom:603.075000px;}
.y118{bottom:610.995000px;}
.y87{bottom:611.535000px;}
.y16{bottom:612.795000px;}
.y61{bottom:616.395000px;}
.ye3{bottom:620.175000px;}
.y3c{bottom:626.475000px;}
.y117{bottom:630.255000px;}
.ya8{bottom:630.435000px;}
.y15{bottom:632.265000px;}
.ybe{bottom:635.685000px;}
.ye2{bottom:637.485000px;}
.ybc{bottom:640.545000px;}
.y60{bottom:645.405000px;}
.y116{bottom:649.545000px;}
.ye1{bottom:654.765000px;}
.ybd{bottom:655.125000px;}
.y3b{bottom:655.485000px;}
.ya7{bottom:659.445000px;}
.y14{bottom:667.905000px;}
.y115{bottom:668.985000px;}
.ybb{bottom:669.525000px;}
.ye0{bottom:672.045000px;}
.y5f{bottom:674.385000px;}
.y3a{bottom:684.465000px;}
.y114{bottom:688.245000px;}
.ya6{bottom:688.425000px;}
.ydf{bottom:689.325000px;}
.y13{bottom:693.105000px;}
.y5e{bottom:703.545000px;}
.yde{bottom:706.605000px;}
.y113{bottom:707.685000px;}
.y39{bottom:713.445000px;}
.ya5{bottom:717.405000px;}
.ydd{bottom:723.705000px;}
.y112{bottom:726.945000px;}
.y12{bottom:727.665000px;}
.y5d{bottom:732.525000px;}
.ydc{bottom:740.985000px;}
.y38{bottom:742.605000px;}
.y111{bottom:746.385000px;}
.ya4{bottom:746.565000px;}
.ydb{bottom:758.265000px;}
.y5c{bottom:761.505000px;}
.y11{bottom:763.665000px;}
.y110{bottom:765.645000px;}
.y37{bottom:771.585000px;}
.ya3{bottom:775.545000px;}
.y10{bottom:782.025000px;}
.y10f{bottom:785.085000px;}
.y5b{bottom:790.485000px;}
.yda{bottom:792.825000px;}
.yf{bottom:800.205000px;}
.y36{bottom:800.565000px;}
.y10e{bottom:804.345000px;}
.ya2{bottom:804.525000px;}
.yd9{bottom:810.105000px;}
.ye{bottom:818.385000px;}
.y5a{bottom:819.465000px;}
.y10d{bottom:823.785000px;}
.yd8{bottom:826.845000px;}
.y35{bottom:829.545000px;}
.ya1{bottom:833.505000px;}
.yd{bottom:836.565000px;}
.y10c{bottom:843.045000px;}
.yd7{bottom:844.485000px;}
.y59{bottom:848.625000px;}
.yc{bottom:854.745000px;}
.y34{bottom:858.525000px;}
.yd6{bottom:862.125000px;}
.ya0{bottom:862.485000px;}
.yd5{bottom:865.905000px;}
.y58{bottom:877.605000px;}
.yd4{bottom:879.585000px;}
.y10b{bottom:881.745000px;}
.yd3{bottom:883.365000px;}
.yb{bottom:887.730000px;}
.y9f{bottom:891.690000px;}
.yd2{bottom:897.270000px;}
.yd1{bottom:901.050000px;}
.y10a{bottom:901.230000px;}
.y57{bottom:906.630000px;}
.yd0{bottom:914.910000px;}
.y33{bottom:916.710000px;}
.y109{bottom:920.490000px;}
.y9e{bottom:920.670000px;}
.ya{bottom:921.570000px;}
.ycf{bottom:932.370000px;}
.y56{bottom:935.610000px;}
.yce{bottom:936.150000px;}
.y108{bottom:939.750000px;}
.y32{bottom:945.690000px;}
.y9d{bottom:949.650000px;}
.ycd{bottom:950.010000px;}
.y9{bottom:955.770000px;}
.y107{bottom:959.190000px;}
.y55{bottom:964.590000px;}
.ycc{bottom:967.650000px;}
.ycb{bottom:971.430000px;}
.y31{bottom:974.670000px;}
.y106{bottom:978.450000px;}
.y9c{bottom:978.630000px;}
.yca{bottom:985.290000px;}
.y8{bottom:993.210000px;}
.y54{bottom:993.750000px;}
.y74{bottom:997.530000px;}
.y105{bottom:997.890000px;}
.yc9{bottom:1002.750000px;}
.y30{bottom:1003.650000px;}
.yc8{bottom:1006.530000px;}
.y9b{bottom:1007.610000px;}
.y104{bottom:1017.150000px;}
.yc7{bottom:1020.390000px;}
.y53{bottom:1022.730000px;}
.y7{bottom:1028.310000px;}
.y2f{bottom:1032.810000px;}
.y103{bottom:1036.590000px;}
.y9a{bottom:1036.770000px;}
.yc6{bottom:1038.030000px;}
.y52{bottom:1051.710000px;}
.yc5{bottom:1055.490000px;}
.y102{bottom:1056.030000px;}
.yc4{bottom:1059.270000px;}
.y2e{bottom:1061.790000px;}
.y99{bottom:1065.750000px;}
.y6{bottom:1070.610000px;}
.y101{bottom:1073.130000px;}
.yc3{bottom:1073.490000px;}
.y51{bottom:1080.690000px;}
.y2d{bottom:1090.770000px;}
.y100{bottom:1092.570000px;}
.yc2{bottom:1106.250000px;}
.y50{bottom:1109.670000px;}
.y5{bottom:1112.730000px;}
.y2c{bottom:1119.750000px;}
.y4f{bottom:1129.830000px;}
.y3{bottom:1150.560000px;}
.y2b{bottom:1169.100000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1183.500000px;}
.y2a{bottom:1184.760000px;}
.hf{height:19.438500px;}
.hc{height:31.727812px;}
.h10{height:33.830156px;}
.h3{height:36.336094px;}
.h9{height:38.021484px;}
.h6{height:46.639687px;}
.h7{height:46.986328px;}
.h8{height:47.408203px;}
.h11{height:51.998203px;}
.h2{height:57.636562px;}
.ha{height:58.154062px;}
.h12{height:61.423863px;}
.hd{height:68.084282px;}
.he{height:68.956875px;}
.h4{height:74.004654px;}
.h5{height:84.070547px;}
.h1{height:1263.000000px;}
.hb{height:1263.057990px;}
.h0{height:1263.060000px;}
.w3{width:352.873500px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:12.058500px;}
.x3{left:76.500000px;}
.x1a{left:79.200000px;}
.x1b{left:81.900000px;}
.x1c{left:84.600000px;}
.x1d{left:86.760000px;}
.xe{left:95.434125px;}
.x8{left:102.096000px;}
.x7{left:103.356000px;}
.x15{left:125.494125px;}
.x17{left:130.536000px;}
.x16{left:136.476000px;}
.x2{left:216.570000px;}
.x9{left:261.748125px;}
.xa{left:264.630000px;}
.xb{left:293.293125px;}
.xc{left:299.055000px;}
.x4{left:446.475000px;}
.xd{left:463.575000px;}
.x18{left:490.605000px;}
.x11{left:510.763125px;}
.x12{left:515.985000px;}
.xf{left:581.323125px;}
.x10{left:589.425000px;}
.x13{left:609.223125px;}
.x14{left:617.325000px;}
.x5{left:659.085000px;}
.x1{left:671.910000px;}
.x6{left:816.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.874667pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.549333pt;}
.ls6{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.297067pt;}
.ls2{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.153600pt;}
.ls9{letter-spacing:-0.148267pt;}
.ls12{letter-spacing:-0.138133pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls11{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.066667pt;}
.ls7{letter-spacing:0.089600pt;}
.ls5{letter-spacing:0.299733pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:3.033600pt;}
.lsb{letter-spacing:17.551360pt;}
.lsa{letter-spacing:49.551360pt;}
.ws3{word-spacing:-58.880000pt;}
.ws5{word-spacing:-12.997120pt;}
.ws1{word-spacing:-12.953600pt;}
.ws4{word-spacing:-12.656533pt;}
.ws6{word-spacing:-11.686400pt;}
.ws2{word-spacing:-8.166400pt;}
.ws7{word-spacing:-7.603200pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.556480pt;}
._1{width:1.224960pt;}
._2{width:2.474667pt;}
._a{width:3.882667pt;}
._16{width:4.849920pt;}
._11{width:5.901440pt;}
._3{width:7.405440pt;}
._4{width:8.700800pt;}
._10{width:10.421760pt;}
._f{width:11.481600pt;}
._19{width:13.954560pt;}
._1f{width:14.896640pt;}
._13{width:15.838720pt;}
._14{width:17.428480pt;}
._b{width:18.569600pt;}
._5{width:20.173440pt;}
._9{width:21.222400pt;}
._8{width:22.256640pt;}
._6{width:23.616000pt;}
._7{width:24.547840pt;}
._1c{width:25.441280pt;}
._20{width:26.501120pt;}
._1d{width:27.909120pt;}
._2d{width:29.219840pt;}
._2b{width:30.440960pt;}
._2c{width:31.441920pt;}
._21{width:32.442880pt;}
._22{width:33.423787pt;}
._25{width:34.385920pt;}
._12{width:35.916800pt;}
._17{width:37.683200pt;}
._18{width:39.180800pt;}
._1b{width:40.215040pt;}
._23{width:41.569280pt;}
._24{width:42.654720pt;}
._33{width:43.714560pt;}
._28{width:44.631040pt;}
._15{width:45.867520pt;}
._26{width:46.983680pt;}
._27{width:47.879680pt;}
._30{width:49.164800pt;}
._32{width:50.106880pt;}
._2e{width:62.353920pt;}
._29{width:63.531520pt;}
._2a{width:64.616960pt;}
._35{width:66.291200pt;}
._36{width:67.256320pt;}
._31{width:69.713920pt;}
._1e{width:70.950400pt;}
._1a{width:74.954240pt;}
._d{width:90.263040pt;}
._c{width:91.205120pt;}
._2f{width:95.503360pt;}
._34{width:127.769600pt;}
._e{width:154.821120pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.yc1{bottom:-9.920000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:59.840000pt;}
.y4e{bottom:92.480000pt;}
.yba{bottom:96.000000pt;}
.y86{bottom:99.680000pt;}
.y98{bottom:104.960000pt;}
.y29{bottom:106.240000pt;}
.yff{bottom:106.720000pt;}
.y73{bottom:109.440000pt;}
.y4d{bottom:118.272000pt;}
.yb9{bottom:121.792000pt;}
.yfe{bottom:121.952000pt;}
.y85{bottom:125.472000pt;}
.y97{bottom:130.752000pt;}
.y28{bottom:132.032000pt;}
.y72{bottom:135.226667pt;}
.yfd{bottom:137.306667pt;}
.y4c{bottom:144.186667pt;}
.yb8{bottom:147.706667pt;}
.y84{bottom:151.226667pt;}
.yfc{bottom:152.666667pt;}
.y96{bottom:156.666667pt;}
.y27{bottom:157.786667pt;}
.y71{bottom:160.986667pt;}
.yfb{bottom:168.026667pt;}
.y4b{bottom:169.946667pt;}
.yb7{bottom:173.466667pt;}
.y83{bottom:176.986667pt;}
.y95{bottom:182.426667pt;}
.yfa{bottom:183.386667pt;}
.y26{bottom:183.546667pt;}
.y70{bottom:186.746667pt;}
.y4a{bottom:195.706667pt;}
.yf9{bottom:198.746667pt;}
.yb6{bottom:199.226667pt;}
.y82{bottom:202.906667pt;}
.y94{bottom:208.186667pt;}
.y25{bottom:209.466667pt;}
.y6f{bottom:212.506667pt;}
.yf8{bottom:213.946667pt;}
.y49{bottom:221.466667pt;}
.yb5{bottom:224.986667pt;}
.y81{bottom:228.666667pt;}
.yf7{bottom:229.306667pt;}
.y93{bottom:233.946667pt;}
.y24{bottom:235.226667pt;}
.y6e{bottom:238.426667pt;}
.yf6{bottom:244.666667pt;}
.y48{bottom:247.226667pt;}
.yb4{bottom:250.746667pt;}
.y92{bottom:259.706667pt;}
.yf5{bottom:260.026667pt;}
.y22{bottom:260.986667pt;}
.y6d{bottom:264.186667pt;}
.y23{bottom:264.346667pt;}
.y80{bottom:267.706667pt;}
.y47{bottom:273.146667pt;}
.yf4{bottom:275.386667pt;}
.yb3{bottom:276.666667pt;}
.y91{bottom:285.626667pt;}
.y21{bottom:286.746667pt;}
.y6c{bottom:289.946667pt;}
.yf3{bottom:290.586667pt;}
.y7f{bottom:293.466667pt;}
.y46{bottom:298.906667pt;}
.yb2{bottom:302.426667pt;}
.yf2{bottom:305.946667pt;}
.y90{bottom:311.386667pt;}
.y20{bottom:312.506667pt;}
.y6b{bottom:315.706667pt;}
.y7e{bottom:319.386667pt;}
.yf1{bottom:321.306667pt;}
.y45{bottom:324.666667pt;}
.yb1{bottom:328.186667pt;}
.yf0{bottom:336.666667pt;}
.y8f{bottom:337.186667pt;}
.y1f{bottom:338.466667pt;}
.y6a{bottom:341.506667pt;}
.y7d{bottom:345.986667pt;}
.y44{bottom:350.466667pt;}
.yef{bottom:352.066667pt;}
.yb0{bottom:353.986667pt;}
.y8e{bottom:362.946667pt;}
.y1d{bottom:364.226667pt;}
.y68{bottom:367.426667pt;}
.y1e{bottom:367.586667pt;}
.y69{bottom:370.786667pt;}
.y7c{bottom:372.546667pt;}
.y43{bottom:376.226667pt;}
.y76{bottom:379.586667pt;}
.yaf{bottom:379.746667pt;}
.yee{bottom:382.626667pt;}
.y8d{bottom:388.706667pt;}
.y1c{bottom:389.986667pt;}
.y67{bottom:393.186667pt;}
.yed{bottom:397.986667pt;}
.y7a{bottom:399.106667pt;}
.y42{bottom:402.146667pt;}
.y7b{bottom:402.466667pt;}
.yae{bottom:405.666667pt;}
.yec{bottom:413.346667pt;}
.y8c{bottom:414.626667pt;}
.y1b{bottom:415.746667pt;}
.y66{bottom:418.946667pt;}
.y75{bottom:422.306667pt;}
.y79{bottom:425.026667pt;}
.y41{bottom:427.906667pt;}
.yeb{bottom:428.706667pt;}
.yad{bottom:431.426667pt;}
.y8b{bottom:440.386667pt;}
.y1a{bottom:441.506667pt;}
.yea{bottom:444.066667pt;}
.y65{bottom:444.706667pt;}
.y11d{bottom:447.426667pt;}
.y78{bottom:450.786667pt;}
.y40{bottom:453.666667pt;}
.yac{bottom:457.186667pt;}
.ye9{bottom:459.426667pt;}
.y11c{bottom:462.786667pt;}
.y8a{bottom:466.146667pt;}
.y19{bottom:467.426667pt;}
.y64{bottom:470.466667pt;}
.ye8{bottom:474.626667pt;}
.y77{bottom:476.546667pt;}
.y11b{bottom:477.986667pt;}
.y3f{bottom:479.426667pt;}
.yab{bottom:482.946667pt;}
.ye7{bottom:489.986667pt;}
.y89{bottom:491.906667pt;}
.y18{bottom:493.186667pt;}
.y11a{bottom:493.346667pt;}
.y63{bottom:496.386667pt;}
.y3e{bottom:505.186667pt;}
.ye6{bottom:505.346667pt;}
.yaa{bottom:508.706667pt;}
.yc0{bottom:513.506667pt;}
.y88{bottom:517.666667pt;}
.y17{bottom:518.946667pt;}
.ye5{bottom:520.706667pt;}
.y62{bottom:522.146667pt;}
.y119{bottom:525.826667pt;}
.ybf{bottom:530.786667pt;}
.y3d{bottom:531.106667pt;}
.ya9{bottom:534.626667pt;}
.ye4{bottom:536.066667pt;}
.y118{bottom:543.106667pt;}
.y87{bottom:543.586667pt;}
.y16{bottom:544.706667pt;}
.y61{bottom:547.906667pt;}
.ye3{bottom:551.266667pt;}
.y3c{bottom:556.866667pt;}
.y117{bottom:560.226667pt;}
.ya8{bottom:560.386667pt;}
.y15{bottom:562.013333pt;}
.ybe{bottom:565.053333pt;}
.ye2{bottom:566.653333pt;}
.ybc{bottom:569.373333pt;}
.y60{bottom:573.693333pt;}
.y116{bottom:577.373333pt;}
.ye1{bottom:582.013333pt;}
.ybd{bottom:582.333333pt;}
.y3b{bottom:582.653333pt;}
.ya7{bottom:586.173333pt;}
.y14{bottom:593.693333pt;}
.y115{bottom:594.653333pt;}
.ybb{bottom:595.133333pt;}
.ye0{bottom:597.373333pt;}
.y5f{bottom:599.453333pt;}
.y3a{bottom:608.413333pt;}
.y114{bottom:611.773333pt;}
.ya6{bottom:611.933333pt;}
.ydf{bottom:612.733333pt;}
.y13{bottom:616.093333pt;}
.y5e{bottom:625.373333pt;}
.yde{bottom:628.093333pt;}
.y113{bottom:629.053333pt;}
.y39{bottom:634.173333pt;}
.ya5{bottom:637.693333pt;}
.ydd{bottom:643.293333pt;}
.y112{bottom:646.173333pt;}
.y12{bottom:646.813333pt;}
.y5d{bottom:651.133333pt;}
.ydc{bottom:658.653333pt;}
.y38{bottom:660.093333pt;}
.y111{bottom:663.453333pt;}
.ya4{bottom:663.613333pt;}
.ydb{bottom:674.013333pt;}
.y5c{bottom:676.893333pt;}
.y11{bottom:678.813333pt;}
.y110{bottom:680.573333pt;}
.y37{bottom:685.853333pt;}
.ya3{bottom:689.373333pt;}
.y10{bottom:695.133333pt;}
.y10f{bottom:697.853333pt;}
.y5b{bottom:702.653333pt;}
.yda{bottom:704.733333pt;}
.yf{bottom:711.293333pt;}
.y36{bottom:711.613333pt;}
.y10e{bottom:714.973333pt;}
.ya2{bottom:715.133333pt;}
.yd9{bottom:720.093333pt;}
.ye{bottom:727.453333pt;}
.y5a{bottom:728.413333pt;}
.y10d{bottom:732.253333pt;}
.yd8{bottom:734.973333pt;}
.y35{bottom:737.373333pt;}
.ya1{bottom:740.893333pt;}
.yd{bottom:743.613333pt;}
.y10c{bottom:749.373333pt;}
.yd7{bottom:750.653333pt;}
.y59{bottom:754.333333pt;}
.yc{bottom:759.773333pt;}
.y34{bottom:763.133333pt;}
.yd6{bottom:766.333333pt;}
.ya0{bottom:766.653333pt;}
.yd5{bottom:769.693333pt;}
.y58{bottom:780.093333pt;}
.yd4{bottom:781.853333pt;}
.y10b{bottom:783.773333pt;}
.yd3{bottom:785.213333pt;}
.yb{bottom:789.093333pt;}
.y9f{bottom:792.613333pt;}
.yd2{bottom:797.573333pt;}
.yd1{bottom:800.933333pt;}
.y10a{bottom:801.093333pt;}
.y57{bottom:805.893333pt;}
.yd0{bottom:813.253333pt;}
.y33{bottom:814.853333pt;}
.y109{bottom:818.213333pt;}
.y9e{bottom:818.373333pt;}
.ya{bottom:819.173333pt;}
.ycf{bottom:828.773333pt;}
.y56{bottom:831.653333pt;}
.yce{bottom:832.133333pt;}
.y108{bottom:835.333333pt;}
.y32{bottom:840.613333pt;}
.y9d{bottom:844.133333pt;}
.ycd{bottom:844.453333pt;}
.y9{bottom:849.573333pt;}
.y107{bottom:852.613333pt;}
.y55{bottom:857.413333pt;}
.ycc{bottom:860.133333pt;}
.ycb{bottom:863.493333pt;}
.y31{bottom:866.373333pt;}
.y106{bottom:869.733333pt;}
.y9c{bottom:869.893333pt;}
.yca{bottom:875.813333pt;}
.y8{bottom:882.853333pt;}
.y54{bottom:883.333333pt;}
.y74{bottom:886.693333pt;}
.y105{bottom:887.013333pt;}
.yc9{bottom:891.333333pt;}
.y30{bottom:892.133333pt;}
.yc8{bottom:894.693333pt;}
.y9b{bottom:895.653333pt;}
.y104{bottom:904.133333pt;}
.yc7{bottom:907.013333pt;}
.y53{bottom:909.093333pt;}
.y7{bottom:914.053333pt;}
.y2f{bottom:918.053333pt;}
.y103{bottom:921.413333pt;}
.y9a{bottom:921.573333pt;}
.yc6{bottom:922.693333pt;}
.y52{bottom:934.853333pt;}
.yc5{bottom:938.213333pt;}
.y102{bottom:938.693333pt;}
.yc4{bottom:941.573333pt;}
.y2e{bottom:943.813333pt;}
.y99{bottom:947.333333pt;}
.y6{bottom:951.653333pt;}
.y101{bottom:953.893333pt;}
.yc3{bottom:954.213333pt;}
.y51{bottom:960.613333pt;}
.y2d{bottom:969.573333pt;}
.y100{bottom:971.173333pt;}
.yc2{bottom:983.333333pt;}
.y50{bottom:986.373333pt;}
.y5{bottom:989.093333pt;}
.y2c{bottom:995.333333pt;}
.y4f{bottom:1004.293333pt;}
.y3{bottom:1022.720000pt;}
.y2b{bottom:1039.200000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1052.000000pt;}
.y2a{bottom:1053.120000pt;}
.hf{height:17.278667pt;}
.hc{height:28.202500pt;}
.h10{height:30.071250pt;}
.h3{height:32.298750pt;}
.h9{height:33.796875pt;}
.h6{height:41.457500pt;}
.h7{height:41.765625pt;}
.h8{height:42.140625pt;}
.h11{height:46.220625pt;}
.h2{height:51.232500pt;}
.ha{height:51.692500pt;}
.h12{height:54.598989pt;}
.hd{height:60.519362pt;}
.he{height:61.295000pt;}
.h4{height:65.781915pt;}
.h5{height:74.729375pt;}
.h1{height:1122.666667pt;}
.hb{height:1122.718213pt;}
.h0{height:1122.720000pt;}
.w3{width:313.665333pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:10.718667pt;}
.x3{left:68.000000pt;}
.x1a{left:70.400000pt;}
.x1b{left:72.800000pt;}
.x1c{left:75.200000pt;}
.x1d{left:77.120000pt;}
.xe{left:84.830333pt;}
.x8{left:90.752000pt;}
.x7{left:91.872000pt;}
.x15{left:111.550333pt;}
.x17{left:116.032000pt;}
.x16{left:121.312000pt;}
.x2{left:192.506667pt;}
.x9{left:232.665000pt;}
.xa{left:235.226667pt;}
.xb{left:260.705000pt;}
.xc{left:265.826667pt;}
.x4{left:396.866667pt;}
.xd{left:412.066667pt;}
.x18{left:436.093333pt;}
.x11{left:454.011667pt;}
.x12{left:458.653333pt;}
.xf{left:516.731667pt;}
.x10{left:523.933333pt;}
.x13{left:541.531667pt;}
.x14{left:548.733333pt;}
.x5{left:585.853333pt;}
.x1{left:597.253333pt;}
.x6{left:725.733333pt;}
}




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