
    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_ed7b77001fb5ba6e7077c866.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_0bc094d6e1109d21541943a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_86246faa8a42d70b8fd3801d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_e2f2b7629a50895dd12e7410.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927246;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_e267ba4949a2bea94818ac91.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_3301732a0ec867b8430f241e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_f08a2da476dd19cfd9abbbdb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_7b48896f69f94858273b89f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_565c42edbf8257d71d252cf0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_1c20cef7b7d0044ad47c3602.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_b54654b28dea55dfb2e7d1bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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_ce4924d9285bdc3344e28cf9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-0.870000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.496200px;}
.ls19{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.262200px;}
.ls13{letter-spacing:-0.253200px;}
.ls7{letter-spacing:-0.181200px;}
.ls28{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.045360px;}
.ls8{letter-spacing:-0.034560px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.269280px;}
.ls22{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.989280px;}
.ls12{letter-spacing:1.709280px;}
.ls26{letter-spacing:2.160000px;}
.ls4{letter-spacing:3.149280px;}
.ls20{letter-spacing:4.589280px;}
.ls15{letter-spacing:5.309280px;}
.lsc{letter-spacing:6.749280px;}
.lsd{letter-spacing:8.189280px;}
.ls1d{letter-spacing:9.629280px;}
.ls21{letter-spacing:10.349280px;}
.lse{letter-spacing:14.669280px;}
.ls23{letter-spacing:16.865280px;}
.ls18{letter-spacing:19.709280px;}
.ls1c{letter-spacing:36.269280px;}
.ls16{letter-spacing:39.869280px;}
.ls14{letter-spacing:53.549280px;}
.ls24{letter-spacing:65.069280px;}
.ls10{letter-spacing:101.801280px;}
.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;}
}
.ws7{word-spacing:-48.240000px;}
.wse{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.407600px;}
.wsf{word-spacing:-16.297800px;}
.ws10{word-spacing:-15.690000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.wsb{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.283800px;}
.ws4{word-spacing:-12.060000px;}
.wsc{word-spacing:-12.014640px;}
.wsa{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.563800px;}
.ws8{word-spacing:0.000000px;}
.ws1{word-spacing:0.047040px;}
._11{margin-left:-4.651920px;}
._9{margin-left:-2.965680px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._12{width:2.263200px;}
._3{width:3.274320px;}
._2{width:4.440000px;}
._4{width:5.940000px;}
._b{width:7.456320px;}
._a{width:8.478000px;}
._6{width:9.508320px;}
._5{width:10.638000px;}
._e{width:12.478320px;}
._17{width:14.042880px;}
._14{width:15.301440px;}
._d{width:16.848000px;}
._8{width:17.874000px;}
._7{width:18.900000px;}
._10{width:20.150640px;}
._f{width:21.168000px;}
._1d{width:22.321440px;}
._1a{width:23.448960px;}
._26{width:24.707520px;}
._25{width:25.833600px;}
._18{width:27.374400px;}
._c{width:28.512000px;}
._27{width:29.609280px;}
._24{width:30.669120px;}
._23{width:32.258880px;}
._1c{width:35.107200px;}
._1b{width:36.365760px;}
._22{width:37.661760px;}
._20{width:38.833200px;}
._21{width:39.966240px;}
._15{width:41.267520px;}
._16{width:42.592320px;}
._2c{width:43.718400px;}
._1f{width:51.954480px;}
._1e{width:53.002080px;}
._29{width:54.581040px;}
._28{width:55.620000px;}
._2b{width:63.290880px;}
._2a{width:64.434960px;}
._13{width:75.578400px;}
._2f{width:98.101440px;}
._19{width:113.400480px;}
._2e{width:136.785600px;}
._2d{width:364.121280px;}
.fc4{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc5{color:rgb(22,37,51);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.060000px;}
.y2{bottom:6.480000px;}
.y40{bottom:9.720000px;}
.y41{bottom:11.340000px;}
.y35{bottom:18.540000px;}
.y5{bottom:27.210000px;}
.y8{bottom:28.830000px;}
.y34{bottom:34.020000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y33{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y32{bottom:65.205000px;}
.y31{bottom:80.685000px;}
.y30{bottom:96.165000px;}
.y51{bottom:110.340000px;}
.y2f{bottom:111.645000px;}
.y50{bottom:124.020000px;}
.y2e{bottom:127.305000px;}
.y85{bottom:128.520000px;}
.ya8{bottom:131.940000px;}
.y4f{bottom:137.880000px;}
.y4e{bottom:142.380000px;}
.y2d{bottom:142.785000px;}
.y4d{bottom:151.740000px;}
.ya7{bottom:153.720000px;}
.y94{bottom:156.240000px;}
.y2c{bottom:158.265000px;}
.y4c{bottom:165.600000px;}
.y4b{bottom:170.100000px;}
.y2b{bottom:173.745000px;}
.ya6{bottom:175.500000px;}
.y84{bottom:179.460000px;}
.y4a{bottom:180.360000px;}
.y93{bottom:183.960000px;}
.y2a{bottom:189.405000px;}
.y83{bottom:193.140000px;}
.y92{bottom:193.320000px;}
.ya5{bottom:197.460000px;}
.y82{bottom:197.640000px;}
.y9a{bottom:197.820000px;}
.y29{bottom:204.885000px;}
.y48{bottom:205.020000px;}
.y81{bottom:207.000000px;}
.y99{bottom:207.180000px;}
.y8c{bottom:208.080000px;}
.y49{bottom:210.990000px;}
.y9d{bottom:211.530000px;}
.ya4{bottom:219.270000px;}
.y28{bottom:220.365000px;}
.y80{bottom:220.890000px;}
.y9c{bottom:221.790000px;}
.y7f{bottom:225.390000px;}
.y47{bottom:226.830000px;}
.y7e{bottom:234.750000px;}
.y27{bottom:235.845000px;}
.ya3{bottom:239.250000px;}
.y8b{bottom:241.050000px;}
.y45{bottom:248.610000px;}
.ya2{bottom:249.510000px;}
.y26{bottom:251.505000px;}
.y7d{bottom:253.110000px;}
.y46{bottom:254.550000px;}
.y8a{bottom:262.830000px;}
.y7c{bottom:263.370000px;}
.y25{bottom:266.985000px;}
.y8e{bottom:268.770000px;}
.y44{bottom:270.570000px;}
.y24{bottom:282.465000px;}
.y89{bottom:284.610000px;}
.y43{bottom:292.350000px;}
.y3d{bottom:294.165000px;}
.y23{bottom:297.975000px;}
.y7a{bottom:306.570000px;}
.y3c{bottom:307.875000px;}
.y42{bottom:309.810000px;}
.y7b{bottom:312.510000px;}
.y22{bottom:313.455000px;}
.y3b{bottom:321.735000px;}
.y79{bottom:328.350000px;}
.y21{bottom:329.115000px;}
.y3f{bottom:332.130000px;}
.y3a{bottom:335.595000px;}
.y20{bottom:344.595000px;}
.y39{bottom:349.275000px;}
.y78{bottom:350.130000px;}
.y1f{bottom:360.075000px;}
.y38{bottom:363.135000px;}
.y3e{bottom:369.750000px;}
.y77{bottom:371.910000px;}
.y1e{bottom:375.555000px;}
.y37{bottom:376.995000px;}
.y14{bottom:385.230000px;}
.y1d{bottom:391.215000px;}
.y75{bottom:393.870000px;}
.y76{bottom:399.810000px;}
.y1c{bottom:406.695000px;}
.y74{bottom:415.650000px;}
.y91{bottom:421.590000px;}
.y1b{bottom:422.175000px;}
.y73{bottom:437.430000px;}
.y1a{bottom:437.655000px;}
.y9b{bottom:443.370000px;}
.y19{bottom:453.315000px;}
.y72{bottom:459.255000px;}
.y9f{bottom:465.195000px;}
.y18{bottom:468.795000px;}
.y71{bottom:481.035000px;}
.y17{bottom:484.275000px;}
.y16{bottom:499.755000px;}
.y70{bottom:502.995000px;}
.y15{bottom:515.415000px;}
.y6f{bottom:524.775000px;}
.y98{bottom:530.715000px;}
.y6e{bottom:546.555000px;}
.y8d{bottom:552.495000px;}
.y6d{bottom:568.335000px;}
.y6c{bottom:590.295000px;}
.y6b{bottom:612.075000px;}
.y90{bottom:618.015000px;}
.y6a{bottom:633.855000px;}
.y9e{bottom:639.795000px;}
.y69{bottom:655.635000px;}
.y68{bottom:677.415000px;}
.y67{bottom:699.405000px;}
.y97{bottom:705.345000px;}
.y66{bottom:721.185000px;}
.y88{bottom:727.125000px;}
.y65{bottom:742.965000px;}
.ya1{bottom:748.905000px;}
.y64{bottom:764.745000px;}
.y96{bottom:770.685000px;}
.y63{bottom:786.705000px;}
.y61{bottom:808.485000px;}
.y62{bottom:814.425000px;}
.y60{bottom:830.265000px;}
.y5f{bottom:852.045000px;}
.y87{bottom:857.985000px;}
.y5e{bottom:873.825000px;}
.y8f{bottom:879.765000px;}
.y5d{bottom:895.785000px;}
.y5b{bottom:917.610000px;}
.y13{bottom:919.590000px;}
.y5c{bottom:923.550000px;}
.y5a{bottom:939.390000px;}
.y12{bottom:940.830000px;}
.y11{bottom:960.630000px;}
.y59{bottom:961.170000px;}
.y10{bottom:980.970000px;}
.y58{bottom:982.950000px;}
.y86{bottom:988.890000px;}
.yf{bottom:1001.130000px;}
.y57{bottom:1004.910000px;}
.ya0{bottom:1010.850000px;}
.ye{bottom:1018.770000px;}
.y56{bottom:1026.690000px;}
.y95{bottom:1032.630000px;}
.yd{bottom:1040.550000px;}
.y54{bottom:1048.470000px;}
.y55{bottom:1054.410000px;}
.yc{bottom:1063.590000px;}
.y53{bottom:1070.250000px;}
.yb{bottom:1089.510000px;}
.y52{bottom:1092.210000px;}
.y9{bottom:1111.110000px;}
.y1{bottom:1131.090000px;}
.h15{height:22.015547px;}
.h14{height:29.158594px;}
.h12{height:31.320000px;}
.h13{height:33.683203px;}
.h11{height:34.036523px;}
.h16{height:35.120039px;}
.hf{height:37.705078px;}
.he{height:38.100586px;}
.h8{height:39.147891px;}
.hb{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h10{height:44.507812px;}
.hc{height:46.251562px;}
.h4{height:46.736719px;}
.h7{height:48.224531px;}
.h6{height:49.255313px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h2{height:77.436000px;}
.hd{height:528.015000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:72.000000px;}
.w4{width:209.415000px;}
.w7{width:224.130000px;}
.w8{width:297.750000px;}
.w9{width:391.605000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:893.159973px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x14{left:29.694000px;}
.x6{left:44.685000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x1d{left:112.175987px;}
.x2d{left:116.315987px;}
.xb{left:118.835987px;}
.x13{left:124.236000px;}
.x8{left:127.305000px;}
.x56{left:129.275987px;}
.x2c{left:150.509987px;}
.x17{left:162.029987px;}
.x3{left:171.930000px;}
.xc{left:193.529987px;}
.x26{left:197.669973px;}
.x27{left:202.889987px;}
.x40{left:206.849973px;}
.x41{left:217.289987px;}
.x4c{left:245.369973px;}
.x4d{left:255.809987px;}
.x39{left:259.229973px;}
.x54{left:266.474973px;}
.x3a{left:269.714987px;}
.x28{left:270.974973px;}
.x29{left:276.194987px;}
.x10{left:290.774987px;}
.x3b{left:300.314973px;}
.x3c{left:310.754987px;}
.x11{left:312.194987px;}
.x1c{left:324.074987px;}
.xd{left:348.374987px;}
.x4b{left:371.234973px;}
.xf{left:380.954987px;}
.x37{left:384.554973px;}
.x38{left:394.994987px;}
.x46{left:405.974987px;}
.x44{left:418.574973px;}
.x15{left:421.995000px;}
.x45{left:429.014987px;}
.xe{left:446.684987px;}
.x22{left:449.024973px;}
.x23{left:454.244987px;}
.x52{left:458.924973px;}
.x53{left:469.364987px;}
.x18{left:480.704973px;}
.x19{left:485.924987px;}
.x3e{left:493.844973px;}
.xa{left:496.184987px;}
.x3f{left:504.284987px;}
.x42{left:512.384973px;}
.x35{left:519.224973px;}
.x43{left:522.824987px;}
.x36{left:529.664987px;}
.x55{left:539.564987px;}
.x20{left:556.844973px;}
.x21{left:562.064987px;}
.x12{left:567.105000px;}
.x1e{left:570.704973px;}
.x1f{left:575.924987px;}
.x5{left:599.865000px;}
.x49{left:612.104973px;}
.x4a{left:622.589987px;}
.x33{left:624.929973px;}
.x34{left:635.369987px;}
.x50{left:650.489973px;}
.x4e{left:653.369973px;}
.x51{left:660.929987px;}
.x4f{left:663.809987px;}
.x1a{left:676.409973px;}
.x1b{left:681.629987px;}
.x47{left:715.109973px;}
.x48{left:720.689973px;}
.x31{left:725.189973px;}
.x2e{left:730.949973px;}
.x32{left:735.629987px;}
.x2f{left:741.389987px;}
.x30{left:752.189987px;}
.x2a{left:772.709973px;}
.x3d{left:774.869973px;}
.x16{left:778.109987px;}
.x24{left:780.089973px;}
.x2b{left:783.149987px;}
.x25{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-0.773333pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.441067pt;}
.ls19{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.233067pt;}
.ls13{letter-spacing:-0.225067pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls28{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.040320pt;}
.ls8{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.239360pt;}
.ls22{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.879360pt;}
.ls12{letter-spacing:1.519360pt;}
.ls26{letter-spacing:1.920000pt;}
.ls4{letter-spacing:2.799360pt;}
.ls20{letter-spacing:4.079360pt;}
.ls15{letter-spacing:4.719360pt;}
.lsc{letter-spacing:5.999360pt;}
.lsd{letter-spacing:7.279360pt;}
.ls1d{letter-spacing:8.559360pt;}
.ls21{letter-spacing:9.199360pt;}
.lse{letter-spacing:13.039360pt;}
.ls23{letter-spacing:14.991360pt;}
.ls18{letter-spacing:17.519360pt;}
.ls1c{letter-spacing:32.239360pt;}
.ls16{letter-spacing:35.439360pt;}
.ls14{letter-spacing:47.599360pt;}
.ls24{letter-spacing:57.839360pt;}
.ls10{letter-spacing:90.490027pt;}
.ws7{word-spacing:-42.880000pt;}
.wse{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.584533pt;}
.wsf{word-spacing:-14.486933pt;}
.ws10{word-spacing:-13.946667pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.wsb{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.918933pt;}
.ws4{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.679680pt;}
.wsa{word-spacing:-10.400000pt;}
.ws5{word-spacing:-10.278933pt;}
.ws8{word-spacing:0.000000pt;}
.ws1{word-spacing:0.041813pt;}
._11{margin-left:-4.135040pt;}
._9{margin-left:-2.636160pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._12{width:2.011733pt;}
._3{width:2.910507pt;}
._2{width:3.946667pt;}
._4{width:5.280000pt;}
._b{width:6.627840pt;}
._a{width:7.536000pt;}
._6{width:8.451840pt;}
._5{width:9.456000pt;}
._e{width:11.091840pt;}
._17{width:12.482560pt;}
._14{width:13.601280pt;}
._d{width:14.976000pt;}
._8{width:15.888000pt;}
._7{width:16.800000pt;}
._10{width:17.911680pt;}
._f{width:18.816000pt;}
._1d{width:19.841280pt;}
._1a{width:20.843520pt;}
._26{width:21.962240pt;}
._25{width:22.963200pt;}
._18{width:24.332800pt;}
._c{width:25.344000pt;}
._27{width:26.319360pt;}
._24{width:27.261440pt;}
._23{width:28.674560pt;}
._1c{width:31.206400pt;}
._1b{width:32.325120pt;}
._22{width:33.477120pt;}
._20{width:34.518400pt;}
._21{width:35.525547pt;}
._15{width:36.682240pt;}
._16{width:37.859840pt;}
._2c{width:38.860800pt;}
._1f{width:46.181760pt;}
._1e{width:47.112960pt;}
._29{width:48.516480pt;}
._28{width:49.440000pt;}
._2b{width:56.258560pt;}
._2a{width:57.275520pt;}
._13{width:67.180800pt;}
._2f{width:87.201280pt;}
._19{width:100.800427pt;}
._2e{width:121.587200pt;}
._2d{width:323.663360pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.720000pt;}
.y2{bottom:5.760000pt;}
.y40{bottom:8.640000pt;}
.y41{bottom:10.080000pt;}
.y35{bottom:16.480000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.626667pt;}
.y34{bottom:30.240000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y33{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y32{bottom:57.960000pt;}
.y31{bottom:71.720000pt;}
.y30{bottom:85.480000pt;}
.y51{bottom:98.080000pt;}
.y2f{bottom:99.240000pt;}
.y50{bottom:110.240000pt;}
.y2e{bottom:113.160000pt;}
.y85{bottom:114.240000pt;}
.ya8{bottom:117.280000pt;}
.y4f{bottom:122.560000pt;}
.y4e{bottom:126.560000pt;}
.y2d{bottom:126.920000pt;}
.y4d{bottom:134.880000pt;}
.ya7{bottom:136.640000pt;}
.y94{bottom:138.880000pt;}
.y2c{bottom:140.680000pt;}
.y4c{bottom:147.200000pt;}
.y4b{bottom:151.200000pt;}
.y2b{bottom:154.440000pt;}
.ya6{bottom:156.000000pt;}
.y84{bottom:159.520000pt;}
.y4a{bottom:160.320000pt;}
.y93{bottom:163.520000pt;}
.y2a{bottom:168.360000pt;}
.y83{bottom:171.680000pt;}
.y92{bottom:171.840000pt;}
.ya5{bottom:175.520000pt;}
.y82{bottom:175.680000pt;}
.y9a{bottom:175.840000pt;}
.y29{bottom:182.120000pt;}
.y48{bottom:182.240000pt;}
.y81{bottom:184.000000pt;}
.y99{bottom:184.160000pt;}
.y8c{bottom:184.960000pt;}
.y49{bottom:187.546667pt;}
.y9d{bottom:188.026667pt;}
.ya4{bottom:194.906667pt;}
.y28{bottom:195.880000pt;}
.y80{bottom:196.346667pt;}
.y9c{bottom:197.146667pt;}
.y7f{bottom:200.346667pt;}
.y47{bottom:201.626667pt;}
.y7e{bottom:208.666667pt;}
.y27{bottom:209.640000pt;}
.ya3{bottom:212.666667pt;}
.y8b{bottom:214.266667pt;}
.y45{bottom:220.986667pt;}
.ya2{bottom:221.786667pt;}
.y26{bottom:223.560000pt;}
.y7d{bottom:224.986667pt;}
.y46{bottom:226.266667pt;}
.y8a{bottom:233.626667pt;}
.y7c{bottom:234.106667pt;}
.y25{bottom:237.320000pt;}
.y8e{bottom:238.906667pt;}
.y44{bottom:240.506667pt;}
.y24{bottom:251.080000pt;}
.y89{bottom:252.986667pt;}
.y43{bottom:259.866667pt;}
.y3d{bottom:261.480000pt;}
.y23{bottom:264.866667pt;}
.y7a{bottom:272.506667pt;}
.y3c{bottom:273.666667pt;}
.y42{bottom:275.386667pt;}
.y7b{bottom:277.786667pt;}
.y22{bottom:278.626667pt;}
.y3b{bottom:285.986667pt;}
.y79{bottom:291.866667pt;}
.y21{bottom:292.546667pt;}
.y3f{bottom:295.226667pt;}
.y3a{bottom:298.306667pt;}
.y20{bottom:306.306667pt;}
.y39{bottom:310.466667pt;}
.y78{bottom:311.226667pt;}
.y1f{bottom:320.066667pt;}
.y38{bottom:322.786667pt;}
.y3e{bottom:328.666667pt;}
.y77{bottom:330.586667pt;}
.y1e{bottom:333.826667pt;}
.y37{bottom:335.106667pt;}
.y14{bottom:342.426667pt;}
.y1d{bottom:347.746667pt;}
.y75{bottom:350.106667pt;}
.y76{bottom:355.386667pt;}
.y1c{bottom:361.506667pt;}
.y74{bottom:369.466667pt;}
.y91{bottom:374.746667pt;}
.y1b{bottom:375.266667pt;}
.y73{bottom:388.826667pt;}
.y1a{bottom:389.026667pt;}
.y9b{bottom:394.106667pt;}
.y19{bottom:402.946667pt;}
.y72{bottom:408.226667pt;}
.y9f{bottom:413.506667pt;}
.y18{bottom:416.706667pt;}
.y71{bottom:427.586667pt;}
.y17{bottom:430.466667pt;}
.y16{bottom:444.226667pt;}
.y70{bottom:447.106667pt;}
.y15{bottom:458.146667pt;}
.y6f{bottom:466.466667pt;}
.y98{bottom:471.746667pt;}
.y6e{bottom:485.826667pt;}
.y8d{bottom:491.106667pt;}
.y6d{bottom:505.186667pt;}
.y6c{bottom:524.706667pt;}
.y6b{bottom:544.066667pt;}
.y90{bottom:549.346667pt;}
.y6a{bottom:563.426667pt;}
.y9e{bottom:568.706667pt;}
.y69{bottom:582.786667pt;}
.y68{bottom:602.146667pt;}
.y67{bottom:621.693333pt;}
.y97{bottom:626.973333pt;}
.y66{bottom:641.053333pt;}
.y88{bottom:646.333333pt;}
.y65{bottom:660.413333pt;}
.ya1{bottom:665.693333pt;}
.y64{bottom:679.773333pt;}
.y96{bottom:685.053333pt;}
.y63{bottom:699.293333pt;}
.y61{bottom:718.653333pt;}
.y62{bottom:723.933333pt;}
.y60{bottom:738.013333pt;}
.y5f{bottom:757.373333pt;}
.y87{bottom:762.653333pt;}
.y5e{bottom:776.733333pt;}
.y8f{bottom:782.013333pt;}
.y5d{bottom:796.253333pt;}
.y5b{bottom:815.653333pt;}
.y13{bottom:817.413333pt;}
.y5c{bottom:820.933333pt;}
.y5a{bottom:835.013333pt;}
.y12{bottom:836.293333pt;}
.y11{bottom:853.893333pt;}
.y59{bottom:854.373333pt;}
.y10{bottom:871.973333pt;}
.y58{bottom:873.733333pt;}
.y86{bottom:879.013333pt;}
.yf{bottom:889.893333pt;}
.y57{bottom:893.253333pt;}
.ya0{bottom:898.533333pt;}
.ye{bottom:905.573333pt;}
.y56{bottom:912.613333pt;}
.y95{bottom:917.893333pt;}
.yd{bottom:924.933333pt;}
.y54{bottom:931.973333pt;}
.y55{bottom:937.253333pt;}
.yc{bottom:945.413333pt;}
.y53{bottom:951.333333pt;}
.yb{bottom:968.453333pt;}
.y52{bottom:970.853333pt;}
.y9{bottom:987.653333pt;}
.y1{bottom:1005.413333pt;}
.h15{height:19.569375pt;}
.h14{height:25.918750pt;}
.h12{height:27.840000pt;}
.h13{height:29.940625pt;}
.h11{height:30.254687pt;}
.h16{height:31.217812pt;}
.hf{height:33.515625pt;}
.he{height:33.867188pt;}
.h8{height:34.798125pt;}
.hb{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h10{height:39.562500pt;}
.hc{height:41.112500pt;}
.h4{height:41.543750pt;}
.h7{height:42.866250pt;}
.h6{height:43.782500pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h2{height:68.832000pt;}
.hd{height:469.346667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:64.000000pt;}
.w4{width:186.146667pt;}
.w7{width:199.226667pt;}
.w8{width:264.666667pt;}
.w9{width:348.093333pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.919976pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x14{left:26.394667pt;}
.x6{left:39.720000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x1d{left:99.711988pt;}
.x2d{left:103.391988pt;}
.xb{left:105.631988pt;}
.x13{left:110.432000pt;}
.x8{left:113.160000pt;}
.x56{left:114.911988pt;}
.x2c{left:133.786655pt;}
.x17{left:144.026655pt;}
.x3{left:152.826667pt;}
.xc{left:172.026655pt;}
.x26{left:175.706643pt;}
.x27{left:180.346655pt;}
.x40{left:183.866643pt;}
.x41{left:193.146655pt;}
.x4c{left:218.106643pt;}
.x4d{left:227.386655pt;}
.x39{left:230.426643pt;}
.x54{left:236.866643pt;}
.x3a{left:239.746655pt;}
.x28{left:240.866643pt;}
.x29{left:245.506655pt;}
.x10{left:258.466655pt;}
.x3b{left:266.946643pt;}
.x3c{left:276.226655pt;}
.x11{left:277.506655pt;}
.x1c{left:288.066655pt;}
.xd{left:309.666655pt;}
.x4b{left:329.986643pt;}
.xf{left:338.626655pt;}
.x37{left:341.826643pt;}
.x38{left:351.106655pt;}
.x46{left:360.866655pt;}
.x44{left:372.066643pt;}
.x15{left:375.106667pt;}
.x45{left:381.346655pt;}
.xe{left:397.053322pt;}
.x22{left:399.133310pt;}
.x23{left:403.773322pt;}
.x52{left:407.933310pt;}
.x53{left:417.213322pt;}
.x18{left:427.293310pt;}
.x19{left:431.933322pt;}
.x3e{left:438.973310pt;}
.xa{left:441.053322pt;}
.x3f{left:448.253322pt;}
.x42{left:455.453310pt;}
.x35{left:461.533310pt;}
.x43{left:464.733322pt;}
.x36{left:470.813322pt;}
.x55{left:479.613322pt;}
.x20{left:494.973310pt;}
.x21{left:499.613322pt;}
.x12{left:504.093333pt;}
.x1e{left:507.293310pt;}
.x1f{left:511.933322pt;}
.x5{left:533.213333pt;}
.x49{left:544.093310pt;}
.x4a{left:553.413322pt;}
.x33{left:555.493310pt;}
.x34{left:564.773322pt;}
.x50{left:578.213310pt;}
.x4e{left:580.773310pt;}
.x51{left:587.493322pt;}
.x4f{left:590.053322pt;}
.x1a{left:601.253310pt;}
.x1b{left:605.893322pt;}
.x47{left:635.653310pt;}
.x48{left:640.613310pt;}
.x31{left:644.613310pt;}
.x2e{left:649.733310pt;}
.x32{left:653.893322pt;}
.x2f{left:659.013322pt;}
.x30{left:668.613322pt;}
.x2a{left:686.853310pt;}
.x3d{left:688.773310pt;}
.x16{left:691.653322pt;}
.x24{left:693.413310pt;}
.x2b{left:696.133322pt;}
.x25{left:698.053322pt;}
}




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