
    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_7d35d99f439f75208da214ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ecbfd449852ce792b1c5ae9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.679688;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_9f76af91006588fbc64c3a78.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7d1c3f9671e274ee9926ef7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_e785ad8dabf378680eaa20a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f93a2af93a43bfc113dddc5f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_3a6c5cc60fa8176f176bfc08.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,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);}
.v1{vertical-align:-33.791400px;}
.v2{vertical-align:-28.384800px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.003483px;}
.ls5{letter-spacing:0.029390px;}
.ls1{letter-spacing:0.029992px;}
.ls0{letter-spacing:0.168282px;}
.ls13{letter-spacing:0.176447px;}
.lsf{letter-spacing:0.215408px;}
.lsb{letter-spacing:0.224376px;}
.lsc{letter-spacing:0.253420px;}
.ls2{letter-spacing:0.277763px;}
.ls17{letter-spacing:0.310882px;}
.ls1b{letter-spacing:0.351523px;}
.ls1a{letter-spacing:0.352125px;}
.ls11{letter-spacing:0.365379px;}
.ls10{letter-spacing:0.365982px;}
.ls4{letter-spacing:0.377939px;}
.ls3{letter-spacing:0.378541px;}
.ls7{letter-spacing:0.395665px;}
.lse{letter-spacing:0.450872px;}
.ls9{letter-spacing:0.476191px;}
.ls1d{letter-spacing:0.499839px;}
.ls15{letter-spacing:0.506406px;}
.ls16{letter-spacing:0.624439px;}
.lsa{letter-spacing:0.791661px;}
.ls18{letter-spacing:0.894779px;}
.ls1c{letter-spacing:1.031496px;}
.ls6{letter-spacing:1.057912px;}
.ls8{letter-spacing:12.031519px;}
.ls14{letter-spacing:14.799430px;}
.ls12{letter-spacing:15.998137px;}
.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;}
}
.wsb{word-spacing:-33.880762px;}
.ws8{word-spacing:-28.215945px;}
.ws1{word-spacing:-22.471380px;}
.ws13{word-spacing:-19.768065px;}
.wsa{word-spacing:-18.247440px;}
.ws17{word-spacing:-15.854992px;}
.wse{word-spacing:-15.544110px;}
.wsc{word-spacing:-14.868284px;}
.ws10{word-spacing:-14.023494px;}
.ws9{word-spacing:-11.996001px;}
.ws2{word-spacing:-5.224879px;}
.wsd{word-spacing:-4.101593px;}
.ws15{word-spacing:-3.378026px;}
.wsf{word-spacing:0.000000px;}
.ws12{word-spacing:0.101869px;}
.ws19{word-spacing:0.219077px;}
.ws14{word-spacing:0.278144px;}
.ws11{word-spacing:0.292110px;}
.ws16{word-spacing:0.555200px;}
.ws18{word-spacing:0.593548px;}
.ws4{word-spacing:0.734500px;}
.ws6{word-spacing:0.966441px;}
.ws7{word-spacing:1.096194px;}
.ws5{word-spacing:1.365674px;}
.ws3{word-spacing:1.537697px;}
.ws0{word-spacing:1.829299px;}
.ws1d{word-spacing:95.924919px;}
.ws1c{word-spacing:110.198333px;}
.ws1a{word-spacing:124.420659px;}
.ws1b{word-spacing:138.694073px;}
._2{margin-left:-1.121880px;}
._0{width:1.121880px;}
._1{width:2.643049px;}
._3{width:3.777299px;}
._9{width:5.610420px;}
._8{width:6.787371px;}
._c{width:8.005389px;}
._a{width:9.031130px;}
._b{width:10.040822px;}
._12{width:11.147145px;}
._e{width:12.722370px;}
._6{width:14.032687px;}
._11{width:15.303582px;}
._10{width:16.595721px;}
._f{width:18.092979px;}
._7{width:19.650823px;}
._d{width:21.645219px;}
._4{width:23.798663px;}
._5{width:25.367833px;}
._14{width:30.524943px;}
._13{width:31.988787px;}
._18{width:110.453259px;}
._15{width:124.226833px;}
._16{width:138.500247px;}
._17{width:152.268815px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.198204px;}
.fs3{font-size:47.984004px;}
.fs0{font-size:56.093976px;}
.fs7{font-size:59.473134px;}
.fs9{font-size:62.176440px;}
.fs6{font-size:67.583100px;}
.fs4{font-size:72.989760px;}
.fs8{font-size:79.072260px;}
.fs2{font-size:89.885520px;}
.fs1{font-size:112.863780px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.891540px;}
.y3{bottom:105.429645px;}
.y103{bottom:127.056225px;}
.ye5{bottom:128.407890px;}
.y6a{bottom:130.604355px;}
.y4f{bottom:135.842040px;}
.y2d{bottom:138.038490px;}
.yc2{bottom:139.221195px;}
.yda{bottom:140.572860px;}
.y102{bottom:143.276190px;}
.ye4{bottom:146.317410px;}
.y69{bottom:148.513875px;}
.y4e{bottom:153.751560px;}
.y2c{bottom:155.779110px;}
.yc1{bottom:156.961710px;}
.yd9{bottom:158.482410px;}
.y101{bottom:159.496110px;}
.y8e{bottom:160.340910px;}
.ye3{bottom:164.058060px;}
.y68{bottom:166.254510px;}
.y99{bottom:166.761360px;}
.y4d{bottom:171.492060px;}
.y2b{bottom:173.688510px;}
.yd8{bottom:176.222910px;}
.ye2{bottom:181.967460px;}
.y67{bottom:183.995010px;}
.y100{bottom:184.163910px;}
.y4c{bottom:189.401610px;}
.y2a{bottom:191.429160px;}
.yd7{bottom:193.963560px;}
.ya5{bottom:194.977260px;}
.yc0{bottom:198.187410px;}
.yff{bottom:200.383860px;}
.y4b{bottom:207.142260px;}
.y29{bottom:209.169660px;}
.yd6{bottom:211.872960px;}
.yfe{bottom:216.603810px;}
.ye1{bottom:218.124510px;}
.y66{bottom:222.010560px;}
.y7f{bottom:223.531110px;}
.y4a{bottom:224.882760px;}
.y28{bottom:227.079210px;}
.ya4{bottom:230.627310px;}
.ybf{bottom:239.582160px;}
.yfd{bottom:241.102710px;}
.y7e{bottom:241.271760px;}
.y49{bottom:242.792310px;}
.y27{bottom:244.819860px;}
.yd5{bottom:252.929760px;}
.yfc{bottom:257.322660px;}
.ybe{bottom:257.491560px;}
.y7d{bottom:259.181160px;}
.ye0{bottom:259.519110px;}
.y48{bottom:260.532810px;}
.y26{bottom:262.729260px;}
.y65{bottom:266.446410px;}
.yfb{bottom:273.542610px;}
.ybd{bottom:275.232210px;}
.y7c{bottom:276.921810px;}
.y47{bottom:278.442360px;}
.y25{bottom:280.469910px;}
.ybc{bottom:292.972710px;}
.yd4{bottom:294.493410px;}
.y7b{bottom:294.662310px;}
.y46{bottom:296.183010px;}
.y24{bottom:298.210410px;}
.ybb{bottom:310.882260px;}
.yd3{bottom:312.233910px;}
.y45{bottom:313.923510px;}
.yfa{bottom:314.430360px;}
.y23{bottom:316.119960px;}
.yba{bottom:328.622910px;}
.yd2{bottom:329.974560px;}
.y44{bottom:331.833060px;}
.y22{bottom:333.860610px;}
.y7a{bottom:335.888010px;}
.yf9{bottom:339.098310px;}
.yb9{bottom:346.532310px;}
.yd1{bottom:347.883960px;}
.y43{bottom:349.573560px;}
.y21{bottom:351.770010px;}
.yf8{bottom:355.149210px;}
.yb8{bottom:364.272960px;}
.yd0{bottom:365.624610px;}
.y124{bottom:366.638310px;}
.y42{bottom:367.483110px;}
.y20{bottom:369.510660px;}
.y79{bottom:377.282760px;}
.yf7{bottom:379.817010px;}
.y123{bottom:382.858260px;}
.ycf{bottom:383.534160px;}
.y41{bottom:385.223760px;}
.y1f{bottom:387.251160px;}
.yf6{bottom:396.036960px;}
.y122{bottom:398.909310px;}
.yb7{bottom:399.923010px;}
.yce{bottom:401.274660px;}
.y40{bottom:403.133310px;}
.yb6{bottom:417.663510px;}
.ycd{bottom:419.015310px;}
.yf5{bottom:420.704760px;}
.y3f{bottom:420.873810px;}
.y1e{bottom:423.577110px;}
.y8d{bottom:431.011260px;}
.yb5{bottom:435.573060px;}
.ycc{bottom:436.924710px;}
.y3e{bottom:438.614310px;}
.y121{bottom:439.797060px;}
.y8c{bottom:448.751760px;}
.yf4{bottom:452.975760px;}
.yb4{bottom:453.313710px;}
.ycb{bottom:454.665360px;}
.y120{bottom:456.017010px;}
.y1d{bottom:464.971710px;}
.y8b{bottom:466.661310px;}
.yb3{bottom:471.054210px;}
.yca{bottom:472.574910px;}
.y98{bottom:474.602310px;}
.yf3{bottom:477.643560px;}
.y3d{bottom:479.840010px;}
.y11f{bottom:480.684810px;}
.y1c{bottom:481.360710px;}
.y8a{bottom:484.401960px;}
.yb2{bottom:488.963760px;}
.y97{bottom:492.342960px;}
.yf2{bottom:493.863510px;}
.y11e{bottom:496.904760px;}
.y89{bottom:502.311510px;}
.yb1{bottom:506.704260px;}
.y96{bottom:510.083460px;}
.yc9{bottom:510.421410px;}
.y1b{bottom:518.362410px;}
.yf1{bottom:518.531460px;}
.y3c{bottom:519.545160px;}
.y11d{bottom:521.403660px;}
.yb0{bottom:524.613810px;}
.y95{bottom:527.993010px;}
.y1a{bottom:534.582360px;}
.yf0{bottom:534.751260px;}
.y3b{bottom:537.454710px;}
.y88{bottom:537.792510px;}
.ya3{bottom:541.678560px;}
.yaf{bottom:542.354460px;}
.y94{bottom:545.733510px;}
.y11c{bottom:546.071460px;}
.y19{bottom:550.802310px;}
.yef{bottom:550.971210px;}
.yc8{bottom:551.816010px;}
.y3a{bottom:555.195210px;}
.y87{bottom:555.702060px;}
.ya2{bottom:559.419210px;}
.yae{bottom:560.094960px;}
.y11b{bottom:562.291410px;}
.y93{bottom:563.643060px;}
.y18{bottom:567.022260px;}
.y39{bottom:573.104760px;}
.y86{bottom:573.442710px;}
.ydf{bottom:574.963260px;}
.ya1{bottom:577.159710px;}
.yad{bottom:578.004510px;}
.y92{bottom:581.383710px;}
.y17{bottom:583.073160px;}
.y11a{bottom:586.959210px;}
.y38{bottom:590.845260px;}
.yde{bottom:591.014310px;}
.y85{bottom:591.352110px;}
.yac{bottom:595.745160px;}
.yee{bottom:598.955310px;}
.y16{bottom:599.293110px;}
.y64{bottom:599.969010px;}
.y119{bottom:603.179160px;}
.ydd{bottom:607.234260px;}
.y37{bottom:608.585910px;}
.y84{bottom:609.092760px;}
.ya0{bottom:612.809760px;}
.yab{bottom:613.654560px;}
.y15{bottom:615.513210px;}
.y63{bottom:617.709660px;}
.y91{bottom:622.440360px;}
.ydc{bottom:623.454210px;}
.y36{bottom:626.495460px;}
.y83{bottom:626.833260px;}
.y118{bottom:627.847110px;}
.y9f{bottom:630.719310px;}
.yaa{bottom:631.395210px;}
.y14{bottom:631.733160px;}
.y62{bottom:635.619060px;}
.yed{bottom:640.349910px;}
.y117{bottom:643.898010px;}
.y35{bottom:644.235960px;}
.y82{bottom:644.742810px;}
.y9e{bottom:648.459960px;}
.ya9{bottom:649.135710px;}
.y61{bottom:653.359710px;}
.yec{bottom:658.259460px;}
.y116{bottom:660.117960px;}
.y34{bottom:662.145510px;}
.y90{bottom:664.004010px;}
.y13{bottom:664.341960px;}
.y9d{bottom:666.200460px;}
.ya8{bottom:667.045260px;}
.y60{bottom:671.100210px;}
.yeb{bottom:675.999960px;}
.y8f{bottom:681.575610px;}
.y81{bottom:682.589310px;}
.y9c{bottom:684.110010px;}
.ya7{bottom:684.785760px;}
.y5f{bottom:689.009760px;}
.y33{bottom:699.316110px;}
.y115{bottom:701.005710px;}
.y9b{bottom:701.850510px;}
.y12{bottom:706.243410px;}
.y5e{bottom:706.750260px;}
.yea{bottom:711.650160px;}
.y32{bottom:715.367160px;}
.ya6{bottom:721.956510px;}
.y80{bottom:723.984060px;}
.y5d{bottom:724.659810px;}
.y114{bottom:725.673660px;}
.y78{bottom:727.870110px;}
.ye9{bottom:729.390660px;}
.y11{bottom:729.897510px;}
.y9a{bottom:739.021260px;}
.y10{bottom:741.724560px;}
.y5c{bottom:742.400460px;}
.y77{bottom:745.610610px;}
.ye8{bottom:747.300210px;}
.y76{bottom:763.520160px;}
.ye7{bottom:765.040710px;}
.yf{bottom:765.378660px;}
.y113{bottom:766.392360px;}
.ye{bottom:777.036660px;}
.y75{bottom:781.260660px;}
.y112{bottom:782.612310px;}
.ye6{bottom:782.950260px;}
.y5b{bottom:783.457110px;}
.y111{bottom:798.832260px;}
.y74{bottom:799.001160px;}
.yd{bottom:800.690760px;}
.yc{bottom:812.348910px;}
.y73{bottom:816.910710px;}
.yc7{bottom:818.431410px;}
.y110{bottom:823.500210px;}
.y5a{bottom:825.020760px;}
.y72{bottom:834.651360px;}
.yb{bottom:836.003010px;}
.yc6{bottom:836.340960px;}
.y10f{bottom:839.720160px;}
.y59{bottom:842.761260px;}
.ya{bottom:847.830060px;}
.y71{bottom:852.560910px;}
.yc5{bottom:854.081460px;}
.y10e{bottom:855.771060px;}
.y58{bottom:860.670810px;}
.y70{bottom:870.301410px;}
.y9{bottom:871.484160px;}
.yc4{bottom:871.991010px;}
.y57{bottom:878.411460px;}
.y10d{bottom:880.438860px;}
.y8{bottom:883.818060px;}
.yc3{bottom:889.731660px;}
.y56{bottom:896.151960px;}
.y10c{bottom:896.658810px;}
.y6f{bottom:907.472160px;}
.y7{bottom:913.385610px;}
.y55{bottom:914.061510px;}
.y10b{bottom:921.326610px;}
.y6e{bottom:925.381710px;}
.y54{bottom:931.802010px;}
.y10a{bottom:937.546560px;}
.y6d{bottom:943.122210px;}
.y53{bottom:949.711560px;}
.y109{bottom:953.766510px;}
.y6{bottom:960.524910px;}
.y6c{bottom:961.031760px;}
.y52{bottom:967.452060px;}
.ydb{bottom:972.858810px;}
.y108{bottom:978.265410px;}
.y31{bottom:978.772410px;}
.y51{bottom:985.192710px;}
.y5{bottom:992.120010px;}
.y107{bottom:994.485510px;}
.y30{bottom:996.512910px;}
.y106{bottom:1010.705310px;}
.y2f{bottom:1014.422460px;}
.y4{bottom:1023.884010px;}
.y50{bottom:1026.418410px;}
.y2e{bottom:1032.162960px;}
.y105{bottom:1035.373110px;}
.y6b{bottom:1050.072510px;}
.y104{bottom:1051.593060px;}
.y2{bottom:1077.781560px;}
.h6{height:38.451754px;}
.h4{height:47.070246px;}
.h7{height:55.025780px;}
.h2{height:55.053170px;}
.ha{height:61.022776px;}
.h8{height:71.599818px;}
.h5{height:71.635458px;}
.h3{height:75.224150px;}
.h9{height:79.690012px;}
.h1{height:1185.407550px;}
.h0{height:1188.000000px;}
.w1{width:839.790000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:38.898015px;}
.x3{left:120.018285px;}
.x7{left:123.911685px;}
.x4{left:125.773785px;}
.x15{left:130.344285px;}
.x17{left:138.977535px;}
.x11{left:140.331735px;}
.x19{left:145.071585px;}
.x5{left:157.090335px;}
.x2{left:159.629535px;}
.x1d{left:170.801835px;}
.x1c{left:194.839335px;}
.xc{left:195.854985px;}
.xe{left:208.720185px;}
.x9{left:209.735835px;}
.x1a{left:210.751485px;}
.x10{left:215.152785px;}
.x12{left:238.851735px;}
.x14{left:256.795335px;}
.x1b{left:260.857935px;}
.x13{left:299.453385px;}
.x18{left:302.669685px;}
.xb{left:323.490885px;}
.xa{left:327.722985px;}
.xd{left:348.882735px;}
.x16{left:362.932785px;}
.x6{left:365.133435px;}
.x8{left:399.496935px;}
.xf{left:716.047485px;}
@media print{
.v1{vertical-align:-30.036800pt;}
.v2{vertical-align:-25.230933pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.003096pt;}
.ls5{letter-spacing:0.026125pt;}
.ls1{letter-spacing:0.026660pt;}
.ls0{letter-spacing:0.149584pt;}
.ls13{letter-spacing:0.156842pt;}
.lsf{letter-spacing:0.191474pt;}
.lsb{letter-spacing:0.199445pt;}
.lsc{letter-spacing:0.225263pt;}
.ls2{letter-spacing:0.246900pt;}
.ls17{letter-spacing:0.276340pt;}
.ls1b{letter-spacing:0.312465pt;}
.ls1a{letter-spacing:0.313000pt;}
.ls11{letter-spacing:0.324782pt;}
.ls10{letter-spacing:0.325317pt;}
.ls4{letter-spacing:0.335946pt;}
.ls3{letter-spacing:0.336481pt;}
.ls7{letter-spacing:0.351703pt;}
.lse{letter-spacing:0.400776pt;}
.ls9{letter-spacing:0.423281pt;}
.ls1d{letter-spacing:0.444302pt;}
.ls15{letter-spacing:0.450139pt;}
.ls16{letter-spacing:0.555057pt;}
.lsa{letter-spacing:0.703699pt;}
.ls18{letter-spacing:0.795359pt;}
.ls1c{letter-spacing:0.916885pt;}
.ls6{letter-spacing:0.940366pt;}
.ls8{letter-spacing:10.694683pt;}
.ls14{letter-spacing:13.155049pt;}
.ls12{letter-spacing:14.220566pt;}
.wsb{word-spacing:-30.116232pt;}
.ws8{word-spacing:-25.080840pt;}
.ws1{word-spacing:-19.974560pt;}
.ws13{word-spacing:-17.571613pt;}
.wsa{word-spacing:-16.219947pt;}
.ws17{word-spacing:-14.093326pt;}
.wse{word-spacing:-13.816987pt;}
.wsc{word-spacing:-13.216252pt;}
.ws10{word-spacing:-12.465328pt;}
.ws9{word-spacing:-10.663112pt;}
.ws2{word-spacing:-4.644336pt;}
.wsd{word-spacing:-3.645861pt;}
.ws15{word-spacing:-3.002690pt;}
.wsf{word-spacing:0.000000pt;}
.ws12{word-spacing:0.090550pt;}
.ws19{word-spacing:0.194735pt;}
.ws14{word-spacing:0.247239pt;}
.ws11{word-spacing:0.259653pt;}
.ws16{word-spacing:0.493511pt;}
.ws18{word-spacing:0.527598pt;}
.ws4{word-spacing:0.652889pt;}
.ws6{word-spacing:0.859059pt;}
.ws7{word-spacing:0.974395pt;}
.ws5{word-spacing:1.213933pt;}
.ws3{word-spacing:1.366842pt;}
.ws0{word-spacing:1.626044pt;}
.ws1d{word-spacing:85.266595pt;}
.ws1c{word-spacing:97.954074pt;}
.ws1a{word-spacing:110.596141pt;}
.ws1b{word-spacing:123.283620pt;}
._2{margin-left:-0.997226pt;}
._0{width:0.997226pt;}
._1{width:2.349377pt;}
._3{width:3.357599pt;}
._9{width:4.987040pt;}
._8{width:6.033219pt;}
._c{width:7.115901pt;}
._a{width:8.027671pt;}
._b{width:8.925175pt;}
._12{width:9.908573pt;}
._e{width:11.308774pt;}
._6{width:12.473500pt;}
._11{width:13.603184pt;}
._10{width:14.751752pt;}
._f{width:16.082648pt;}
._7{width:17.467398pt;}
._d{width:19.240194pt;}
._4{width:21.154368pt;}
._5{width:22.549185pt;}
._14{width:27.133283pt;}
._13{width:28.434477pt;}
._18{width:98.180675pt;}
._15{width:110.423852pt;}
._16{width:123.111331pt;}
._17{width:135.350058pt;}
.fs5{font-size:34.842848pt;}
.fs3{font-size:42.652448pt;}
.fs0{font-size:49.861312pt;}
.fs7{font-size:52.865008pt;}
.fs9{font-size:55.267947pt;}
.fs6{font-size:60.073867pt;}
.fs4{font-size:64.879787pt;}
.fs8{font-size:70.286453pt;}
.fs2{font-size:79.898240pt;}
.fs1{font-size:100.323360pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.792480pt;}
.y3{bottom:93.715240pt;}
.y103{bottom:112.938867pt;}
.ye5{bottom:114.140347pt;}
.y6a{bottom:116.092760pt;}
.y4f{bottom:120.748480pt;}
.y2d{bottom:122.700880pt;}
.yc2{bottom:123.752173pt;}
.yda{bottom:124.953653pt;}
.y102{bottom:127.356613pt;}
.ye4{bottom:130.059920pt;}
.y69{bottom:132.012333pt;}
.y4e{bottom:136.668053pt;}
.y2c{bottom:138.470320pt;}
.yc1{bottom:139.521520pt;}
.yd9{bottom:140.873253pt;}
.y101{bottom:141.774320pt;}
.y8e{bottom:142.525253pt;}
.ye3{bottom:145.829387pt;}
.y68{bottom:147.781787pt;}
.y99{bottom:148.232320pt;}
.y4d{bottom:152.437387pt;}
.y2b{bottom:154.389787pt;}
.yd8{bottom:156.642587pt;}
.ye2{bottom:161.748853pt;}
.y67{bottom:163.551120pt;}
.y100{bottom:163.701253pt;}
.y4c{bottom:168.356987pt;}
.y2a{bottom:170.159253pt;}
.yd7{bottom:172.412053pt;}
.ya5{bottom:173.313120pt;}
.yc0{bottom:176.166587pt;}
.yff{bottom:178.118987pt;}
.y4b{bottom:184.126453pt;}
.y29{bottom:185.928587pt;}
.yd6{bottom:188.331520pt;}
.yfe{bottom:192.536720pt;}
.ye1{bottom:193.888453pt;}
.y66{bottom:197.342720pt;}
.y7f{bottom:198.694320pt;}
.y4a{bottom:199.895787pt;}
.y28{bottom:201.848187pt;}
.ya4{bottom:205.002053pt;}
.ybf{bottom:212.961920pt;}
.yfd{bottom:214.313520pt;}
.y7e{bottom:214.463787pt;}
.y49{bottom:215.815387pt;}
.y27{bottom:217.617653pt;}
.yd5{bottom:224.826453pt;}
.yfc{bottom:228.731253pt;}
.ybe{bottom:228.881387pt;}
.y7d{bottom:230.383253pt;}
.ye0{bottom:230.683653pt;}
.y48{bottom:231.584720pt;}
.y26{bottom:233.537120pt;}
.y65{bottom:236.841253pt;}
.yfb{bottom:243.148987pt;}
.ybd{bottom:244.650853pt;}
.y7c{bottom:246.152720pt;}
.y47{bottom:247.504320pt;}
.y25{bottom:249.306587pt;}
.ybc{bottom:260.420187pt;}
.yd4{bottom:261.771920pt;}
.y7b{bottom:261.922053pt;}
.y46{bottom:263.273787pt;}
.y24{bottom:265.075920pt;}
.ybb{bottom:276.339787pt;}
.yd3{bottom:277.541253pt;}
.y45{bottom:279.043120pt;}
.yfa{bottom:279.493653pt;}
.y23{bottom:280.995520pt;}
.yba{bottom:292.109253pt;}
.yd2{bottom:293.310720pt;}
.y44{bottom:294.962720pt;}
.y22{bottom:296.764987pt;}
.y7a{bottom:298.567120pt;}
.yf9{bottom:301.420720pt;}
.yb9{bottom:308.028720pt;}
.yd1{bottom:309.230187pt;}
.y43{bottom:310.732053pt;}
.y21{bottom:312.684453pt;}
.yf8{bottom:315.688187pt;}
.yb8{bottom:323.798187pt;}
.yd0{bottom:324.999653pt;}
.y124{bottom:325.900720pt;}
.y42{bottom:326.651653pt;}
.y20{bottom:328.453920pt;}
.y79{bottom:335.362453pt;}
.yf7{bottom:337.615120pt;}
.y123{bottom:340.318453pt;}
.ycf{bottom:340.919253pt;}
.y41{bottom:342.421120pt;}
.y1f{bottom:344.223253pt;}
.yf6{bottom:352.032853pt;}
.y122{bottom:354.586053pt;}
.yb7{bottom:355.487120pt;}
.yce{bottom:356.688587pt;}
.y40{bottom:358.340720pt;}
.yb6{bottom:371.256453pt;}
.ycd{bottom:372.458053pt;}
.yf5{bottom:373.959787pt;}
.y3f{bottom:374.110053pt;}
.y1e{bottom:376.512987pt;}
.y8d{bottom:383.121120pt;}
.yb5{bottom:387.176053pt;}
.ycc{bottom:388.377520pt;}
.y3e{bottom:389.879387pt;}
.y121{bottom:390.930720pt;}
.y8c{bottom:398.890453pt;}
.yf4{bottom:402.645120pt;}
.yb4{bottom:402.945520pt;}
.ycb{bottom:404.146987pt;}
.y120{bottom:405.348453pt;}
.y1d{bottom:413.308187pt;}
.y8b{bottom:414.810053pt;}
.yb3{bottom:418.714853pt;}
.yca{bottom:420.066587pt;}
.y98{bottom:421.868720pt;}
.yf3{bottom:424.572053pt;}
.y3d{bottom:426.524453pt;}
.y11f{bottom:427.275387pt;}
.y1c{bottom:427.876187pt;}
.y8a{bottom:430.579520pt;}
.yb2{bottom:434.634453pt;}
.y97{bottom:437.638187pt;}
.yf2{bottom:438.989787pt;}
.y11e{bottom:441.693120pt;}
.y89{bottom:446.499120pt;}
.yb1{bottom:450.403787pt;}
.y96{bottom:453.407520pt;}
.yc9{bottom:453.707920pt;}
.y1b{bottom:460.766587pt;}
.yf1{bottom:460.916853pt;}
.y3c{bottom:461.817920pt;}
.y11d{bottom:463.469920pt;}
.yb0{bottom:466.323387pt;}
.y95{bottom:469.327120pt;}
.y1a{bottom:475.184320pt;}
.yf0{bottom:475.334453pt;}
.y3b{bottom:477.737520pt;}
.y88{bottom:478.037787pt;}
.ya3{bottom:481.492053pt;}
.yaf{bottom:482.092853pt;}
.y94{bottom:485.096453pt;}
.y11c{bottom:485.396853pt;}
.y19{bottom:489.602053pt;}
.yef{bottom:489.752187pt;}
.yc8{bottom:490.503120pt;}
.y3a{bottom:493.506853pt;}
.y87{bottom:493.957387pt;}
.ya2{bottom:497.261520pt;}
.yae{bottom:497.862187pt;}
.y11b{bottom:499.814587pt;}
.y93{bottom:501.016053pt;}
.y18{bottom:504.019787pt;}
.y39{bottom:509.426453pt;}
.y86{bottom:509.726853pt;}
.ydf{bottom:511.078453pt;}
.ya1{bottom:513.030853pt;}
.yad{bottom:513.781787pt;}
.y92{bottom:516.785520pt;}
.y17{bottom:518.287253pt;}
.y11a{bottom:521.741520pt;}
.y38{bottom:525.195787pt;}
.yde{bottom:525.346053pt;}
.y85{bottom:525.646320pt;}
.yac{bottom:529.551253pt;}
.yee{bottom:532.404720pt;}
.y16{bottom:532.704987pt;}
.y64{bottom:533.305787pt;}
.y119{bottom:536.159253pt;}
.ydd{bottom:539.763787pt;}
.y37{bottom:540.965253pt;}
.y84{bottom:541.415787pt;}
.ya0{bottom:544.719787pt;}
.yab{bottom:545.470720pt;}
.y15{bottom:547.122853pt;}
.y63{bottom:549.075253pt;}
.y91{bottom:553.280320pt;}
.ydc{bottom:554.181520pt;}
.y36{bottom:556.884853pt;}
.y83{bottom:557.185120pt;}
.y118{bottom:558.086320pt;}
.y9f{bottom:560.639387pt;}
.yaa{bottom:561.240187pt;}
.y14{bottom:561.540587pt;}
.y62{bottom:564.994720pt;}
.yed{bottom:569.199920pt;}
.y117{bottom:572.353787pt;}
.y35{bottom:572.654187pt;}
.y82{bottom:573.104720pt;}
.y9e{bottom:576.408853pt;}
.ya9{bottom:577.009520pt;}
.y61{bottom:580.764187pt;}
.yec{bottom:585.119520pt;}
.y116{bottom:586.771520pt;}
.y34{bottom:588.573787pt;}
.y90{bottom:590.225787pt;}
.y13{bottom:590.526187pt;}
.y9d{bottom:592.178187pt;}
.ya8{bottom:592.929120pt;}
.y60{bottom:596.533520pt;}
.yeb{bottom:600.888853pt;}
.y8f{bottom:605.844987pt;}
.y81{bottom:606.746053pt;}
.y9c{bottom:608.097787pt;}
.ya7{bottom:608.698453pt;}
.y5f{bottom:612.453120pt;}
.y33{bottom:621.614320pt;}
.y115{bottom:623.116187pt;}
.y9b{bottom:623.867120pt;}
.y12{bottom:627.771920pt;}
.y5e{bottom:628.222453pt;}
.yea{bottom:632.577920pt;}
.y32{bottom:635.881920pt;}
.ya6{bottom:641.739120pt;}
.y80{bottom:643.541387pt;}
.y5d{bottom:644.142053pt;}
.y114{bottom:645.043253pt;}
.y78{bottom:646.995653pt;}
.ye9{bottom:648.347253pt;}
.y11{bottom:648.797787pt;}
.y9a{bottom:656.907787pt;}
.y10{bottom:659.310720pt;}
.y5c{bottom:659.911520pt;}
.y77{bottom:662.764987pt;}
.ye8{bottom:664.266853pt;}
.y76{bottom:678.684587pt;}
.ye7{bottom:680.036187pt;}
.yf{bottom:680.336587pt;}
.y113{bottom:681.237653pt;}
.ye{bottom:690.699253pt;}
.y75{bottom:694.453920pt;}
.y112{bottom:695.655387pt;}
.ye6{bottom:695.955787pt;}
.y5b{bottom:696.406320pt;}
.y111{bottom:710.073120pt;}
.y74{bottom:710.223253pt;}
.yd{bottom:711.725120pt;}
.yc{bottom:722.087920pt;}
.y73{bottom:726.142853pt;}
.yc7{bottom:727.494587pt;}
.y110{bottom:732.000187pt;}
.y5a{bottom:733.351787pt;}
.y72{bottom:741.912320pt;}
.yb{bottom:743.113787pt;}
.yc6{bottom:743.414187pt;}
.y10f{bottom:746.417920pt;}
.y59{bottom:749.121120pt;}
.ya{bottom:753.626720pt;}
.y71{bottom:757.831920pt;}
.yc5{bottom:759.183520pt;}
.y10e{bottom:760.685387pt;}
.y58{bottom:765.040720pt;}
.y70{bottom:773.601253pt;}
.y9{bottom:774.652587pt;}
.yc4{bottom:775.103120pt;}
.y57{bottom:780.810187pt;}
.y10d{bottom:782.612320pt;}
.y8{bottom:785.616053pt;}
.yc3{bottom:790.872587pt;}
.y56{bottom:796.579520pt;}
.y10c{bottom:797.030053pt;}
.y6f{bottom:806.641920pt;}
.y7{bottom:811.898320pt;}
.y55{bottom:812.499120pt;}
.y10b{bottom:818.956987pt;}
.y6e{bottom:822.561520pt;}
.y54{bottom:828.268453pt;}
.y10a{bottom:833.374720pt;}
.y6d{bottom:838.330853pt;}
.y53{bottom:844.188053pt;}
.y109{bottom:847.792453pt;}
.y6{bottom:853.799920pt;}
.y6c{bottom:854.250453pt;}
.y52{bottom:859.957387pt;}
.ydb{bottom:864.763387pt;}
.y108{bottom:869.569253pt;}
.y31{bottom:870.019920pt;}
.y51{bottom:875.726853pt;}
.y5{bottom:881.884453pt;}
.y107{bottom:883.987120pt;}
.y30{bottom:885.789253pt;}
.y106{bottom:898.404720pt;}
.y2f{bottom:901.708853pt;}
.y4{bottom:910.119120pt;}
.y50{bottom:912.371920pt;}
.y2e{bottom:917.478187pt;}
.y105{bottom:920.331653pt;}
.y6b{bottom:933.397787pt;}
.y104{bottom:934.749387pt;}
.y2{bottom:958.028053pt;}
.h6{height:34.179337pt;}
.h4{height:41.840219pt;}
.h7{height:48.911805pt;}
.h2{height:48.936151pt;}
.ha{height:54.242467pt;}
.h8{height:63.644283pt;}
.h5{height:63.675962pt;}
.h3{height:66.865911pt;}
.h9{height:70.835566pt;}
.h1{height:1053.695600pt;}
.h0{height:1056.000000pt;}
.w1{width:746.480000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:34.576013pt;}
.x3{left:106.682920pt;}
.x7{left:110.143720pt;}
.x4{left:111.798920pt;}
.x15{left:115.861587pt;}
.x17{left:123.535587pt;}
.x11{left:124.739320pt;}
.x19{left:128.952520pt;}
.x5{left:139.635853pt;}
.x2{left:141.892920pt;}
.x1d{left:151.823853pt;}
.x1c{left:173.190520pt;}
.xc{left:174.093320pt;}
.xe{left:185.529053pt;}
.x9{left:186.431853pt;}
.x1a{left:187.334653pt;}
.x10{left:191.246920pt;}
.x12{left:212.312653pt;}
.x14{left:228.262520pt;}
.x1b{left:231.873720pt;}
.x13{left:266.180787pt;}
.x18{left:269.039720pt;}
.xb{left:287.547453pt;}
.xa{left:291.309320pt;}
.xd{left:310.117987pt;}
.x16{left:322.606920pt;}
.x6{left:324.563053pt;}
.x8{left:355.108387pt;}
.xf{left:636.486653pt;}
}




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