
    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_508ccbdcb88aa5eadb6bd232.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_42a020307ba06815d788e850.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_c7cc454854aca2abbed7cc06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_0c1b48e3d6ee4ff20bf17889.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_6d7f259ba5f35ae1a3a96e07.woff')format("woff");}.ff5{font-family:ff5;line-height:0.429000;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_687878b2e8ce320b8524cb27.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:35.881962px;}
.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;}
}
.ws5{word-spacing:-16.737168px;}
.ws20{word-spacing:-15.063552px;}
.ws40{word-spacing:-2.869229px;}
.ws5f{word-spacing:-2.689902px;}
.ws5d{word-spacing:-2.391024px;}
.ws3f{word-spacing:-2.331248px;}
.ws91{word-spacing:-2.032370px;}
.ws26{word-spacing:-1.853044px;}
.ws9d{word-spacing:-1.578080px;}
.ws72{word-spacing:-1.255288px;}
.ws27{word-spacing:-1.135736px;}
.ws24{word-spacing:-0.777083px;}
.ws1e{word-spacing:-0.699379px;}
.ws94{word-spacing:-0.418429px;}
.ws92{word-spacing:-0.059776px;}
.ws48{word-spacing:0.000000px;}
.ws9e{word-spacing:0.143462px;}
.ws77{word-spacing:0.239102px;}
.ws2d{word-spacing:0.418429px;}
.ws57{word-spacing:0.597756px;}
.ws9c{word-spacing:0.717309px;}
.ws70{word-spacing:1.135736px;}
.wsa{word-spacing:1.183565px;}
.ws5b{word-spacing:1.374839px;}
.ws16{word-spacing:1.506355px;}
.wsb{word-spacing:1.560154px;}
.ws85{word-spacing:1.673717px;}
.ws50{word-spacing:1.853044px;}
.ws14{word-spacing:1.936742px;}
.ws3e{word-spacing:2.092146px;}
.ws74{word-spacing:2.151922px;}
.ws5a{word-spacing:2.331248px;}
.ws17{word-spacing:2.367130px;}
.ws8a{word-spacing:2.391024px;}
.ws68{word-spacing:2.450800px;}
.wse{word-spacing:2.474726px;}
.ws82{word-spacing:2.869229px;}
.ws4a{word-spacing:3.048556px;}
.ws54{word-spacing:3.287658px;}
.ws9{word-spacing:3.389299px;}
.ws1c{word-spacing:3.443098px;}
.ws33{word-spacing:3.586536px;}
.ws87{word-spacing:3.646312px;}
.ws2c{word-spacing:3.765863px;}
.ws11{word-spacing:3.873485px;}
.ws36{word-spacing:3.885414px;}
.ws4d{word-spacing:4.004965px;}
.ws38{word-spacing:4.244068px;}
.ws97{word-spacing:4.495136px;}
.ws90{word-spacing:4.542946px;}
.ws9a{word-spacing:4.542957px;}
.ws4f{word-spacing:4.602721px;}
.ws95{word-spacing:4.877701px;}
.ws47{word-spacing:4.901599px;}
.ws59{word-spacing:5.021150px;}
.ws8e{word-spacing:5.260253px;}
.ws3d{word-spacing:5.379804px;}
.ws93{word-spacing:5.559131px;}
.ws3{word-spacing:5.618906px;}
.ws4{word-spacing:5.678682px;}
.ws65{word-spacing:5.738458px;}
.ws8{word-spacing:5.864026px;}
.ws51{word-spacing:5.917784px;}
.ws12{word-spacing:6.025421px;}
.ws8b{word-spacing:6.156887px;}
.ws2{word-spacing:6.180820px;}
.wsf{word-spacing:6.294413px;}
.ws1a{word-spacing:6.402010px;}
.ws7a{word-spacing:6.635092px;}
.ws13{word-spacing:6.778598px;}
.ws88{word-spacing:6.993745px;}
.ws78{word-spacing:7.053521px;}
.ws46{word-spacing:7.113296px;}
.ws75{word-spacing:7.531726px;}
.ws99{word-spacing:7.603475px;}
.ws30{word-spacing:7.651277px;}
.ws41{word-spacing:7.950155px;}
.ws7b{word-spacing:8.009930px;}
.ws1d{word-spacing:8.123558px;}
.ws6e{word-spacing:8.129482px;}
.ws69{word-spacing:8.189257px;}
.ws15{word-spacing:8.392550px;}
.ws45{word-spacing:8.846789px;}
.ws7{word-spacing:8.984333px;}
.ws73{word-spacing:9.145667px;}
.ws3b{word-spacing:9.504320px;}
.ws9b{word-spacing:9.516299px;}
.ws43{word-spacing:9.683647px;}
.ws28{word-spacing:9.743423px;}
.ws96{word-spacing:9.803223px;}
.ws58{word-spacing:9.862974px;}
.ws32{word-spacing:9.922750px;}
.ws37{word-spacing:10.102076px;}
.ws23{word-spacing:10.161852px;}
.ws10{word-spacing:10.167898px;}
.ws79{word-spacing:10.281403px;}
.ws8f{word-spacing:10.341179px;}
.ws84{word-spacing:10.460730px;}
.ws5e{word-spacing:10.640057px;}
.ws3a{word-spacing:11.237813px;}
.wsc{word-spacing:11.405261px;}
.ws31{word-spacing:11.417140px;}
.ws4c{word-spacing:11.536691px;}
.ws18{word-spacing:11.674253px;}
.ws83{word-spacing:11.895344px;}
.ws81{word-spacing:11.955120px;}
.ws86{word-spacing:12.014896px;}
.ws76{word-spacing:12.194222px;}
.ws98{word-spacing:12.624638px;}
.ws19{word-spacing:12.857818px;}
.ws21{word-spacing:13.090856px;}
.ws7d{word-spacing:13.210408px;}
.ws2f{word-spacing:13.449510px;}
.ws0{word-spacing:13.485409px;}
.ws1{word-spacing:13.628871px;}
.ws52{word-spacing:13.927715px;}
.ws1b{word-spacing:14.202778px;}
.ws6d{word-spacing:14.465695px;}
.ws8d{word-spacing:14.704798px;}
.ws6{word-spacing:15.009754px;}
.ws35{word-spacing:15.183002px;}
.wsd{word-spacing:15.278746px;}
.ws62{word-spacing:15.302554px;}
.ws5c{word-spacing:15.422105px;}
.ws25{word-spacing:15.541656px;}
.ws6c{word-spacing:15.601432px;}
.ws39{word-spacing:15.840534px;}
.ws2a{word-spacing:16.617617px;}
.ws6b{word-spacing:17.036046px;}
.ws22{word-spacing:17.574026px;}
.ws4e{word-spacing:17.753353px;}
.ws4b{word-spacing:17.813129px;}
.ws3c{word-spacing:17.932680px;}
.ws67{word-spacing:18.171782px;}
.ws8c{word-spacing:18.410885px;}
.ws64{word-spacing:18.530436px;}
.ws89{word-spacing:19.068416px;}
.ws2b{word-spacing:19.187968px;}
.ws42{word-spacing:19.606397px;}
.ws49{word-spacing:19.666172px;}
.ws55{word-spacing:20.204153px;}
.ws6f{word-spacing:20.562806px;}
.ws7c{word-spacing:20.981236px;}
.ws7f{word-spacing:21.041011px;}
.ws44{word-spacing:21.399665px;}
.ws56{word-spacing:21.937645px;}
.ws1f{word-spacing:22.218739px;}
.ws29{word-spacing:22.296299px;}
.ws53{word-spacing:22.535401px;}
.ws34{word-spacing:23.312484px;}
.ws66{word-spacing:24.986201px;}
.ws2e{word-spacing:25.344854px;}
.ws60{word-spacing:26.301264px;}
.ws63{word-spacing:27.138122px;}
.ws7e{word-spacing:27.317449px;}
.ws6a{word-spacing:29.349820px;}
.ws71{word-spacing:30.007351px;}
.ws61{word-spacing:30.784434px;}
.ws80{word-spacing:39.153018px;}
._0{margin-left:-11.046559px;}
._5{margin-left:-4.955456px;}
._1{margin-left:-3.730007px;}
._3{margin-left:-1.709588px;}
._4{width:1.560154px;}
._2{width:3.730007px;}
._6{width:30.001363px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y30{bottom:113.199000px;}
.y2f{bottom:131.131500px;}
.y2e{bottom:149.064000px;}
.y2d{bottom:166.996500px;}
.y2c{bottom:184.929000px;}
.y4a{bottom:184.930500px;}
.y2b{bottom:202.863000px;}
.y2a{bottom:220.795500px;}
.ya2{bottom:225.555000px;}
.y29{bottom:238.728000px;}
.y77{bottom:245.116500px;}
.ya1{bottom:248.428500px;}
.y28{bottom:256.660500px;}
.y27{bottom:274.593000px;}
.ya0{bottom:276.634500px;}
.y76{bottom:277.278000px;}
.y49{bottom:281.967000px;}
.y9f{bottom:294.567000px;}
.y75{bottom:295.210500px;}
.y26{bottom:307.401000px;}
.y48{bottom:309.318000px;}
.yce{bottom:312.484500px;}
.y9e{bottom:312.499500px;}
.y74{bottom:313.143000px;}
.ycd{bottom:325.933500px;}
.y9d{bottom:330.432000px;}
.y73{bottom:331.075500px;}
.ycc{bottom:339.382500px;}
.y47{bottom:343.869000px;}
.y9c{bottom:348.366000px;}
.y72{bottom:349.008000px;}
.ycb{bottom:352.833000px;}
.y25{bottom:353.563500px;}
.y46{bottom:361.801500px;}
.yca{bottom:366.282000px;}
.y9b{bottom:366.298500px;}
.y71{bottom:366.940500px;}
.y24{bottom:368.506500px;}
.yc9{bottom:379.731000px;}
.y45{bottom:379.735500px;}
.y23{bottom:383.451000px;}
.y70{bottom:385.411500px;}
.y9a{bottom:388.920000px;}
.yc8{bottom:393.181500px;}
.y44{bottom:397.668000px;}
.y22{bottom:398.395500px;}
.y6f{bottom:403.344000px;}
.yc7{bottom:406.630500px;}
.y21{bottom:415.066500px;}
.y43{bottom:415.600500px;}
.y99{bottom:417.124500px;}
.yc6{bottom:420.081000px;}
.y6e{bottom:421.276500px;}
.y20{bottom:430.011000px;}
.yc5{bottom:433.530000px;}
.y42{bottom:433.533000px;}
.y98{bottom:435.058500px;}
.y6d{bottom:439.209000px;}
.y1f{bottom:444.954000px;}
.yc4{bottom:446.979000px;}
.y41{bottom:451.465500px;}
.y97{bottom:452.991000px;}
.y6c{bottom:457.141500px;}
.y1e{bottom:459.898500px;}
.yc3{bottom:460.429500px;}
.y40{bottom:470.217000px;}
.y96{bottom:470.923500px;}
.yc2{bottom:473.878500px;}
.y1d{bottom:474.843000px;}
.y6b{bottom:475.075500px;}
.yc1{bottom:487.329000px;}
.y3f{bottom:488.149500px;}
.y95{bottom:488.856000px;}
.y1c{bottom:489.786000px;}
.y6a{bottom:493.008000px;}
.yc0{bottom:500.778000px;}
.y1b{bottom:504.730500px;}
.y3e{bottom:506.082000px;}
.y94{bottom:506.788500px;}
.y69{bottom:511.477500px;}
.y1a{bottom:519.675000px;}
.ybf{bottom:522.771000px;}
.y3d{bottom:524.014500px;}
.y93{bottom:524.793000px;}
.y68{bottom:529.410000px;}
.y19{bottom:534.618000px;}
.y3c{bottom:541.948500px;}
.y92{bottom:542.725500px;}
.y67{bottom:547.342500px;}
.y18{bottom:549.562500px;}
.ybe{bottom:550.365000px;}
.y3b{bottom:559.881000px;}
.y91{bottom:560.659500px;}
.y17{bottom:564.505500px;}
.y66{bottom:565.276500px;}
.ybd{bottom:568.297500px;}
.y3a{bottom:577.813500px;}
.y90{bottom:578.592000px;}
.y16{bottom:579.450000px;}
.y65{bottom:583.209000px;}
.ybc{bottom:586.230000px;}
.y15{bottom:594.394500px;}
.y39{bottom:595.746000px;}
.y64{bottom:601.141500px;}
.y8f{bottom:601.285500px;}
.ybb{bottom:608.671500px;}
.y14{bottom:609.337500px;}
.y38{bottom:614.497500px;}
.y63{bottom:619.074000px;}
.y13{bottom:624.282000px;}
.y8e{bottom:629.490000px;}
.y37{bottom:632.430000px;}
.yba{bottom:636.265500px;}
.y62{bottom:637.006500px;}
.y12{bottom:639.226500px;}
.y8d{bottom:647.424000px;}
.y36{bottom:650.362500px;}
.y11{bottom:654.169500px;}
.yb9{bottom:654.198000px;}
.y61{bottom:654.939000px;}
.y8c{bottom:665.356500px;}
.y35{bottom:668.295000px;}
.y10{bottom:669.114000px;}
.yb8{bottom:672.130500px;}
.y60{bottom:679.261500px;}
.y8b{bottom:683.289000px;}
.yf{bottom:684.058500px;}
.y34{bottom:686.229000px;}
.yb7{bottom:690.064500px;}
.ye{bottom:699.001500px;}
.y8a{bottom:701.221500px;}
.y33{bottom:704.161500px;}
.y5f{bottom:704.926500px;}
.yb6{bottom:707.997000px;}
.yd{bottom:713.946000px;}
.y89{bottom:719.154000px;}
.y32{bottom:722.094000px;}
.yb5{bottom:725.929500px;}
.yc{bottom:728.889000px;}
.y5e{bottom:737.086500px;}
.y31{bottom:740.845500px;}
.yb{bottom:743.833500px;}
.yb4{bottom:743.862000px;}
.y5d{bottom:755.019000px;}
.ya{bottom:758.778000px;}
.y88{bottom:759.708000px;}
.yb3{bottom:761.794500px;}
.y5c{bottom:772.951500px;}
.yb2{bottom:779.727000px;}
.y87{bottom:787.914000px;}
.y5b{bottom:790.885500px;}
.yb1{bottom:797.661000px;}
.y86{bottom:805.846500px;}
.y5a{bottom:809.355000px;}
.yb0{bottom:815.593500px;}
.y85{bottom:823.779000px;}
.y59{bottom:827.287500px;}
.y9{bottom:836.455500px;}
.yaf{bottom:838.035000px;}
.y84{bottom:841.711500px;}
.y58{bottom:845.220000px;}
.y8{bottom:854.169000px;}
.y83{bottom:859.645500px;}
.y57{bottom:863.152500px;}
.yae{bottom:865.629000px;}
.y7{bottom:871.881000px;}
.y82{bottom:877.578000px;}
.y56{bottom:881.086500px;}
.yad{bottom:883.561500px;}
.y6{bottom:889.593000px;}
.y81{bottom:895.510500px;}
.y55{bottom:899.556000px;}
.yac{bottom:901.494000px;}
.y5{bottom:907.518000px;}
.y54{bottom:917.488500px;}
.y80{bottom:918.132000px;}
.yab{bottom:919.426500px;}
.y53{bottom:935.421000px;}
.yaa{bottom:937.359000px;}
.y7f{bottom:941.004000px;}
.y52{bottom:953.353500px;}
.y4{bottom:954.591000px;}
.ya9{bottom:959.800500px;}
.y7e{bottom:969.210000px;}
.y51{bottom:971.287500px;}
.y7d{bottom:987.142500px;}
.ya8{bottom:987.394500px;}
.y50{bottom:989.220000px;}
.y3{bottom:996.435000px;}
.y7c{bottom:1005.076500px;}
.ya7{bottom:1005.327000px;}
.y4f{bottom:1013.541000px;}
.y7b{bottom:1023.009000px;}
.ya6{bottom:1023.261000px;}
.y2{bottom:1038.277500px;}
.y7a{bottom:1040.941500px;}
.ya5{bottom:1041.193500px;}
.y4e{bottom:1045.701000px;}
.y79{bottom:1058.874000px;}
.ya4{bottom:1059.126000px;}
.y4d{bottom:1063.635000px;}
.y78{bottom:1076.806500px;}
.ya3{bottom:1077.058500px;}
.y1{bottom:1080.120000px;}
.y4c{bottom:1081.567500px;}
.y4b{bottom:1099.500000px;}
.h5{height:35.865450px;}
.h4{height:40.348800px;}
.h3{height:44.831700px;}
.h2{height:46.947928px;}
.h1{height:101.427493px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:73.446000px;}
.x2{left:78.054000px;}
.x1f{left:79.794000px;}
.x13{left:88.390500px;}
.x3{left:92.185500px;}
.x1{left:94.570500px;}
.x20{left:100.668000px;}
.x8{left:119.050500px;}
.x6{left:123.646500px;}
.x5{left:148.788000px;}
.x7{left:152.391000px;}
.x19{left:166.942500px;}
.x1d{left:206.739000px;}
.x15{left:212.305500px;}
.x1e{left:227.338500px;}
.x4{left:291.060000px;}
.xb{left:367.012500px;}
.x9{left:370.341000px;}
.xd{left:387.306000px;}
.xa{left:392.275500px;}
.xc{left:395.757000px;}
.x16{left:467.967000px;}
.x17{left:482.910000px;}
.x1b{left:498.000000px;}
.x18{left:566.005500px;}
.x1a{left:579.097500px;}
.x1c{left:604.741500px;}
.x10{left:605.784000px;}
.x12{left:624.208500px;}
.xf{left:631.045500px;}
.x11{left:634.528500px;}
.xe{left:675.201000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:31.895077pt;}
.ws5{word-spacing:-14.877483pt;}
.ws20{word-spacing:-13.389824pt;}
.ws40{word-spacing:-2.550426pt;}
.ws5f{word-spacing:-2.391024pt;}
.ws5d{word-spacing:-2.125355pt;}
.ws3f{word-spacing:-2.072221pt;}
.ws91{word-spacing:-1.806551pt;}
.ws26{word-spacing:-1.647150pt;}
.ws9d{word-spacing:-1.402738pt;}
.ws72{word-spacing:-1.115811pt;}
.ws27{word-spacing:-1.009543pt;}
.ws24{word-spacing:-0.690740pt;}
.ws1e{word-spacing:-0.621670pt;}
.ws94{word-spacing:-0.371937pt;}
.ws92{word-spacing:-0.053134pt;}
.ws48{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.127522pt;}
.ws77{word-spacing:0.212535pt;}
.ws2d{word-spacing:0.371937pt;}
.ws57{word-spacing:0.531339pt;}
.ws9c{word-spacing:0.637608pt;}
.ws70{word-spacing:1.009543pt;}
.wsa{word-spacing:1.052058pt;}
.ws5b{word-spacing:1.222079pt;}
.ws16{word-spacing:1.338982pt;}
.wsb{word-spacing:1.386803pt;}
.ws85{word-spacing:1.487748pt;}
.ws50{word-spacing:1.647150pt;}
.ws14{word-spacing:1.721549pt;}
.ws3e{word-spacing:1.859685pt;}
.ws74{word-spacing:1.912819pt;}
.ws5a{word-spacing:2.072221pt;}
.ws17{word-spacing:2.104115pt;}
.ws8a{word-spacing:2.125355pt;}
.ws68{word-spacing:2.178489pt;}
.wse{word-spacing:2.199757pt;}
.ws82{word-spacing:2.550426pt;}
.ws4a{word-spacing:2.709827pt;}
.ws54{word-spacing:2.922363pt;}
.ws9{word-spacing:3.012710pt;}
.ws1c{word-spacing:3.060531pt;}
.ws33{word-spacing:3.188032pt;}
.ws87{word-spacing:3.241166pt;}
.ws2c{word-spacing:3.347434pt;}
.ws11{word-spacing:3.443098pt;}
.ws36{word-spacing:3.453701pt;}
.ws4d{word-spacing:3.559969pt;}
.ws38{word-spacing:3.772505pt;}
.ws97{word-spacing:3.995677pt;}
.ws90{word-spacing:4.038174pt;}
.ws9a{word-spacing:4.038184pt;}
.ws4f{word-spacing:4.091308pt;}
.ws95{word-spacing:4.335734pt;}
.ws47{word-spacing:4.356977pt;}
.ws59{word-spacing:4.463245pt;}
.ws8e{word-spacing:4.675780pt;}
.ws3d{word-spacing:4.782048pt;}
.ws93{word-spacing:4.941450pt;}
.ws3{word-spacing:4.994583pt;}
.ws4{word-spacing:5.047717pt;}
.ws65{word-spacing:5.100851pt;}
.ws8{word-spacing:5.212467pt;}
.ws51{word-spacing:5.260253pt;}
.ws12{word-spacing:5.355930pt;}
.ws8b{word-spacing:5.472788pt;}
.ws2{word-spacing:5.494062pt;}
.wsf{word-spacing:5.595034pt;}
.ws1a{word-spacing:5.690675pt;}
.ws7a{word-spacing:5.897859pt;}
.ws13{word-spacing:6.025421pt;}
.ws88{word-spacing:6.216662pt;}
.ws78{word-spacing:6.269796pt;}
.ws46{word-spacing:6.322930pt;}
.ws75{word-spacing:6.694867pt;}
.ws99{word-spacing:6.758645pt;}
.ws30{word-spacing:6.801135pt;}
.ws41{word-spacing:7.066804pt;}
.ws7b{word-spacing:7.119938pt;}
.ws1d{word-spacing:7.220941pt;}
.ws6e{word-spacing:7.226206pt;}
.ws69{word-spacing:7.279340pt;}
.ws15{word-spacing:7.460045pt;}
.ws45{word-spacing:7.863812pt;}
.ws7{word-spacing:7.986074pt;}
.ws73{word-spacing:8.129482pt;}
.ws3b{word-spacing:8.448285pt;}
.ws9b{word-spacing:8.458933pt;}
.ws43{word-spacing:8.607686pt;}
.ws28{word-spacing:8.660820pt;}
.ws96{word-spacing:8.713976pt;}
.ws58{word-spacing:8.767088pt;}
.ws32{word-spacing:8.820222pt;}
.ws37{word-spacing:8.979623pt;}
.ws23{word-spacing:9.032757pt;}
.ws10{word-spacing:9.038131pt;}
.ws79{word-spacing:9.139025pt;}
.ws8f{word-spacing:9.192159pt;}
.ws84{word-spacing:9.298427pt;}
.ws5e{word-spacing:9.457828pt;}
.ws3a{word-spacing:9.989167pt;}
.wsc{word-spacing:10.138010pt;}
.ws31{word-spacing:10.148569pt;}
.ws4c{word-spacing:10.254836pt;}
.ws18{word-spacing:10.377114pt;}
.ws83{word-spacing:10.573639pt;}
.ws81{word-spacing:10.626773pt;}
.ws86{word-spacing:10.679907pt;}
.ws76{word-spacing:10.839309pt;}
.ws98{word-spacing:11.221901pt;}
.ws19{word-spacing:11.429171pt;}
.ws21{word-spacing:11.636317pt;}
.ws7d{word-spacing:11.742585pt;}
.ws2f{word-spacing:11.955120pt;}
.ws0{word-spacing:11.987030pt;}
.ws1{word-spacing:12.114552pt;}
.ws52{word-spacing:12.380191pt;}
.ws1b{word-spacing:12.624691pt;}
.ws6d{word-spacing:12.858396pt;}
.ws8d{word-spacing:13.070931pt;}
.ws6{word-spacing:13.342003pt;}
.ws35{word-spacing:13.496002pt;}
.wsd{word-spacing:13.581107pt;}
.ws62{word-spacing:13.602270pt;}
.ws5c{word-spacing:13.708538pt;}
.ws25{word-spacing:13.814805pt;}
.ws6c{word-spacing:13.867939pt;}
.ws39{word-spacing:14.080475pt;}
.ws2a{word-spacing:14.771215pt;}
.ws6b{word-spacing:15.143152pt;}
.ws22{word-spacing:15.621357pt;}
.ws4e{word-spacing:15.780758pt;}
.ws4b{word-spacing:15.833892pt;}
.ws3c{word-spacing:15.940160pt;}
.ws67{word-spacing:16.152695pt;}
.ws8c{word-spacing:16.365231pt;}
.ws64{word-spacing:16.471499pt;}
.ws89{word-spacing:16.949703pt;}
.ws2b{word-spacing:17.055971pt;}
.ws42{word-spacing:17.427908pt;}
.ws49{word-spacing:17.481042pt;}
.ws55{word-spacing:17.959247pt;}
.ws6f{word-spacing:18.278050pt;}
.ws7c{word-spacing:18.649987pt;}
.ws7f{word-spacing:18.703121pt;}
.ws44{word-spacing:19.021924pt;}
.ws56{word-spacing:19.500129pt;}
.ws1f{word-spacing:19.749990pt;}
.ws29{word-spacing:19.818932pt;}
.ws53{word-spacing:20.031468pt;}
.ws34{word-spacing:20.722208pt;}
.ws66{word-spacing:22.209956pt;}
.ws2e{word-spacing:22.528759pt;}
.ws60{word-spacing:23.378901pt;}
.ws63{word-spacing:24.122775pt;}
.ws7e{word-spacing:24.282177pt;}
.ws6a{word-spacing:26.088729pt;}
.ws71{word-spacing:26.673201pt;}
.ws61{word-spacing:27.363941pt;}
.ws80{word-spacing:34.802683pt;}
._0{margin-left:-9.819163pt;}
._5{margin-left:-4.404850pt;}
._1{margin-left:-3.315562pt;}
._3{margin-left:-1.519634pt;}
._4{width:1.386803pt;}
._2{width:3.315562pt;}
._6{width:26.667878pt;}
.fs4{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:100.621333pt;}
.y2f{bottom:116.561333pt;}
.y2e{bottom:132.501333pt;}
.y2d{bottom:148.441333pt;}
.y2c{bottom:164.381333pt;}
.y4a{bottom:164.382667pt;}
.y2b{bottom:180.322667pt;}
.y2a{bottom:196.262667pt;}
.ya2{bottom:200.493333pt;}
.y29{bottom:212.202667pt;}
.y77{bottom:217.881333pt;}
.ya1{bottom:220.825333pt;}
.y28{bottom:228.142667pt;}
.y27{bottom:244.082667pt;}
.ya0{bottom:245.897333pt;}
.y76{bottom:246.469333pt;}
.y49{bottom:250.637333pt;}
.y9f{bottom:261.837333pt;}
.y75{bottom:262.409333pt;}
.y26{bottom:273.245333pt;}
.y48{bottom:274.949333pt;}
.yce{bottom:277.764000pt;}
.y9e{bottom:277.777333pt;}
.y74{bottom:278.349333pt;}
.ycd{bottom:289.718667pt;}
.y9d{bottom:293.717333pt;}
.y73{bottom:294.289333pt;}
.ycc{bottom:301.673333pt;}
.y47{bottom:305.661333pt;}
.y9c{bottom:309.658667pt;}
.y72{bottom:310.229333pt;}
.ycb{bottom:313.629333pt;}
.y25{bottom:314.278667pt;}
.y46{bottom:321.601333pt;}
.yca{bottom:325.584000pt;}
.y9b{bottom:325.598667pt;}
.y71{bottom:326.169333pt;}
.y24{bottom:327.561333pt;}
.yc9{bottom:337.538667pt;}
.y45{bottom:337.542667pt;}
.y23{bottom:340.845333pt;}
.y70{bottom:342.588000pt;}
.y9a{bottom:345.706667pt;}
.yc8{bottom:349.494667pt;}
.y44{bottom:353.482667pt;}
.y22{bottom:354.129333pt;}
.y6f{bottom:358.528000pt;}
.yc7{bottom:361.449333pt;}
.y21{bottom:368.948000pt;}
.y43{bottom:369.422667pt;}
.y99{bottom:370.777333pt;}
.yc6{bottom:373.405333pt;}
.y6e{bottom:374.468000pt;}
.y20{bottom:382.232000pt;}
.yc5{bottom:385.360000pt;}
.y42{bottom:385.362667pt;}
.y98{bottom:386.718667pt;}
.y6d{bottom:390.408000pt;}
.y1f{bottom:395.514667pt;}
.yc4{bottom:397.314667pt;}
.y41{bottom:401.302667pt;}
.y97{bottom:402.658667pt;}
.y6c{bottom:406.348000pt;}
.y1e{bottom:408.798667pt;}
.yc3{bottom:409.270667pt;}
.y40{bottom:417.970667pt;}
.y96{bottom:418.598667pt;}
.yc2{bottom:421.225333pt;}
.y1d{bottom:422.082667pt;}
.y6b{bottom:422.289333pt;}
.yc1{bottom:433.181333pt;}
.y3f{bottom:433.910667pt;}
.y95{bottom:434.538667pt;}
.y1c{bottom:435.365333pt;}
.y6a{bottom:438.229333pt;}
.yc0{bottom:445.136000pt;}
.y1b{bottom:448.649333pt;}
.y3e{bottom:449.850667pt;}
.y94{bottom:450.478667pt;}
.y69{bottom:454.646667pt;}
.y1a{bottom:461.933333pt;}
.ybf{bottom:464.685333pt;}
.y3d{bottom:465.790667pt;}
.y93{bottom:466.482667pt;}
.y68{bottom:470.586667pt;}
.y19{bottom:475.216000pt;}
.y3c{bottom:481.732000pt;}
.y92{bottom:482.422667pt;}
.y67{bottom:486.526667pt;}
.y18{bottom:488.500000pt;}
.ybe{bottom:489.213333pt;}
.y3b{bottom:497.672000pt;}
.y91{bottom:498.364000pt;}
.y17{bottom:501.782667pt;}
.y66{bottom:502.468000pt;}
.ybd{bottom:505.153333pt;}
.y3a{bottom:513.612000pt;}
.y90{bottom:514.304000pt;}
.y16{bottom:515.066667pt;}
.y65{bottom:518.408000pt;}
.ybc{bottom:521.093333pt;}
.y15{bottom:528.350667pt;}
.y39{bottom:529.552000pt;}
.y64{bottom:534.348000pt;}
.y8f{bottom:534.476000pt;}
.ybb{bottom:541.041333pt;}
.y14{bottom:541.633333pt;}
.y38{bottom:546.220000pt;}
.y63{bottom:550.288000pt;}
.y13{bottom:554.917333pt;}
.y8e{bottom:559.546667pt;}
.y37{bottom:562.160000pt;}
.yba{bottom:565.569333pt;}
.y62{bottom:566.228000pt;}
.y12{bottom:568.201333pt;}
.y8d{bottom:575.488000pt;}
.y36{bottom:578.100000pt;}
.y11{bottom:581.484000pt;}
.yb9{bottom:581.509333pt;}
.y61{bottom:582.168000pt;}
.y8c{bottom:591.428000pt;}
.y35{bottom:594.040000pt;}
.y10{bottom:594.768000pt;}
.yb8{bottom:597.449333pt;}
.y60{bottom:603.788000pt;}
.y8b{bottom:607.368000pt;}
.yf{bottom:608.052000pt;}
.y34{bottom:609.981333pt;}
.yb7{bottom:613.390667pt;}
.ye{bottom:621.334667pt;}
.y8a{bottom:623.308000pt;}
.y33{bottom:625.921333pt;}
.y5f{bottom:626.601333pt;}
.yb6{bottom:629.330667pt;}
.yd{bottom:634.618667pt;}
.y89{bottom:639.248000pt;}
.y32{bottom:641.861333pt;}
.yb5{bottom:645.270667pt;}
.yc{bottom:647.901333pt;}
.y5e{bottom:655.188000pt;}
.y31{bottom:658.529333pt;}
.yb{bottom:661.185333pt;}
.yb4{bottom:661.210667pt;}
.y5d{bottom:671.128000pt;}
.ya{bottom:674.469333pt;}
.y88{bottom:675.296000pt;}
.yb3{bottom:677.150667pt;}
.y5c{bottom:687.068000pt;}
.yb2{bottom:693.090667pt;}
.y87{bottom:700.368000pt;}
.y5b{bottom:703.009333pt;}
.yb1{bottom:709.032000pt;}
.y86{bottom:716.308000pt;}
.y5a{bottom:719.426667pt;}
.yb0{bottom:724.972000pt;}
.y85{bottom:732.248000pt;}
.y59{bottom:735.366667pt;}
.y9{bottom:743.516000pt;}
.yaf{bottom:744.920000pt;}
.y84{bottom:748.188000pt;}
.y58{bottom:751.306667pt;}
.y8{bottom:759.261333pt;}
.y83{bottom:764.129333pt;}
.y57{bottom:767.246667pt;}
.yae{bottom:769.448000pt;}
.y7{bottom:775.005333pt;}
.y82{bottom:780.069333pt;}
.y56{bottom:783.188000pt;}
.yad{bottom:785.388000pt;}
.y6{bottom:790.749333pt;}
.y81{bottom:796.009333pt;}
.y55{bottom:799.605333pt;}
.yac{bottom:801.328000pt;}
.y5{bottom:806.682667pt;}
.y54{bottom:815.545333pt;}
.y80{bottom:816.117333pt;}
.yab{bottom:817.268000pt;}
.y53{bottom:831.485333pt;}
.yaa{bottom:833.208000pt;}
.y7f{bottom:836.448000pt;}
.y52{bottom:847.425333pt;}
.y4{bottom:848.525333pt;}
.ya9{bottom:853.156000pt;}
.y7e{bottom:861.520000pt;}
.y51{bottom:863.366667pt;}
.y7d{bottom:877.460000pt;}
.ya8{bottom:877.684000pt;}
.y50{bottom:879.306667pt;}
.y3{bottom:885.720000pt;}
.y7c{bottom:893.401333pt;}
.ya7{bottom:893.624000pt;}
.y4f{bottom:900.925333pt;}
.y7b{bottom:909.341333pt;}
.ya6{bottom:909.565333pt;}
.y2{bottom:922.913333pt;}
.y7a{bottom:925.281333pt;}
.ya5{bottom:925.505333pt;}
.y4e{bottom:929.512000pt;}
.y79{bottom:941.221333pt;}
.ya4{bottom:941.445333pt;}
.y4d{bottom:945.453333pt;}
.y78{bottom:957.161333pt;}
.ya3{bottom:957.385333pt;}
.y1{bottom:960.106667pt;}
.y4c{bottom:961.393333pt;}
.y4b{bottom:977.333333pt;}
.h5{height:31.880400pt;}
.h4{height:35.865600pt;}
.h3{height:39.850400pt;}
.h2{height:41.731491pt;}
.h1{height:90.157771pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:65.285333pt;}
.x2{left:69.381333pt;}
.x1f{left:70.928000pt;}
.x13{left:78.569333pt;}
.x3{left:81.942667pt;}
.x1{left:84.062667pt;}
.x20{left:89.482667pt;}
.x8{left:105.822667pt;}
.x6{left:109.908000pt;}
.x5{left:132.256000pt;}
.x7{left:135.458667pt;}
.x19{left:148.393333pt;}
.x1d{left:183.768000pt;}
.x15{left:188.716000pt;}
.x1e{left:202.078667pt;}
.x4{left:258.720000pt;}
.xb{left:326.233333pt;}
.x9{left:329.192000pt;}
.xd{left:344.272000pt;}
.xa{left:348.689333pt;}
.xc{left:351.784000pt;}
.x16{left:415.970667pt;}
.x17{left:429.253333pt;}
.x1b{left:442.666667pt;}
.x18{left:503.116000pt;}
.x1a{left:514.753333pt;}
.x1c{left:537.548000pt;}
.x10{left:538.474667pt;}
.x12{left:554.852000pt;}
.xf{left:560.929333pt;}
.x11{left:564.025333pt;}
.xe{left:600.178667pt;}
}




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