
    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_b21bd8a7e64b6af6d8ce5218.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_d5cd6300cbf66eb9393a9910.woff')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_d05ae9e39b172893fc96ed88.woff')format("woff");}.ff3{font-family:ff3;line-height:0.776367;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_82e98ff6038e4ac26fa52819.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_037666c7cde1ea2a83d7a68d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_464cc42cd0b8a8747f0ca647.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_f5ef45ec2773ceb3fc574f65.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_5d6bd2aa5f101e2f16bb8309.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_4c512a57319df31693e1a6cf.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_4d16e74f4853ffd57b3b4f07.woff')format("woff");}.ffa{font-family:ffa;line-height:1.201172;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_6876fae54b7ed7aedc04a8dd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_627df29e67a7c8688649ebed.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_60c350bdece315820a5b8e35.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_836a54439b577359a439225b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v1{vertical-align:-105.840000px;}
.v3{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.828000px;}
.ls14{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.089400px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.020160px;}
.ls13{letter-spacing:0.129600px;}
.ls12{letter-spacing:0.141000px;}
.ls17{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.189735px;}
.ls1{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.284602px;}
.ls16{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.305280px;}
.lsb{letter-spacing:0.305400px;}
.lse{letter-spacing:0.391680px;}
.ls15{letter-spacing:309.864000px;}
.ls2{letter-spacing:335.640000px;}
.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;}
}
.ws4{word-spacing:-28.080745px;}
.ws1{word-spacing:-27.985877px;}
.ws3{word-spacing:-27.796143px;}
.ws5{word-spacing:-20.232000px;}
.wse{word-spacing:-18.676920px;}
.wsa{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.262320px;}
.wsb{word-spacing:-18.152520px;}
.ws8{word-spacing:-18.109320px;}
.ws0{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.694720px;}
.ws9{word-spacing:-17.586720px;}
.ws12{word-spacing:-15.111240px;}
.ws11{word-spacing:-14.990400px;}
.wsf{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.965519px;}
.ws10{word-spacing:-14.506440px;}
.wsc{word-spacing:-11.519880px;}
.wsd{word-spacing:0.000000px;}
._2{margin-left:-1.080000px;}
._3{width:1.092000px;}
._8{width:2.617920px;}
._c{width:3.916800px;}
._e{width:5.345280px;}
._a{width:6.638400px;}
._9{width:7.816320px;}
._b{width:8.847840px;}
._d{width:10.200960px;}
._f{width:11.294880px;}
._10{width:12.993600px;}
._6{width:14.496960px;}
._7{width:15.677040px;}
._4{width:17.242560px;}
._5{width:19.716960px;}
._0{width:414.000000px;}
._1{width:1336.620000px;}
.fc7{color:rgb(33,37,41);}
.fc6{color:rgb(91,155,213);}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(23,26,108);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs1{font-size:47.813160px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:94.867381px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-7.020000px;}
.yf{bottom:-2.160000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.240000px;}
.y52{bottom:3.420000px;}
.y32{bottom:3.600000px;}
.y62{bottom:3.960000px;}
.y41{bottom:4.500000px;}
.y76{bottom:4.545000px;}
.y16{bottom:7.920000px;}
.y18{bottom:8.100000px;}
.y33{bottom:9.000000px;}
.y23{bottom:9.180000px;}
.y7{bottom:11.160000px;}
.y68{bottom:11.190000px;}
.ya{bottom:14.400000px;}
.y6b{bottom:14.430000px;}
.y35{bottom:17.280000px;}
.ye{bottom:19.260000px;}
.y6e{bottom:19.290000px;}
.y59{bottom:22.320000px;}
.y31{bottom:22.500000px;}
.y9f{bottom:22.545000px;}
.y61{bottom:24.120000px;}
.y72{bottom:24.660000px;}
.y1a{bottom:26.865000px;}
.y15{bottom:27.000000px;}
.y6{bottom:36.000000px;}
.y67{bottom:36.030000px;}
.y9{bottom:39.240000px;}
.y6a{bottom:39.270000px;}
.y58{bottom:41.400000px;}
.y9e{bottom:41.445000px;}
.y30{bottom:41.580000px;}
.y60{bottom:43.200000px;}
.yd{bottom:44.280000px;}
.y6d{bottom:44.310000px;}
.y4{bottom:57.780000px;}
.y65{bottom:57.816000px;}
.y57{bottom:60.300000px;}
.y2f{bottom:60.525000px;}
.y5f{bottom:62.100000px;}
.y3{bottom:78.516000px;}
.y56{bottom:79.020000px;}
.y2e{bottom:79.425000px;}
.y5e{bottom:81.180000px;}
.y55{bottom:93.060000px;}
.y2d{bottom:98.505000px;}
.y39{bottom:99.216000px;}
.y5d{bottom:100.080000px;}
.y2c{bottom:117.405000px;}
.y5c{bottom:118.800000px;}
.y51{bottom:118.836000px;}
.y5b{bottom:132.840000px;}
.y8c{bottom:133.596000px;}
.y9d{bottom:136.305000px;}
.y2b{bottom:136.485000px;}
.y50{bottom:142.056000px;}
.y2a{bottom:155.385000px;}
.y8b{bottom:156.090000px;}
.y4f{bottom:165.270000px;}
.y29{bottom:174.285000px;}
.y8a{bottom:178.590000px;}
.y4e{bottom:188.670000px;}
.y28{bottom:193.365000px;}
.y89{bottom:201.090000px;}
.y4d{bottom:211.890000px;}
.y27{bottom:212.265000px;}
.y99{bottom:223.950000px;}
.y88{bottom:224.310000px;}
.y26{bottom:231.345000px;}
.y9c{bottom:231.375000px;}
.y4c{bottom:235.110000px;}
.y87{bottom:246.855000px;}
.y25{bottom:250.245000px;}
.y9b{bottom:251.355000px;}
.y4b{bottom:258.330000px;}
.y24{bottom:263.730000px;}
.y86{bottom:269.355000px;}
.y9a{bottom:271.335000px;}
.y4a{bottom:281.550000px;}
.y85{bottom:291.855000px;}
.y49{bottom:304.770000px;}
.y84{bottom:314.355000px;}
.y48{bottom:328.215000px;}
.y83{bottom:336.855000px;}
.y47{bottom:351.435000px;}
.y5a{bottom:359.175000px;}
.y82{bottom:360.075000px;}
.y53{bottom:371.595000px;}
.y46{bottom:374.655000px;}
.y81{bottom:382.575000px;}
.y45{bottom:397.875000px;}
.y80{bottom:405.075000px;}
.y3f{bottom:419.259000px;}
.y44{bottom:421.095000px;}
.y7f{bottom:427.575000px;}
.y3e{bottom:438.159000px;}
.y43{bottom:444.315000px;}
.y7e{bottom:450.105000px;}
.y3d{bottom:457.059000px;}
.y42{bottom:467.715000px;}
.y7d{bottom:472.605000px;}
.y3c{bottom:476.169000px;}
.y40{bottom:490.935000px;}
.y3b{bottom:495.069000px;}
.y7c{bottom:496.005000px;}
.y98{bottom:510.945000px;}
.y3a{bottom:514.149000px;}
.y7b{bottom:518.505000px;}
.y22{bottom:530.175000px;}
.y97{bottom:534.165000px;}
.y7a{bottom:541.005000px;}
.y96{bottom:556.665000px;}
.y79{bottom:563.505000px;}
.y95{bottom:579.165000px;}
.y21{bottom:583.305000px;}
.y78{bottom:583.665000px;}
.yb2{bottom:600.045000px;}
.y20{bottom:600.765000px;}
.y94{bottom:601.665000px;}
.y77{bottom:606.165000px;}
.y93{bottom:624.165000px;}
.y75{bottom:628.665000px;}
.y38{bottom:629.565000px;}
.yb1{bottom:641.445000px;}
.y92{bottom:646.710000px;}
.y1f{bottom:648.465000px;}
.y74{bottom:651.210000px;}
.yb0{bottom:662.145000px;}
.y54{bottom:664.635000px;}
.y91{bottom:670.110000px;}
.y73{bottom:674.430000px;}
.y1e{bottom:677.265000px;}
.y37{bottom:682.665000px;}
.yaf{bottom:683.025000px;}
.y90{bottom:692.610000px;}
.y71{bottom:696.930000px;}
.y34{bottom:700.125000px;}
.yae{bottom:703.725000px;}
.y1d{bottom:705.885000px;}
.y8f{bottom:715.110000px;}
.yad{bottom:724.425000px;}
.y8e{bottom:737.610000px;}
.y70{bottom:738.510000px;}
.yac{bottom:745.125000px;}
.y1c{bottom:753.585000px;}
.y8d{bottom:760.110000px;}
.yab{bottom:765.825000px;}
.y6f{bottom:765.870000px;}
.y1b{bottom:782.385000px;}
.yaa{bottom:786.525000px;}
.y64{bottom:786.570000px;}
.y63{bottom:803.310000px;}
.ya9{bottom:807.225000px;}
.y19{bottom:811.185000px;}
.y6c{bottom:818.070000px;}
.y69{bottom:819.870000px;}
.y66{bottom:823.110000px;}
.ya8{bottom:827.970000px;}
.ya7{bottom:845.430000px;}
.y17{bottom:858.750000px;}
.ya6{bottom:865.050000px;}
.ya5{bottom:884.850000px;}
.y14{bottom:887.550000px;}
.ya4{bottom:904.650000px;}
.ya3{bottom:924.270000px;}
.y13{bottom:939.210000px;}
.ya2{bottom:944.070000px;}
.y12{bottom:960.990000px;}
.ya1{bottom:982.770000px;}
.y11{bottom:1015.170000px;}
.y10{bottom:1035.690000px;}
.ya0{bottom:1035.870000px;}
.y2{bottom:1056.570000px;}
.y1{bottom:1073.340000px;}
.yc{bottom:1088.100000px;}
.y8{bottom:1089.900000px;}
.y5{bottom:1093.140000px;}
.h27{height:18.900000px;}
.h26{height:19.080000px;}
.h21{height:20.160000px;}
.h15{height:22.500000px;}
.h19{height:22.536000px;}
.hd{height:27.900000px;}
.hb{height:28.080000px;}
.h3{height:36.326795px;}
.h24{height:37.980000px;}
.h20{height:41.580000px;}
.h18{height:45.720000px;}
.hc{height:46.836000px;}
.h9{height:46.980000px;}
.h2{height:47.160000px;}
.h1d{height:47.196000px;}
.h13{height:48.240000px;}
.h25{height:48.418594px;}
.he{height:48.456000px;}
.h11{height:50.062500px;}
.h5{height:50.400000px;}
.h1e{height:50.436000px;}
.h6{height:55.440000px;}
.h1f{height:55.476000px;}
.h22{height:61.423863px;}
.h17{height:65.884219px;}
.h16{height:67.824844px;}
.ha{height:69.086250px;}
.h1{height:70.628906px;}
.h4{height:72.076975px;}
.h28{height:74.004654px;}
.h7{height:75.093750px;}
.hf{height:93.867188px;}
.h8{height:99.874688px;}
.h10{height:265.710000px;}
.h23{height:286.995000px;}
.h12{height:351.570000px;}
.h14{height:529.635000px;}
.h1a{height:680.115000px;}
.h1b{height:692.535000px;}
.h1c{height:918.000000px;}
.h0{height:1188.000000px;}
.w11{width:59.760000px;}
.wf{width:69.660000px;}
.w18{width:70.200000px;}
.w4{width:70.236000px;}
.w1b{width:72.000000px;}
.w24{width:78.120000px;}
.w1d{width:78.480000px;}
.w20{width:78.516000px;}
.w22{width:78.660000px;}
.w12{width:83.556000px;}
.w10{width:97.596000px;}
.w27{width:103.860000px;}
.w28{width:103.896000px;}
.w26{width:104.040000px;}
.w25{width:104.076000px;}
.w21{width:104.220000px;}
.w23{width:104.256000px;}
.w1f{width:104.400000px;}
.w1e{width:104.436000px;}
.w2d{width:114.660000px;}
.wd{width:120.636000px;}
.w1c{width:122.796000px;}
.w3{width:130.140000px;}
.w2{width:130.500000px;}
.w17{width:130.536000px;}
.wb{width:143.676000px;}
.w19{width:145.116000px;}
.wc{width:162.720000px;}
.w13{width:163.080000px;}
.we{width:166.350000px;}
.wa{width:167.610000px;}
.w29{width:182.880000px;}
.w5{width:273.135000px;}
.w9{width:286.995000px;}
.w14{width:475.095000px;}
.w6{width:489.495000px;}
.w2c{width:655.890000px;}
.w1a{width:731.445000px;}
.w7{width:763.710000px;}
.w2b{width:771.990000px;}
.w8{width:780.450000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w2a{width:1071.360000px;}
.w16{width:1187.999982px;}
.w15{width:1188.000000px;}
.x0{left:0.000000px;}
.x11{left:7.560000px;}
.xb{left:10.800000px;}
.xa{left:13.860000px;}
.x6{left:15.120000px;}
.xe{left:17.280000px;}
.xd{left:23.400000px;}
.x36{left:27.000000px;}
.x34{left:34.020000px;}
.x37{left:35.460000px;}
.x5{left:39.600000px;}
.x9{left:40.860000px;}
.x20{left:43.740000px;}
.x13{left:45.000000px;}
.x1a{left:53.100000px;}
.x24{left:54.720000px;}
.x3c{left:57.240000px;}
.x16{left:58.896000px;}
.x35{left:63.900000px;}
.x18{left:64.980000px;}
.x21{left:67.500000px;}
.x22{left:68.580000px;}
.x38{left:70.380000px;}
.x10{left:77.400000px;}
.x1f{left:81.570000px;}
.x25{left:82.650000px;}
.x3{left:84.959986px;}
.x15{left:86.580000px;}
.x39{left:95.790000px;}
.x7{left:115.380000px;}
.x3d{left:167.429986px;}
.x1c{left:207.210000px;}
.x23{left:212.790000px;}
.x29{left:230.970000px;}
.x2a{left:279.405000px;}
.x2d{left:309.450000px;}
.x1{left:315.434986px;}
.x12{left:351.255000px;}
.x17{left:373.935000px;}
.x2e{left:413.895000px;}
.x1d{left:443.955000px;}
.x2{left:458.894986px;}
.x14{left:486.465000px;}
.x2f{left:492.375000px;}
.x4{left:495.105000px;}
.x3a{left:535.605000px;}
.x19{left:541.905000px;}
.xf{left:576.644986px;}
.x28{left:593.894982px;}
.x30{left:596.775000px;}
.x1e{left:602.025000px;}
.xc{left:636.405000px;}
.x26{left:645.450000px;}
.x31{left:675.285000px;}
.x1b{left:686.310000px;}
.x8{left:724.650000px;}
.x3b{left:734.190000px;}
.x27{left:754.170000px;}
.x32{left:779.505000px;}
.x33{left:858.165000px;}
.x2b{left:962.430000px;}
.x2c{left:1034.430000px;}
@media print{
.v1{vertical-align:-94.080000pt;}
.v3{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.017920pt;}
.ls13{letter-spacing:0.115200pt;}
.ls12{letter-spacing:0.125333pt;}
.ls17{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.168653pt;}
.ls1{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.252980pt;}
.ls16{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.271360pt;}
.lsb{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.348160pt;}
.ls15{letter-spacing:275.434667pt;}
.ls2{letter-spacing:298.346667pt;}
.ws4{word-spacing:-24.960662pt;}
.ws1{word-spacing:-24.876336pt;}
.ws3{word-spacing:-24.707682pt;}
.ws5{word-spacing:-17.984000pt;}
.wse{word-spacing:-16.601707pt;}
.wsa{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.233173pt;}
.wsb{word-spacing:-16.135573pt;}
.ws8{word-spacing:-16.097173pt;}
.ws0{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.728640pt;}
.ws9{word-spacing:-15.632640pt;}
.ws12{word-spacing:-13.432213pt;}
.ws11{word-spacing:-13.324800pt;}
.wsf{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.302684pt;}
.ws10{word-spacing:-12.894613pt;}
.wsc{word-spacing:-10.239893pt;}
.wsd{word-spacing:0.000000pt;}
._2{margin-left:-0.960000pt;}
._3{width:0.970667pt;}
._8{width:2.327040pt;}
._c{width:3.481600pt;}
._e{width:4.751360pt;}
._a{width:5.900800pt;}
._9{width:6.947840pt;}
._b{width:7.864747pt;}
._d{width:9.067520pt;}
._f{width:10.039893pt;}
._10{width:11.549867pt;}
._6{width:12.886187pt;}
._7{width:13.935147pt;}
._4{width:15.326720pt;}
._5{width:17.526187pt;}
._0{width:368.000000pt;}
._1{width:1188.106667pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.500587pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:84.326561pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-6.240000pt;}
.yf{bottom:-1.920000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.880000pt;}
.y52{bottom:3.040000pt;}
.y32{bottom:3.200000pt;}
.y62{bottom:3.520000pt;}
.y41{bottom:4.000000pt;}
.y76{bottom:4.040000pt;}
.y16{bottom:7.040000pt;}
.y18{bottom:7.200000pt;}
.y33{bottom:8.000000pt;}
.y23{bottom:8.160000pt;}
.y7{bottom:9.920000pt;}
.y68{bottom:9.946667pt;}
.ya{bottom:12.800000pt;}
.y6b{bottom:12.826667pt;}
.y35{bottom:15.360000pt;}
.ye{bottom:17.120000pt;}
.y6e{bottom:17.146667pt;}
.y59{bottom:19.840000pt;}
.y31{bottom:20.000000pt;}
.y9f{bottom:20.040000pt;}
.y61{bottom:21.440000pt;}
.y72{bottom:21.920000pt;}
.y1a{bottom:23.880000pt;}
.y15{bottom:24.000000pt;}
.y6{bottom:32.000000pt;}
.y67{bottom:32.026667pt;}
.y9{bottom:34.880000pt;}
.y6a{bottom:34.906667pt;}
.y58{bottom:36.800000pt;}
.y9e{bottom:36.840000pt;}
.y30{bottom:36.960000pt;}
.y60{bottom:38.400000pt;}
.yd{bottom:39.360000pt;}
.y6d{bottom:39.386667pt;}
.y4{bottom:51.360000pt;}
.y65{bottom:51.392000pt;}
.y57{bottom:53.600000pt;}
.y2f{bottom:53.800000pt;}
.y5f{bottom:55.200000pt;}
.y3{bottom:69.792000pt;}
.y56{bottom:70.240000pt;}
.y2e{bottom:70.600000pt;}
.y5e{bottom:72.160000pt;}
.y55{bottom:82.720000pt;}
.y2d{bottom:87.560000pt;}
.y39{bottom:88.192000pt;}
.y5d{bottom:88.960000pt;}
.y2c{bottom:104.360000pt;}
.y5c{bottom:105.600000pt;}
.y51{bottom:105.632000pt;}
.y5b{bottom:118.080000pt;}
.y8c{bottom:118.752000pt;}
.y9d{bottom:121.160000pt;}
.y2b{bottom:121.320000pt;}
.y50{bottom:126.272000pt;}
.y2a{bottom:138.120000pt;}
.y8b{bottom:138.746667pt;}
.y4f{bottom:146.906667pt;}
.y29{bottom:154.920000pt;}
.y8a{bottom:158.746667pt;}
.y4e{bottom:167.706667pt;}
.y28{bottom:171.880000pt;}
.y89{bottom:178.746667pt;}
.y4d{bottom:188.346667pt;}
.y27{bottom:188.680000pt;}
.y99{bottom:199.066667pt;}
.y88{bottom:199.386667pt;}
.y26{bottom:205.640000pt;}
.y9c{bottom:205.666667pt;}
.y4c{bottom:208.986667pt;}
.y87{bottom:219.426667pt;}
.y25{bottom:222.440000pt;}
.y9b{bottom:223.426667pt;}
.y4b{bottom:229.626667pt;}
.y24{bottom:234.426667pt;}
.y86{bottom:239.426667pt;}
.y9a{bottom:241.186667pt;}
.y4a{bottom:250.266667pt;}
.y85{bottom:259.426667pt;}
.y49{bottom:270.906667pt;}
.y84{bottom:279.426667pt;}
.y48{bottom:291.746667pt;}
.y83{bottom:299.426667pt;}
.y47{bottom:312.386667pt;}
.y5a{bottom:319.266667pt;}
.y82{bottom:320.066667pt;}
.y53{bottom:330.306667pt;}
.y46{bottom:333.026667pt;}
.y81{bottom:340.066667pt;}
.y45{bottom:353.666667pt;}
.y80{bottom:360.066667pt;}
.y3f{bottom:372.674667pt;}
.y44{bottom:374.306667pt;}
.y7f{bottom:380.066667pt;}
.y3e{bottom:389.474667pt;}
.y43{bottom:394.946667pt;}
.y7e{bottom:400.093333pt;}
.y3d{bottom:406.274667pt;}
.y42{bottom:415.746667pt;}
.y7d{bottom:420.093333pt;}
.y3c{bottom:423.261333pt;}
.y40{bottom:436.386667pt;}
.y3b{bottom:440.061333pt;}
.y7c{bottom:440.893333pt;}
.y98{bottom:454.173333pt;}
.y3a{bottom:457.021333pt;}
.y7b{bottom:460.893333pt;}
.y22{bottom:471.266667pt;}
.y97{bottom:474.813333pt;}
.y7a{bottom:480.893333pt;}
.y96{bottom:494.813333pt;}
.y79{bottom:500.893333pt;}
.y95{bottom:514.813333pt;}
.y21{bottom:518.493333pt;}
.y78{bottom:518.813333pt;}
.yb2{bottom:533.373333pt;}
.y20{bottom:534.013333pt;}
.y94{bottom:534.813333pt;}
.y77{bottom:538.813333pt;}
.y93{bottom:554.813333pt;}
.y75{bottom:558.813333pt;}
.y38{bottom:559.613333pt;}
.yb1{bottom:570.173333pt;}
.y92{bottom:574.853333pt;}
.y1f{bottom:576.413333pt;}
.y74{bottom:578.853333pt;}
.yb0{bottom:588.573333pt;}
.y54{bottom:590.786667pt;}
.y91{bottom:595.653333pt;}
.y73{bottom:599.493333pt;}
.y1e{bottom:602.013333pt;}
.y37{bottom:606.813333pt;}
.yaf{bottom:607.133333pt;}
.y90{bottom:615.653333pt;}
.y71{bottom:619.493333pt;}
.y34{bottom:622.333333pt;}
.yae{bottom:625.533333pt;}
.y1d{bottom:627.453333pt;}
.y8f{bottom:635.653333pt;}
.yad{bottom:643.933333pt;}
.y8e{bottom:655.653333pt;}
.y70{bottom:656.453333pt;}
.yac{bottom:662.333333pt;}
.y1c{bottom:669.853333pt;}
.y8d{bottom:675.653333pt;}
.yab{bottom:680.733333pt;}
.y6f{bottom:680.773333pt;}
.y1b{bottom:695.453333pt;}
.yaa{bottom:699.133333pt;}
.y64{bottom:699.173333pt;}
.y63{bottom:714.053333pt;}
.ya9{bottom:717.533333pt;}
.y19{bottom:721.053333pt;}
.y6c{bottom:727.173333pt;}
.y69{bottom:728.773333pt;}
.y66{bottom:731.653333pt;}
.ya8{bottom:735.973333pt;}
.ya7{bottom:751.493333pt;}
.y17{bottom:763.333333pt;}
.ya6{bottom:768.933333pt;}
.ya5{bottom:786.533333pt;}
.y14{bottom:788.933333pt;}
.ya4{bottom:804.133333pt;}
.ya3{bottom:821.573333pt;}
.y13{bottom:834.853333pt;}
.ya2{bottom:839.173333pt;}
.y12{bottom:854.213333pt;}
.ya1{bottom:873.573333pt;}
.y11{bottom:902.373333pt;}
.y10{bottom:920.613333pt;}
.ya0{bottom:920.773333pt;}
.y2{bottom:939.173333pt;}
.y1{bottom:954.080000pt;}
.yc{bottom:967.200000pt;}
.y8{bottom:968.800000pt;}
.y5{bottom:971.680000pt;}
.h27{height:16.800000pt;}
.h26{height:16.960000pt;}
.h21{height:17.920000pt;}
.h15{height:20.000000pt;}
.h19{height:20.032000pt;}
.hd{height:24.800000pt;}
.hb{height:24.960000pt;}
.h3{height:32.290485pt;}
.h24{height:33.760000pt;}
.h20{height:36.960000pt;}
.h18{height:40.640000pt;}
.hc{height:41.632000pt;}
.h9{height:41.760000pt;}
.h2{height:41.920000pt;}
.h1d{height:41.952000pt;}
.h13{height:42.880000pt;}
.h25{height:43.038750pt;}
.he{height:43.072000pt;}
.h11{height:44.500000pt;}
.h5{height:44.800000pt;}
.h1e{height:44.832000pt;}
.h6{height:49.280000pt;}
.h1f{height:49.312000pt;}
.h22{height:54.598989pt;}
.h17{height:58.563750pt;}
.h16{height:60.288750pt;}
.ha{height:61.410000pt;}
.h1{height:62.781250pt;}
.h4{height:64.068422pt;}
.h28{height:65.781915pt;}
.h7{height:66.750000pt;}
.hf{height:83.437500pt;}
.h8{height:88.777500pt;}
.h10{height:236.186667pt;}
.h23{height:255.106667pt;}
.h12{height:312.506667pt;}
.h14{height:470.786667pt;}
.h1a{height:604.546667pt;}
.h1b{height:615.586667pt;}
.h1c{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w11{width:53.120000pt;}
.wf{width:61.920000pt;}
.w18{width:62.400000pt;}
.w4{width:62.432000pt;}
.w1b{width:64.000000pt;}
.w24{width:69.440000pt;}
.w1d{width:69.760000pt;}
.w20{width:69.792000pt;}
.w22{width:69.920000pt;}
.w12{width:74.272000pt;}
.w10{width:86.752000pt;}
.w27{width:92.320000pt;}
.w28{width:92.352000pt;}
.w26{width:92.480000pt;}
.w25{width:92.512000pt;}
.w21{width:92.640000pt;}
.w23{width:92.672000pt;}
.w1f{width:92.800000pt;}
.w1e{width:92.832000pt;}
.w2d{width:101.920000pt;}
.wd{width:107.232000pt;}
.w1c{width:109.152000pt;}
.w3{width:115.680000pt;}
.w2{width:116.000000pt;}
.w17{width:116.032000pt;}
.wb{width:127.712000pt;}
.w19{width:128.992000pt;}
.wc{width:144.640000pt;}
.w13{width:144.960000pt;}
.we{width:147.866667pt;}
.wa{width:148.986667pt;}
.w29{width:162.560000pt;}
.w5{width:242.786667pt;}
.w9{width:255.106667pt;}
.w14{width:422.306667pt;}
.w6{width:435.106667pt;}
.w2c{width:583.013333pt;}
.w1a{width:650.173333pt;}
.w7{width:678.853333pt;}
.w2b{width:686.213333pt;}
.w8{width:693.733333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w2a{width:952.320000pt;}
.w16{width:1055.999984pt;}
.w15{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.720000pt;}
.xb{left:9.600000pt;}
.xa{left:12.320000pt;}
.x6{left:13.440000pt;}
.xe{left:15.360000pt;}
.xd{left:20.800000pt;}
.x36{left:24.000000pt;}
.x34{left:30.240000pt;}
.x37{left:31.520000pt;}
.x5{left:35.200000pt;}
.x9{left:36.320000pt;}
.x20{left:38.880000pt;}
.x13{left:40.000000pt;}
.x1a{left:47.200000pt;}
.x24{left:48.640000pt;}
.x3c{left:50.880000pt;}
.x16{left:52.352000pt;}
.x35{left:56.800000pt;}
.x18{left:57.760000pt;}
.x21{left:60.000000pt;}
.x22{left:60.960000pt;}
.x38{left:62.560000pt;}
.x10{left:68.800000pt;}
.x1f{left:72.506667pt;}
.x25{left:73.466667pt;}
.x3{left:75.519988pt;}
.x15{left:76.960000pt;}
.x39{left:85.146667pt;}
.x7{left:102.560000pt;}
.x3d{left:148.826655pt;}
.x1c{left:184.186667pt;}
.x23{left:189.146667pt;}
.x29{left:205.306667pt;}
.x2a{left:248.360000pt;}
.x2d{left:275.066667pt;}
.x1{left:280.386655pt;}
.x12{left:312.226667pt;}
.x17{left:332.386667pt;}
.x2e{left:367.906667pt;}
.x1d{left:394.626667pt;}
.x2{left:407.906655pt;}
.x14{left:432.413333pt;}
.x2f{left:437.666667pt;}
.x4{left:440.093333pt;}
.x3a{left:476.093333pt;}
.x19{left:481.693333pt;}
.xf{left:512.573321pt;}
.x28{left:527.906651pt;}
.x30{left:530.466667pt;}
.x1e{left:535.133333pt;}
.xc{left:565.693333pt;}
.x26{left:573.733333pt;}
.x31{left:600.253333pt;}
.x1b{left:610.053333pt;}
.x8{left:644.133333pt;}
.x3b{left:652.613333pt;}
.x27{left:670.373333pt;}
.x32{left:692.893333pt;}
.x33{left:762.813333pt;}
.x2b{left:855.493333pt;}
.x2c{left:919.493333pt;}
}




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