
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_962550d69820d6ca95f5c5ee.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3733899601a6422e025554dc.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a37f6c2618a2acdf959ea755.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ecbcc91f381af53f0348de55.woff')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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v2{vertical-align:58.740000px;}
.ls12{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.181440px;}
.lsd{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.576000px;}
.lse{letter-spacing:0.720000px;}
.ls11{letter-spacing:9.360000px;}
.ls13{letter-spacing:123.264000px;}
.ls14{letter-spacing:123.984000px;}
.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;}
}
.ws9{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.576000px;}
.ws8{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.064000px;}
.ws0{word-spacing:-13.447440px;}
.wse{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.700000px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:131.196000px;}
.wsa{word-spacing:234.084000px;}
.wsb{word-spacing:1098.024000px;}
.wsc{word-spacing:1098.084000px;}
._9{margin-left:-4.824000px;}
._a{margin-left:-3.614842px;}
._10{margin-left:-2.469448px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._3{width:2.721158px;}
._7{width:4.636858px;}
._6{width:5.755142px;}
._b{width:7.128000px;}
._8{width:8.568000px;}
._f{width:9.777158px;}
._d{width:10.992000px;}
._e{width:12.000000px;}
._15{width:13.007711px;}
._11{width:14.256000px;}
._12{width:15.609158px;}
._13{width:16.920000px;}
._14{width:19.008000px;}
._4{width:20.088000px;}
._5{width:21.168000px;}
._16{width:22.195142px;}
._c{width:23.304000px;}
._1a{width:24.648000px;}
._24{width:26.208000px;}
._17{width:27.216000px;}
._18{width:28.512000px;}
._29{width:29.520000px;}
._1f{width:30.547142px;}
._2d{width:31.716000px;}
._20{width:33.444000px;}
._21{width:34.632000px;}
._27{width:36.489158px;}
._23{width:39.619142px;}
._22{width:40.644000px;}
._2a{width:56.448000px;}
._2b{width:57.492000px;}
._19{width:88.284000px;}
._28{width:89.664000px;}
._2c{width:111.384000px;}
._1c{width:121.656000px;}
._1e{width:128.208000px;}
._26{width:131.184000px;}
._1b{width:135.432000px;}
._2{width:146.082865px;}
._30{width:148.500000px;}
._31{width:149.616000px;}
._25{width:155.124000px;}
._2e{width:157.824000px;}
._2f{width:158.832000px;}
._1d{width:197.976000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y94{bottom:3.960000px;}
.y90{bottom:6.045000px;}
.y64{bottom:9.000000px;}
.y87{bottom:14.250000px;}
.y93{bottom:24.660000px;}
.y88{bottom:40.470000px;}
.y8f{bottom:41.610000px;}
.y8e{bottom:51.690000px;}
.y89{bottom:66.630000px;}
.y4{bottom:68.580000px;}
.y8d{bottom:81.330000px;}
.y8a{bottom:92.850000px;}
.ybe{bottom:118.296000px;}
.y8b{bottom:119.010000px;}
.yee{bottom:124.416000px;}
.ye0{bottom:128.376000px;}
.y46{bottom:128.916000px;}
.ybd{bottom:139.716000px;}
.y8c{bottom:145.185000px;}
.ydf{bottom:149.076000px;}
.y45{bottom:149.616000px;}
.y85{bottom:150.870000px;}
.y62{bottom:151.050000px;}
.y35{bottom:152.130000px;}
.ybc{bottom:160.410000px;}
.yed{bottom:166.170000px;}
.yde{bottom:169.770000px;}
.y44{bottom:170.310000px;}
.y84{bottom:171.570000px;}
.y61{bottom:171.750000px;}
.y34{bottom:172.830000px;}
.y91{bottom:173.340000px;}
.ybb{bottom:181.110000px;}
.ydd{bottom:190.470000px;}
.y43{bottom:191.010000px;}
.y83{bottom:192.270000px;}
.y60{bottom:192.450000px;}
.y33{bottom:193.530000px;}
.yba{bottom:201.810000px;}
.yec{bottom:207.750000px;}
.ydc{bottom:211.170000px;}
.y42{bottom:211.710000px;}
.y82{bottom:212.970000px;}
.y5f{bottom:213.150000px;}
.y32{bottom:214.050000px;}
.yb9{bottom:223.230000px;}
.ydb{bottom:231.870000px;}
.y41{bottom:232.410000px;}
.y81{bottom:233.670000px;}
.y5e{bottom:233.850000px;}
.y31{bottom:234.750000px;}
.yeb{bottom:249.510000px;}
.yda{bottom:252.570000px;}
.y40{bottom:253.110000px;}
.y80{bottom:254.370000px;}
.y5d{bottom:254.550000px;}
.y30{bottom:255.450000px;}
.yb8{bottom:269.310000px;}
.yd9{bottom:273.270000px;}
.y3f{bottom:273.810000px;}
.y7f{bottom:275.070000px;}
.y5c{bottom:275.250000px;}
.y2f{bottom:276.150000px;}
.yb7{bottom:290.010000px;}
.yea{bottom:291.270000px;}
.y7e{bottom:291.810000px;}
.y86{bottom:292.680000px;}
.yd8{bottom:293.970000px;}
.y3e{bottom:294.510000px;}
.y5b{bottom:295.950000px;}
.y2e{bottom:296.850000px;}
.yb6{bottom:310.710000px;}
.yd7{bottom:314.670000px;}
.y3d{bottom:315.210000px;}
.y5a{bottom:316.650000px;}
.y2d{bottom:317.550000px;}
.yb5{bottom:331.410000px;}
.ye9{bottom:332.850000px;}
.yd6{bottom:335.370000px;}
.y3c{bottom:335.910000px;}
.y59{bottom:337.215000px;}
.y2c{bottom:338.295000px;}
.yb4{bottom:352.155000px;}
.yd5{bottom:356.115000px;}
.y3b{bottom:356.655000px;}
.y58{bottom:357.915000px;}
.y2b{bottom:358.995000px;}
.yb3{bottom:372.855000px;}
.ye8{bottom:374.655000px;}
.yd4{bottom:376.815000px;}
.y3a{bottom:377.355000px;}
.y57{bottom:378.615000px;}
.y2a{bottom:379.695000px;}
.yb2{bottom:393.555000px;}
.yd3{bottom:397.515000px;}
.y39{bottom:398.055000px;}
.y56{bottom:399.315000px;}
.y29{bottom:400.395000px;}
.yb1{bottom:414.255000px;}
.ye7{bottom:416.415000px;}
.yd2{bottom:418.215000px;}
.y38{bottom:418.755000px;}
.y55{bottom:420.015000px;}
.y28{bottom:421.095000px;}
.yb0{bottom:434.955000px;}
.yd1{bottom:438.915000px;}
.y37{bottom:439.455000px;}
.y54{bottom:440.715000px;}
.y27{bottom:441.795000px;}
.yaf{bottom:455.655000px;}
.ye6{bottom:457.995000px;}
.yd0{bottom:459.615000px;}
.y36{bottom:460.155000px;}
.y53{bottom:461.415000px;}
.y26{bottom:462.495000px;}
.yae{bottom:472.395000px;}
.ycf{bottom:480.315000px;}
.y25{bottom:480.855000px;}
.y52{bottom:482.115000px;}
.yad{bottom:493.815000px;}
.y7d{bottom:498.315000px;}
.ye5{bottom:499.755000px;}
.yce{bottom:501.015000px;}
.y24{bottom:501.555000px;}
.y51{bottom:502.815000px;}
.yac{bottom:514.515000px;}
.y7c{bottom:519.015000px;}
.ycd{bottom:521.715000px;}
.y23{bottom:522.255000px;}
.y50{bottom:523.515000px;}
.yab{bottom:535.215000px;}
.y7b{bottom:539.715000px;}
.ye4{bottom:541.515000px;}
.ycc{bottom:542.415000px;}
.y22{bottom:542.955000px;}
.y4f{bottom:544.215000px;}
.yaa{bottom:555.915000px;}
.y7a{bottom:560.415000px;}
.ycb{bottom:563.115000px;}
.y21{bottom:563.655000px;}
.y4e{bottom:564.915000px;}
.ya9{bottom:577.335000px;}
.y79{bottom:581.115000px;}
.ye3{bottom:583.095000px;}
.yca{bottom:583.815000px;}
.y20{bottom:584.355000px;}
.y4d{bottom:585.615000px;}
.y78{bottom:601.815000px;}
.yc9{bottom:604.545000px;}
.y1f{bottom:605.085000px;}
.y4c{bottom:606.345000px;}
.y77{bottom:622.545000px;}
.ya8{bottom:623.625000px;}
.ye2{bottom:624.885000px;}
.yc8{bottom:625.245000px;}
.y1e{bottom:625.785000px;}
.y4b{bottom:627.045000px;}
.y76{bottom:643.245000px;}
.ya7{bottom:644.325000px;}
.yc7{bottom:645.945000px;}
.y1d{bottom:646.485000px;}
.y4a{bottom:647.745000px;}
.y75{bottom:660.705000px;}
.ya6{bottom:665.025000px;}
.yc6{bottom:666.645000px;}
.y1c{bottom:667.185000px;}
.y49{bottom:668.445000px;}
.ya5{bottom:685.725000px;}
.y74{bottom:686.445000px;}
.yc5{bottom:687.345000px;}
.y1b{bottom:687.885000px;}
.y48{bottom:689.145000px;}
.y47{bottom:705.885000px;}
.ya4{bottom:706.245000px;}
.yc4{bottom:708.045000px;}
.ye1{bottom:708.225000px;}
.y1a{bottom:708.585000px;}
.y73{bottom:712.185000px;}
.ya3{bottom:726.945000px;}
.yc3{bottom:728.745000px;}
.y19{bottom:729.285000px;}
.y72{bottom:738.645000px;}
.ya2{bottom:747.645000px;}
.yc2{bottom:749.445000px;}
.y18{bottom:749.985000px;}
.ya1{bottom:768.345000px;}
.y71{bottom:769.065000px;}
.yc1{bottom:770.145000px;}
.y17{bottom:770.685000px;}
.ya0{bottom:789.045000px;}
.y70{bottom:789.765000px;}
.yc0{bottom:790.845000px;}
.y16{bottom:791.385000px;}
.y9f{bottom:809.745000px;}
.y6f{bottom:810.465000px;}
.y15{bottom:812.085000px;}
.y9e{bottom:830.445000px;}
.y6e{bottom:831.165000px;}
.ybf{bottom:832.425000px;}
.y14{bottom:832.785000px;}
.y9d{bottom:851.145000px;}
.y6d{bottom:851.865000px;}
.y13{bottom:853.485000px;}
.y9c{bottom:871.890000px;}
.y6c{bottom:872.610000px;}
.y12{bottom:874.230000px;}
.y9b{bottom:892.590000px;}
.y6b{bottom:893.310000px;}
.y11{bottom:894.930000px;}
.y9a{bottom:909.330000px;}
.y6a{bottom:914.010000px;}
.y10{bottom:915.630000px;}
.y99{bottom:930.930000px;}
.y69{bottom:934.710000px;}
.yf{bottom:936.330000px;}
.y98{bottom:951.630000px;}
.y68{bottom:955.410000px;}
.ye{bottom:957.030000px;}
.y97{bottom:972.330000px;}
.y67{bottom:972.870000px;}
.yd{bottom:977.730000px;}
.y96{bottom:993.030000px;}
.yc{bottom:998.430000px;}
.y66{bottom:998.610000px;}
.y95{bottom:1013.730000px;}
.yb{bottom:1019.130000px;}
.y65{bottom:1024.350000px;}
.y92{bottom:1035.150000px;}
.ya{bottom:1039.830000px;}
.y63{bottom:1050.810000px;}
.y9{bottom:1060.530000px;}
.y8{bottom:1081.230000px;}
.y7{bottom:1101.930000px;}
.y6{bottom:1122.630000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.hf{height:20.700000px;}
.h9{height:25.740000px;}
.hd{height:32.760000px;}
.h2{height:40.790039px;}
.he{height:41.400000px;}
.h11{height:41.436000px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.hb{height:50.373984px;}
.h6{height:50.800781px;}
.h12{height:52.417969px;}
.h5{height:56.900391px;}
.h13{height:59.343750px;}
.h8{height:59.439023px;}
.h10{height:61.043203px;}
.h3{height:70.802565px;}
.hc{height:109.013438px;}
.ha{height:201.780000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:62.316000px;}
.wc{width:72.900000px;}
.wf{width:89.640000px;}
.wd{width:94.176000px;}
.w7{width:106.596000px;}
.w8{width:109.800000px;}
.wb{width:126.216000px;}
.w3{width:139.860000px;}
.wa{width:145.800000px;}
.w6{width:164.730000px;}
.w4{width:271.335000px;}
.w5{width:274.530000px;}
.w10{width:663.945000px;}
.w9{width:702.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:4.500000px;}
.x11{left:8.100000px;}
.x19{left:26.496000px;}
.x1a{left:47.190000px;}
.x17{left:82.875000px;}
.x1{left:108.035987px;}
.x3{left:117.395987px;}
.x2{left:142.775987px;}
.x27{left:148.535987px;}
.x26{left:153.569987px;}
.x24{left:158.609987px;}
.x28{left:162.029987px;}
.x1b{left:166.245000px;}
.x7{left:202.169987px;}
.x25{left:203.969987px;}
.x18{left:235.620000px;}
.x8{left:242.129987px;}
.x12{left:247.890000px;}
.x1e{left:253.830000px;}
.x9{left:257.969987px;}
.xc{left:268.589987px;}
.xe{left:280.514987px;}
.x4{left:285.014987px;}
.xd{left:288.074987px;}
.x1c{left:302.790000px;}
.x10{left:324.074987px;}
.x6{left:364.214987px;}
.x1f{left:380.055000px;}
.xb{left:389.774987px;}
.x14{left:412.635000px;}
.xa{left:439.454987px;}
.x5{left:446.474987px;}
.x20{left:452.955000px;}
.xf{left:459.074987px;}
.x13{left:519.225000px;}
.x21{left:547.125000px;}
.x22{left:620.025000px;}
.x23{left:682.350000px;}
.x15{left:683.970000px;}
.x16{left:810.149987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v2{vertical-align:52.213333pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.161280pt;}
.lsd{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.640000pt;}
.ls11{letter-spacing:8.320000pt;}
.ls13{letter-spacing:109.568000pt;}
.ls14{letter-spacing:110.208000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.512000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.168000pt;}
.ws0{word-spacing:-11.953280pt;}
.wse{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:116.618667pt;}
.wsa{word-spacing:208.074667pt;}
.wsb{word-spacing:976.021333pt;}
.wsc{word-spacing:976.074667pt;}
._9{margin-left:-4.288000pt;}
._a{margin-left:-3.213192pt;}
._10{margin-left:-2.195065pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._3{width:2.418808pt;}
._7{width:4.121651pt;}
._6{width:5.115682pt;}
._b{width:6.336000pt;}
._8{width:7.616000pt;}
._f{width:8.690808pt;}
._d{width:9.770667pt;}
._e{width:10.666667pt;}
._15{width:11.562410pt;}
._11{width:12.672000pt;}
._12{width:13.874808pt;}
._13{width:15.040000pt;}
._14{width:16.896000pt;}
._4{width:17.856000pt;}
._5{width:18.816000pt;}
._16{width:19.729015pt;}
._c{width:20.714667pt;}
._1a{width:21.909333pt;}
._24{width:23.296000pt;}
._17{width:24.192000pt;}
._18{width:25.344000pt;}
._29{width:26.240000pt;}
._1f{width:27.153015pt;}
._2d{width:28.192000pt;}
._20{width:29.728000pt;}
._21{width:30.784000pt;}
._27{width:32.434808pt;}
._23{width:35.217015pt;}
._22{width:36.128000pt;}
._2a{width:50.176000pt;}
._2b{width:51.104000pt;}
._19{width:78.474667pt;}
._28{width:79.701333pt;}
._2c{width:99.008000pt;}
._1c{width:108.138667pt;}
._1e{width:113.962667pt;}
._26{width:116.608000pt;}
._1b{width:120.384000pt;}
._2{width:129.851436pt;}
._30{width:132.000000pt;}
._31{width:132.992000pt;}
._25{width:137.888000pt;}
._2e{width:140.288000pt;}
._2f{width:141.184000pt;}
._1d{width:175.978667pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:3.520000pt;}
.y90{bottom:5.373333pt;}
.y64{bottom:8.000000pt;}
.y87{bottom:12.666667pt;}
.y93{bottom:21.920000pt;}
.y88{bottom:35.973333pt;}
.y8f{bottom:36.986667pt;}
.y8e{bottom:45.946667pt;}
.y89{bottom:59.226667pt;}
.y4{bottom:60.960000pt;}
.y8d{bottom:72.293333pt;}
.y8a{bottom:82.533333pt;}
.ybe{bottom:105.152000pt;}
.y8b{bottom:105.786667pt;}
.yee{bottom:110.592000pt;}
.ye0{bottom:114.112000pt;}
.y46{bottom:114.592000pt;}
.ybd{bottom:124.192000pt;}
.y8c{bottom:129.053333pt;}
.ydf{bottom:132.512000pt;}
.y45{bottom:132.992000pt;}
.y85{bottom:134.106667pt;}
.y62{bottom:134.266667pt;}
.y35{bottom:135.226667pt;}
.ybc{bottom:142.586667pt;}
.yed{bottom:147.706667pt;}
.yde{bottom:150.906667pt;}
.y44{bottom:151.386667pt;}
.y84{bottom:152.506667pt;}
.y61{bottom:152.666667pt;}
.y34{bottom:153.626667pt;}
.y91{bottom:154.080000pt;}
.ybb{bottom:160.986667pt;}
.ydd{bottom:169.306667pt;}
.y43{bottom:169.786667pt;}
.y83{bottom:170.906667pt;}
.y60{bottom:171.066667pt;}
.y33{bottom:172.026667pt;}
.yba{bottom:179.386667pt;}
.yec{bottom:184.666667pt;}
.ydc{bottom:187.706667pt;}
.y42{bottom:188.186667pt;}
.y82{bottom:189.306667pt;}
.y5f{bottom:189.466667pt;}
.y32{bottom:190.266667pt;}
.yb9{bottom:198.426667pt;}
.ydb{bottom:206.106667pt;}
.y41{bottom:206.586667pt;}
.y81{bottom:207.706667pt;}
.y5e{bottom:207.866667pt;}
.y31{bottom:208.666667pt;}
.yeb{bottom:221.786667pt;}
.yda{bottom:224.506667pt;}
.y40{bottom:224.986667pt;}
.y80{bottom:226.106667pt;}
.y5d{bottom:226.266667pt;}
.y30{bottom:227.066667pt;}
.yb8{bottom:239.386667pt;}
.yd9{bottom:242.906667pt;}
.y3f{bottom:243.386667pt;}
.y7f{bottom:244.506667pt;}
.y5c{bottom:244.666667pt;}
.y2f{bottom:245.466667pt;}
.yb7{bottom:257.786667pt;}
.yea{bottom:258.906667pt;}
.y7e{bottom:259.386667pt;}
.y86{bottom:260.160000pt;}
.yd8{bottom:261.306667pt;}
.y3e{bottom:261.786667pt;}
.y5b{bottom:263.066667pt;}
.y2e{bottom:263.866667pt;}
.yb6{bottom:276.186667pt;}
.yd7{bottom:279.706667pt;}
.y3d{bottom:280.186667pt;}
.y5a{bottom:281.466667pt;}
.y2d{bottom:282.266667pt;}
.yb5{bottom:294.586667pt;}
.ye9{bottom:295.866667pt;}
.yd6{bottom:298.106667pt;}
.y3c{bottom:298.586667pt;}
.y59{bottom:299.746667pt;}
.y2c{bottom:300.706667pt;}
.yb4{bottom:313.026667pt;}
.yd5{bottom:316.546667pt;}
.y3b{bottom:317.026667pt;}
.y58{bottom:318.146667pt;}
.y2b{bottom:319.106667pt;}
.yb3{bottom:331.426667pt;}
.ye8{bottom:333.026667pt;}
.yd4{bottom:334.946667pt;}
.y3a{bottom:335.426667pt;}
.y57{bottom:336.546667pt;}
.y2a{bottom:337.506667pt;}
.yb2{bottom:349.826667pt;}
.yd3{bottom:353.346667pt;}
.y39{bottom:353.826667pt;}
.y56{bottom:354.946667pt;}
.y29{bottom:355.906667pt;}
.yb1{bottom:368.226667pt;}
.ye7{bottom:370.146667pt;}
.yd2{bottom:371.746667pt;}
.y38{bottom:372.226667pt;}
.y55{bottom:373.346667pt;}
.y28{bottom:374.306667pt;}
.yb0{bottom:386.626667pt;}
.yd1{bottom:390.146667pt;}
.y37{bottom:390.626667pt;}
.y54{bottom:391.746667pt;}
.y27{bottom:392.706667pt;}
.yaf{bottom:405.026667pt;}
.ye6{bottom:407.106667pt;}
.yd0{bottom:408.546667pt;}
.y36{bottom:409.026667pt;}
.y53{bottom:410.146667pt;}
.y26{bottom:411.106667pt;}
.yae{bottom:419.906667pt;}
.ycf{bottom:426.946667pt;}
.y25{bottom:427.426667pt;}
.y52{bottom:428.546667pt;}
.yad{bottom:438.946667pt;}
.y7d{bottom:442.946667pt;}
.ye5{bottom:444.226667pt;}
.yce{bottom:445.346667pt;}
.y24{bottom:445.826667pt;}
.y51{bottom:446.946667pt;}
.yac{bottom:457.346667pt;}
.y7c{bottom:461.346667pt;}
.ycd{bottom:463.746667pt;}
.y23{bottom:464.226667pt;}
.y50{bottom:465.346667pt;}
.yab{bottom:475.746667pt;}
.y7b{bottom:479.746667pt;}
.ye4{bottom:481.346667pt;}
.ycc{bottom:482.146667pt;}
.y22{bottom:482.626667pt;}
.y4f{bottom:483.746667pt;}
.yaa{bottom:494.146667pt;}
.y7a{bottom:498.146667pt;}
.ycb{bottom:500.546667pt;}
.y21{bottom:501.026667pt;}
.y4e{bottom:502.146667pt;}
.ya9{bottom:513.186667pt;}
.y79{bottom:516.546667pt;}
.ye3{bottom:518.306667pt;}
.yca{bottom:518.946667pt;}
.y20{bottom:519.426667pt;}
.y4d{bottom:520.546667pt;}
.y78{bottom:534.946667pt;}
.yc9{bottom:537.373333pt;}
.y1f{bottom:537.853333pt;}
.y4c{bottom:538.973333pt;}
.y77{bottom:553.373333pt;}
.ya8{bottom:554.333333pt;}
.ye2{bottom:555.453333pt;}
.yc8{bottom:555.773333pt;}
.y1e{bottom:556.253333pt;}
.y4b{bottom:557.373333pt;}
.y76{bottom:571.773333pt;}
.ya7{bottom:572.733333pt;}
.yc7{bottom:574.173333pt;}
.y1d{bottom:574.653333pt;}
.y4a{bottom:575.773333pt;}
.y75{bottom:587.293333pt;}
.ya6{bottom:591.133333pt;}
.yc6{bottom:592.573333pt;}
.y1c{bottom:593.053333pt;}
.y49{bottom:594.173333pt;}
.ya5{bottom:609.533333pt;}
.y74{bottom:610.173333pt;}
.yc5{bottom:610.973333pt;}
.y1b{bottom:611.453333pt;}
.y48{bottom:612.573333pt;}
.y47{bottom:627.453333pt;}
.ya4{bottom:627.773333pt;}
.yc4{bottom:629.373333pt;}
.ye1{bottom:629.533333pt;}
.y1a{bottom:629.853333pt;}
.y73{bottom:633.053333pt;}
.ya3{bottom:646.173333pt;}
.yc3{bottom:647.773333pt;}
.y19{bottom:648.253333pt;}
.y72{bottom:656.573333pt;}
.ya2{bottom:664.573333pt;}
.yc2{bottom:666.173333pt;}
.y18{bottom:666.653333pt;}
.ya1{bottom:682.973333pt;}
.y71{bottom:683.613333pt;}
.yc1{bottom:684.573333pt;}
.y17{bottom:685.053333pt;}
.ya0{bottom:701.373333pt;}
.y70{bottom:702.013333pt;}
.yc0{bottom:702.973333pt;}
.y16{bottom:703.453333pt;}
.y9f{bottom:719.773333pt;}
.y6f{bottom:720.413333pt;}
.y15{bottom:721.853333pt;}
.y9e{bottom:738.173333pt;}
.y6e{bottom:738.813333pt;}
.ybf{bottom:739.933333pt;}
.y14{bottom:740.253333pt;}
.y9d{bottom:756.573333pt;}
.y6d{bottom:757.213333pt;}
.y13{bottom:758.653333pt;}
.y9c{bottom:775.013333pt;}
.y6c{bottom:775.653333pt;}
.y12{bottom:777.093333pt;}
.y9b{bottom:793.413333pt;}
.y6b{bottom:794.053333pt;}
.y11{bottom:795.493333pt;}
.y9a{bottom:808.293333pt;}
.y6a{bottom:812.453333pt;}
.y10{bottom:813.893333pt;}
.y99{bottom:827.493333pt;}
.y69{bottom:830.853333pt;}
.yf{bottom:832.293333pt;}
.y98{bottom:845.893333pt;}
.y68{bottom:849.253333pt;}
.ye{bottom:850.693333pt;}
.y97{bottom:864.293333pt;}
.y67{bottom:864.773333pt;}
.yd{bottom:869.093333pt;}
.y96{bottom:882.693333pt;}
.yc{bottom:887.493333pt;}
.y66{bottom:887.653333pt;}
.y95{bottom:901.093333pt;}
.yb{bottom:905.893333pt;}
.y65{bottom:910.533333pt;}
.y92{bottom:920.133333pt;}
.ya{bottom:924.293333pt;}
.y63{bottom:934.053333pt;}
.y9{bottom:942.693333pt;}
.y8{bottom:961.093333pt;}
.y7{bottom:979.493333pt;}
.y6{bottom:997.893333pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.hf{height:18.400000pt;}
.h9{height:22.880000pt;}
.hd{height:29.120000pt;}
.h2{height:36.257812pt;}
.he{height:36.800000pt;}
.h11{height:36.832000pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.hb{height:44.776875pt;}
.h6{height:45.156250pt;}
.h12{height:46.593750pt;}
.h5{height:50.578125pt;}
.h13{height:52.750000pt;}
.h8{height:52.834688pt;}
.h10{height:54.260625pt;}
.h3{height:62.935614pt;}
.hc{height:96.900833pt;}
.ha{height:179.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:55.392000pt;}
.wc{width:64.800000pt;}
.wf{width:79.680000pt;}
.wd{width:83.712000pt;}
.w7{width:94.752000pt;}
.w8{width:97.600000pt;}
.wb{width:112.192000pt;}
.w3{width:124.320000pt;}
.wa{width:129.600000pt;}
.w6{width:146.426667pt;}
.w4{width:241.186667pt;}
.w5{width:244.026667pt;}
.w10{width:590.173333pt;}
.w9{width:624.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:4.000000pt;}
.x11{left:7.200000pt;}
.x19{left:23.552000pt;}
.x1a{left:41.946667pt;}
.x17{left:73.666667pt;}
.x1{left:96.031988pt;}
.x3{left:104.351988pt;}
.x2{left:126.911988pt;}
.x27{left:132.031988pt;}
.x26{left:136.506655pt;}
.x24{left:140.986655pt;}
.x28{left:144.026655pt;}
.x1b{left:147.773333pt;}
.x7{left:179.706655pt;}
.x25{left:181.306655pt;}
.x18{left:209.440000pt;}
.x8{left:215.226655pt;}
.x12{left:220.346667pt;}
.x1e{left:225.626667pt;}
.x9{left:229.306655pt;}
.xc{left:238.746655pt;}
.xe{left:249.346655pt;}
.x4{left:253.346655pt;}
.xd{left:256.066655pt;}
.x1c{left:269.146667pt;}
.x10{left:288.066655pt;}
.x6{left:323.746655pt;}
.x1f{left:337.826667pt;}
.xb{left:346.466655pt;}
.x14{left:366.786667pt;}
.xa{left:390.626655pt;}
.x5{left:396.866655pt;}
.x20{left:402.626667pt;}
.xf{left:408.066655pt;}
.x13{left:461.533333pt;}
.x21{left:486.333333pt;}
.x22{left:551.133333pt;}
.x23{left:606.533333pt;}
.x15{left:607.973333pt;}
.x16{left:720.133322pt;}
}




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