
    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_e9028947d9f63b7f38368cd8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_56b094646688d43764e9e7db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f62436371398e767729bf2b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_292ddd8ac34d9296a6092490.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_117ecd9a66223b6109b19efb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_b238afdbeefa1143f06458ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_8db2043b5bec497291a6194e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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_4e38fe9907ab9c8b4b10f4c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_4d1ff284a3db53121deb9f17.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0755e37593d81d9b3709258e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_12b5b1c8be9b7c12e9678b08.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_48263015d2f326732e550261.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_88dd64c3905692af08ef1b53.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.041992;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:fff;src:url('chunks/assets/font_5534ceee68005e07cc327efd.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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:ff11;src:url('chunks/assets/font_8665ce7a056965b61525c24b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-38.880000px;}
.ve{vertical-align:-11.520000px;}
.vc{vertical-align:-10.080000px;}
.v1{vertical-align:-7.200000px;}
.v5{vertical-align:-5.760000px;}
.va{vertical-align:-4.553634px;}
.v7{vertical-align:-3.035756px;}
.v10{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.440000px;}
.v8{vertical-align:3.035756px;}
.vb{vertical-align:4.553634px;}
.v6{vertical-align:5.760000px;}
.v2{vertical-align:7.200000px;}
.vd{vertical-align:10.080000px;}
.vf{vertical-align:11.520000px;}
.v3{vertical-align:38.880000px;}
.ls2f{letter-spacing:-1.728000px;}
.ls3b{letter-spacing:-1.626000px;}
.ls2d{letter-spacing:-0.548400px;}
.ls1b{letter-spacing:-0.494575px;}
.ls2b{letter-spacing:-0.483600px;}
.ls15{letter-spacing:-0.420600px;}
.ls30{letter-spacing:-0.366000px;}
.ls1a{letter-spacing:-0.241596px;}
.ls1d{letter-spacing:-0.229200px;}
.ls2e{letter-spacing:-0.186000px;}
.ls31{letter-spacing:-0.129600px;}
.ls16{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.016697px;}
.ls24{letter-spacing:0.028800px;}
.ls17{letter-spacing:0.078000px;}
.ls0{letter-spacing:0.099360px;}
.ls19{letter-spacing:0.191400px;}
.ls35{letter-spacing:0.198720px;}
.lse{letter-spacing:0.209467px;}
.ls1{letter-spacing:0.367326px;}
.ls22{letter-spacing:0.380160px;}
.ls23{letter-spacing:0.414720px;}
.lsf{letter-spacing:0.437149px;}
.ls11{letter-spacing:0.516960px;}
.ls2c{letter-spacing:0.531257px;}
.ls5{letter-spacing:0.544918px;}
.ls18{letter-spacing:0.576000px;}
.ls36{letter-spacing:0.665280px;}
.ls29{letter-spacing:0.686880px;}
.ls6{letter-spacing:0.739966px;}
.ls27{letter-spacing:0.992160px;}
.ls14{letter-spacing:1.074240px;}
.ls37{letter-spacing:1.254240px;}
.ls1c{letter-spacing:1.277547px;}
.ls28{letter-spacing:1.435680px;}
.ls10{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.517878px;}
.ls20{letter-spacing:1.956960px;}
.ls9{letter-spacing:2.794414px;}
.ls13{letter-spacing:2.880000px;}
.lsb{letter-spacing:2.920903px;}
.ls8{letter-spacing:4.312292px;}
.ls12{letter-spacing:4.320000px;}
.ls3{letter-spacing:4.553634px;}
.ls39{letter-spacing:5.760000px;}
.lsd{letter-spacing:5.830170px;}
.lsc{letter-spacing:5.956660px;}
.ls32{letter-spacing:7.200000px;}
.ls38{letter-spacing:9.851040px;}
.ls34{letter-spacing:11.291040px;}
.ls1f{letter-spacing:11.520000px;}
.ls2a{letter-spacing:12.960000px;}
.ls4{letter-spacing:13.660903px;}
.ls26{letter-spacing:14.400000px;}
.ls33{letter-spacing:15.840000px;}
.ls7{letter-spacing:22.526829px;}
.ls3a{letter-spacing:30.939840px;}
.ls1e{letter-spacing:30.951840px;}
.ls25{letter-spacing:41.019840px;}
.ls21{letter-spacing:55.931040px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-90.720000px;}
.ws2{word-spacing:-83.520000px;}
.wsa{word-spacing:-60.480000px;}
.ws0{word-spacing:-23.549640px;}
.ws5{word-spacing:-19.923720px;}
.ws6{word-spacing:-19.732320px;}
.ws9{word-spacing:-19.627682px;}
.wsd{word-spacing:-19.195845px;}
.ws1{word-spacing:-19.010880px;}
.ws7{word-spacing:-18.620640px;}
.wsc{word-spacing:-18.455880px;}
.wse{word-spacing:-17.961305px;}
.ws11{word-spacing:-17.890800px;}
.wsf{word-spacing:-17.508960px;}
.ws14{word-spacing:-17.322960px;}
.ws15{word-spacing:-17.142960px;}
.ws12{word-spacing:-16.960560px;}
.ws4{word-spacing:-16.416000px;}
.ws3{word-spacing:-14.650800px;}
.wsb{word-spacing:-14.647524px;}
.ws8{word-spacing:-11.116800px;}
.ws13{word-spacing:-2.952960px;}
.ws10{word-spacing:0.000000px;}
._f{margin-left:-15.958511px;}
._18{margin-left:-14.551200px;}
._9{margin-left:-12.666642px;}
._2e{margin-left:-11.422920px;}
._30{margin-left:-6.824280px;}
._2b{margin-left:-5.540040px;}
._8{margin-left:-4.411149px;}
._3{margin-left:-3.368760px;}
._2{margin-left:-1.722240px;}
._0{width:1.620360px;}
._1{width:3.264840px;}
._d{width:4.903252px;}
._2d{width:6.024908px;}
._38{width:7.123200px;}
._e{width:8.142786px;}
._a{width:9.619382px;}
._7{width:11.200605px;}
._6{width:12.814893px;}
._19{width:14.333760px;}
._22{width:15.486882px;}
._5{width:17.385235px;}
._2c{width:19.355160px;}
._4{width:20.460167px;}
._b{width:22.441504px;}
._c{width:23.502687px;}
._1c{width:24.598607px;}
._12{width:25.863480px;}
._11{width:27.216000px;}
._1a{width:29.249280px;}
._1b{width:30.548160px;}
._23{width:32.065539px;}
._24{width:33.603840px;}
._13{width:34.772351px;}
._10{width:36.642360px;}
._2f{width:38.204280px;}
._33{width:39.501360px;}
._35{width:40.792440px;}
._2a{width:42.274080px;}
._1e{width:44.655120px;}
._1d{width:46.537920px;}
._27{width:48.245760px;}
._15{width:49.749120px;}
._14{width:52.172640px;}
._28{width:54.382560px;}
._29{width:56.587629px;}
._32{width:57.601680px;}
._37{width:59.512320px;}
._36{width:65.525760px;}
._31{width:67.323360px;}
._17{width:68.764560px;}
._16{width:70.544160px;}
._25{width:75.906720px;}
._26{width:77.001120px;}
._3a{width:83.734560px;}
._39{width:85.375680px;}
._3b{width:98.792640px;}
._34{width:103.448589px;}
._40{width:104.730651px;}
._3e{width:112.492800px;}
._3d{width:113.952480px;}
._3f{width:116.187720px;}
._41{width:138.539160px;}
._42{width:139.979520px;}
._3c{width:153.344520px;}
._21{width:154.994280px;}
._1f{width:190.248600px;}
._20{width:197.745600px;}
._43{width:892.751641px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs6{font-size:24.480000px;}
.fsf{font-size:36.000000px;}
.fs8{font-size:57.600000px;}
.fsa{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:75.893905px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fse{font-size:90.720000px;}
.fsc{font-size:93.600000px;}
.fsd{font-size:95.626320px;}
.fs7{font-size:96.480000px;}
.fs9{font-size:101.697833px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1c{bottom:1.425000px;}
.y12{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y10{bottom:20.160000px;}
.y19{bottom:29.865000px;}
.y5{bottom:33.120000px;}
.y1{bottom:51.120000px;}
.y18{bottom:57.585000px;}
.y17{bottom:67.305000px;}
.y36{bottom:77.796000px;}
.y16{bottom:89.295000px;}
.y15{bottom:99.015000px;}
.y14{bottom:121.335000px;}
.y56{bottom:121.356000px;}
.y72{bottom:130.716000px;}
.y33{bottom:144.036000px;}
.y55{bottom:155.190000px;}
.y71{bottom:164.550000px;}
.y32{bottom:177.870000px;}
.y54{bottom:189.030000px;}
.y70{bottom:198.390000px;}
.y31{bottom:211.755000px;}
.y53{bottom:222.555000px;}
.y6f{bottom:231.915000px;}
.y30{bottom:245.235000px;}
.y52{bottom:256.395000px;}
.y6e{bottom:265.755000px;}
.y2f{bottom:279.075000px;}
.y51{bottom:290.235000px;}
.y6d{bottom:299.595000px;}
.y2e{bottom:312.915000px;}
.y50{bottom:323.715000px;}
.y6c{bottom:333.105000px;}
.y2d{bottom:346.425000px;}
.y4f{bottom:357.585000px;}
.y6b{bottom:366.945000px;}
.y2c{bottom:380.265000px;}
.y74{bottom:389.625000px;}
.y4e{bottom:391.425000px;}
.y6a{bottom:400.785000px;}
.y2b{bottom:414.105000px;}
.y4d{bottom:424.905000px;}
.y69{bottom:434.265000px;}
.y2a{bottom:447.585000px;}
.y4c{bottom:458.790000px;}
.y68{bottom:468.150000px;}
.y29{bottom:481.470000px;}
.y4b{bottom:492.630000px;}
.y67{bottom:501.990000px;}
.y28{bottom:515.310000px;}
.y4a{bottom:526.110000px;}
.y66{bottom:535.470000px;}
.y27{bottom:548.790000px;}
.y49{bottom:559.950000px;}
.y65{bottom:569.310000px;}
.y26{bottom:580.860000px;}
.y48{bottom:593.820000px;}
.y64{bottom:603.180000px;}
.y25{bottom:615.060000px;}
.y47{bottom:627.300000px;}
.y63{bottom:636.660000px;}
.y24{bottom:645.300000px;}
.y46{bottom:661.140000px;}
.y62{bottom:670.500000px;}
.y23{bottom:674.820000px;}
.y45{bottom:694.980000px;}
.y61{bottom:704.370000px;}
.y22{bottom:704.730000px;}
.y44{bottom:728.490000px;}
.y21{bottom:734.610000px;}
.y60{bottom:737.850000px;}
.y43{bottom:762.330000px;}
.y20{bottom:764.490000px;}
.y5f{bottom:771.690000px;}
.y1f{bottom:794.370000px;}
.y42{bottom:796.170000px;}
.y5e{bottom:805.530000px;}
.y1e{bottom:824.250000px;}
.y73{bottom:828.255000px;}
.y41{bottom:830.055000px;}
.y5d{bottom:839.055000px;}
.y1d{bottom:854.175000px;}
.y40{bottom:863.535000px;}
.y1b{bottom:872.190000px;}
.y5c{bottom:879.015000px;}
.y13{bottom:879.390000px;}
.y1a{bottom:883.190140px;}
.y3f{bottom:897.375000px;}
.y5b{bottom:912.855000px;}
.y3e{bottom:931.215000px;}
.y5a{bottom:952.485000px;}
.y3d{bottom:964.725000px;}
.y59{bottom:986.325000px;}
.y3c{bottom:998.565000px;}
.y58{bottom:1026.285000px;}
.y11{bottom:1029.165000px;}
.y3b{bottom:1032.405000px;}
.yf{bottom:1035.645000px;}
.y57{bottom:1059.765000px;}
.y3a{bottom:1065.885000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y39{bottom:1099.770000px;}
.y2{bottom:1106.250000px;}
.y7{bottom:1128.570000px;}
.y38{bottom:1133.610000px;}
.y4{bottom:1156.650000px;}
.y37{bottom:1167.090000px;}
.y35{bottom:1187.250000px;}
.y34{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h1a{height:7.185000px;}
.hd{height:13.857187px;}
.h1b{height:18.120938px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1f{height:30.480469px;}
.h14{height:39.375000px;}
.he{height:41.070000px;}
.h5{height:52.950000px;}
.h17{height:55.586356px;}
.h9{height:56.084062px;}
.h16{height:59.328281px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h1d{height:62.015625px;}
.h18{height:63.984375px;}
.h1e{height:66.445312px;}
.h1c{height:70.038809px;}
.h6{height:70.714687px;}
.h19{height:72.562500px;}
.h21{height:73.645312px;}
.h15{height:74.485717px;}
.hf{height:74.882812px;}
.h13{height:78.255000px;}
.h4{height:79.925027px;}
.h20{height:93.245864px;}
.h3{height:103.350000px;}
.h12{height:149.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x12{left:122.095500px;}
.x1e{left:123.516000px;}
.x1f{left:150.555000px;}
.x25{left:162.075000px;}
.x4{left:168.930000px;}
.x13{left:198.775500px;}
.x6{left:208.860000px;}
.x18{left:211.780500px;}
.x24{left:226.476000px;}
.x23{left:251.715000px;}
.x16{left:303.250500px;}
.x14{left:306.490500px;}
.x17{left:308.650500px;}
.x15{left:311.890500px;}
.x1b{left:325.030998px;}
.x11{left:335.650500px;}
.x19{left:367.330500px;}
.xa{left:445.860000px;}
.x1a{left:459.520500px;}
.x1d{left:473.580000px;}
.x21{left:489.090000px;}
.x22{left:516.090000px;}
.x20{left:527.610000px;}
.x7{left:722.445000px;}
.x1{left:749.445000px;}
@media print{
.v4{vertical-align:-34.560000pt;}
.ve{vertical-align:-10.240000pt;}
.vc{vertical-align:-8.960000pt;}
.v1{vertical-align:-6.400000pt;}
.v5{vertical-align:-5.120000pt;}
.va{vertical-align:-4.047675pt;}
.v7{vertical-align:-2.698450pt;}
.v10{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.280000pt;}
.v8{vertical-align:2.698450pt;}
.vb{vertical-align:4.047675pt;}
.v6{vertical-align:5.120000pt;}
.v2{vertical-align:6.400000pt;}
.vd{vertical-align:8.960000pt;}
.vf{vertical-align:10.240000pt;}
.v3{vertical-align:34.560000pt;}
.ls2f{letter-spacing:-1.536000pt;}
.ls3b{letter-spacing:-1.445333pt;}
.ls2d{letter-spacing:-0.487467pt;}
.ls1b{letter-spacing:-0.439622pt;}
.ls2b{letter-spacing:-0.429867pt;}
.ls15{letter-spacing:-0.373867pt;}
.ls30{letter-spacing:-0.325333pt;}
.ls1a{letter-spacing:-0.214752pt;}
.ls1d{letter-spacing:-0.203733pt;}
.ls2e{letter-spacing:-0.165333pt;}
.ls31{letter-spacing:-0.115200pt;}
.ls16{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.014841pt;}
.ls24{letter-spacing:0.025600pt;}
.ls17{letter-spacing:0.069333pt;}
.ls0{letter-spacing:0.088320pt;}
.ls19{letter-spacing:0.170133pt;}
.ls35{letter-spacing:0.176640pt;}
.lse{letter-spacing:0.186193pt;}
.ls1{letter-spacing:0.326512pt;}
.ls22{letter-spacing:0.337920pt;}
.ls23{letter-spacing:0.368640pt;}
.lsf{letter-spacing:0.388577pt;}
.ls11{letter-spacing:0.459520pt;}
.ls2c{letter-spacing:0.472229pt;}
.ls5{letter-spacing:0.484372pt;}
.ls18{letter-spacing:0.512000pt;}
.ls36{letter-spacing:0.591360pt;}
.ls29{letter-spacing:0.610560pt;}
.ls6{letter-spacing:0.657747pt;}
.ls27{letter-spacing:0.881920pt;}
.ls14{letter-spacing:0.954880pt;}
.ls37{letter-spacing:1.114880pt;}
.ls1c{letter-spacing:1.135598pt;}
.ls28{letter-spacing:1.276160pt;}
.ls10{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.349225pt;}
.ls20{letter-spacing:1.739520pt;}
.ls9{letter-spacing:2.483923pt;}
.ls13{letter-spacing:2.560000pt;}
.lsb{letter-spacing:2.596359pt;}
.ls8{letter-spacing:3.833148pt;}
.ls12{letter-spacing:3.840000pt;}
.ls3{letter-spacing:4.047675pt;}
.ls39{letter-spacing:5.120000pt;}
.lsd{letter-spacing:5.182373pt;}
.lsc{letter-spacing:5.294809pt;}
.ls32{letter-spacing:6.400000pt;}
.ls38{letter-spacing:8.756480pt;}
.ls34{letter-spacing:10.036480pt;}
.ls1f{letter-spacing:10.240000pt;}
.ls2a{letter-spacing:11.520000pt;}
.ls4{letter-spacing:12.143025pt;}
.ls26{letter-spacing:12.800000pt;}
.ls33{letter-spacing:14.080000pt;}
.ls7{letter-spacing:20.023848pt;}
.ls3a{letter-spacing:27.502080pt;}
.ls1e{letter-spacing:27.512747pt;}
.ls25{letter-spacing:36.462080pt;}
.ls21{letter-spacing:49.716480pt;}
.ws16{word-spacing:-80.640000pt;}
.ws2{word-spacing:-74.240000pt;}
.wsa{word-spacing:-53.760000pt;}
.ws0{word-spacing:-20.933013pt;}
.ws5{word-spacing:-17.709973pt;}
.ws6{word-spacing:-17.539840pt;}
.ws9{word-spacing:-17.446828pt;}
.wsd{word-spacing:-17.062974pt;}
.ws1{word-spacing:-16.898560pt;}
.ws7{word-spacing:-16.551680pt;}
.wsc{word-spacing:-16.405226pt;}
.wse{word-spacing:-15.965604pt;}
.ws11{word-spacing:-15.902933pt;}
.wsf{word-spacing:-15.563520pt;}
.ws14{word-spacing:-15.398187pt;}
.ws15{word-spacing:-15.238187pt;}
.ws12{word-spacing:-15.076053pt;}
.ws4{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsb{word-spacing:-13.020021pt;}
.ws8{word-spacing:-9.881600pt;}
.ws13{word-spacing:-2.624853pt;}
.ws10{word-spacing:0.000000pt;}
._f{margin-left:-14.185343pt;}
._18{margin-left:-12.934400pt;}
._9{margin-left:-11.259238pt;}
._2e{margin-left:-10.153707pt;}
._30{margin-left:-6.066027pt;}
._2b{margin-left:-4.924480pt;}
._8{margin-left:-3.921022pt;}
._3{margin-left:-2.994453pt;}
._2{margin-left:-1.530880pt;}
._0{width:1.440320pt;}
._1{width:2.902080pt;}
._d{width:4.358446pt;}
._2d{width:5.355474pt;}
._38{width:6.331733pt;}
._e{width:7.238032pt;}
._a{width:8.550562pt;}
._7{width:9.956093pt;}
._6{width:11.391016pt;}
._19{width:12.741120pt;}
._22{width:13.766118pt;}
._5{width:15.453542pt;}
._2c{width:17.204587pt;}
._4{width:18.186815pt;}
._b{width:19.948003pt;}
._c{width:20.891278pt;}
._1c{width:21.865428pt;}
._12{width:22.989760pt;}
._11{width:24.192000pt;}
._1a{width:25.999360pt;}
._1b{width:27.153920pt;}
._23{width:28.502701pt;}
._24{width:29.870080pt;}
._13{width:30.908756pt;}
._10{width:32.570987pt;}
._2f{width:33.959360pt;}
._33{width:35.112320pt;}
._35{width:36.259947pt;}
._2a{width:37.576960pt;}
._1e{width:39.693440pt;}
._1d{width:41.367040pt;}
._27{width:42.885120pt;}
._15{width:44.221440pt;}
._14{width:46.375680pt;}
._28{width:48.340053pt;}
._29{width:50.300115pt;}
._32{width:51.201493pt;}
._37{width:52.899840pt;}
._36{width:58.245120pt;}
._31{width:59.842987pt;}
._17{width:61.124053pt;}
._16{width:62.705920pt;}
._25{width:67.472640pt;}
._26{width:68.445440pt;}
._3a{width:74.430720pt;}
._39{width:75.889493pt;}
._3b{width:87.815680pt;}
._34{width:91.954302pt;}
._40{width:93.093912pt;}
._3e{width:99.993600pt;}
._3d{width:101.291093pt;}
._3f{width:103.277973pt;}
._41{width:123.145920pt;}
._42{width:124.426240pt;}
._3c{width:136.306240pt;}
._21{width:137.772693pt;}
._1f{width:169.109867pt;}
._20{width:175.773867pt;}
._43{width:793.557014pt;}
.fs4{font-size:16.640000pt;}
.fs6{font-size:21.760000pt;}
.fsf{font-size:32.000000pt;}
.fs8{font-size:51.200000pt;}
.fsa{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:67.461249pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fse{font-size:80.640000pt;}
.fsc{font-size:83.200000pt;}
.fsd{font-size:85.001174pt;}
.fs7{font-size:85.760000pt;}
.fs9{font-size:90.398073pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1c{bottom:1.266667pt;}
.y12{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y10{bottom:17.920000pt;}
.y19{bottom:26.546667pt;}
.y5{bottom:29.440000pt;}
.y1{bottom:45.440000pt;}
.y18{bottom:51.186667pt;}
.y17{bottom:59.826667pt;}
.y36{bottom:69.152000pt;}
.y16{bottom:79.373333pt;}
.y15{bottom:88.013333pt;}
.y14{bottom:107.853333pt;}
.y56{bottom:107.872000pt;}
.y72{bottom:116.192000pt;}
.y33{bottom:128.032000pt;}
.y55{bottom:137.946667pt;}
.y71{bottom:146.266667pt;}
.y32{bottom:158.106667pt;}
.y54{bottom:168.026667pt;}
.y70{bottom:176.346667pt;}
.y31{bottom:188.226667pt;}
.y53{bottom:197.826667pt;}
.y6f{bottom:206.146667pt;}
.y30{bottom:217.986667pt;}
.y52{bottom:227.906667pt;}
.y6e{bottom:236.226667pt;}
.y2f{bottom:248.066667pt;}
.y51{bottom:257.986667pt;}
.y6d{bottom:266.306667pt;}
.y2e{bottom:278.146667pt;}
.y50{bottom:287.746667pt;}
.y6c{bottom:296.093333pt;}
.y2d{bottom:307.933333pt;}
.y4f{bottom:317.853333pt;}
.y6b{bottom:326.173333pt;}
.y2c{bottom:338.013333pt;}
.y74{bottom:346.333333pt;}
.y4e{bottom:347.933333pt;}
.y6a{bottom:356.253333pt;}
.y2b{bottom:368.093333pt;}
.y4d{bottom:377.693333pt;}
.y69{bottom:386.013333pt;}
.y2a{bottom:397.853333pt;}
.y4c{bottom:407.813333pt;}
.y68{bottom:416.133333pt;}
.y29{bottom:427.973333pt;}
.y4b{bottom:437.893333pt;}
.y67{bottom:446.213333pt;}
.y28{bottom:458.053333pt;}
.y4a{bottom:467.653333pt;}
.y66{bottom:475.973333pt;}
.y27{bottom:487.813333pt;}
.y49{bottom:497.733333pt;}
.y65{bottom:506.053333pt;}
.y26{bottom:516.320000pt;}
.y48{bottom:527.840000pt;}
.y64{bottom:536.160000pt;}
.y25{bottom:546.720000pt;}
.y47{bottom:557.600000pt;}
.y63{bottom:565.920000pt;}
.y24{bottom:573.600000pt;}
.y46{bottom:587.680000pt;}
.y62{bottom:596.000000pt;}
.y23{bottom:599.840000pt;}
.y45{bottom:617.760000pt;}
.y61{bottom:626.106667pt;}
.y22{bottom:626.426667pt;}
.y44{bottom:647.546667pt;}
.y21{bottom:652.986667pt;}
.y60{bottom:655.866667pt;}
.y43{bottom:677.626667pt;}
.y20{bottom:679.546667pt;}
.y5f{bottom:685.946667pt;}
.y1f{bottom:706.106667pt;}
.y42{bottom:707.706667pt;}
.y5e{bottom:716.026667pt;}
.y1e{bottom:732.666667pt;}
.y73{bottom:736.226667pt;}
.y41{bottom:737.826667pt;}
.y5d{bottom:745.826667pt;}
.y1d{bottom:759.266667pt;}
.y40{bottom:767.586667pt;}
.y1b{bottom:775.280000pt;}
.y5c{bottom:781.346667pt;}
.y13{bottom:781.680000pt;}
.y1a{bottom:785.057902pt;}
.y3f{bottom:797.666667pt;}
.y5b{bottom:811.426667pt;}
.y3e{bottom:827.746667pt;}
.y5a{bottom:846.653333pt;}
.y3d{bottom:857.533333pt;}
.y59{bottom:876.733333pt;}
.y3c{bottom:887.613333pt;}
.y58{bottom:912.253333pt;}
.y11{bottom:914.813333pt;}
.y3b{bottom:917.693333pt;}
.yf{bottom:920.573333pt;}
.y57{bottom:942.013333pt;}
.y3a{bottom:947.453333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y39{bottom:977.573333pt;}
.y2{bottom:983.333333pt;}
.y7{bottom:1003.173333pt;}
.y38{bottom:1007.653333pt;}
.y4{bottom:1028.133333pt;}
.y37{bottom:1037.413333pt;}
.y35{bottom:1055.333333pt;}
.y34{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h1a{height:6.386667pt;}
.hd{height:12.317500pt;}
.h1b{height:16.107500pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1f{height:27.093750pt;}
.h14{height:35.000000pt;}
.he{height:36.506667pt;}
.h5{height:47.066667pt;}
.h17{height:49.410094pt;}
.h9{height:49.852500pt;}
.h16{height:52.736250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h1d{height:55.125000pt;}
.h18{height:56.875000pt;}
.h1e{height:59.062500pt;}
.h1c{height:62.256719pt;}
.h6{height:62.857500pt;}
.h19{height:64.500000pt;}
.h21{height:65.462500pt;}
.h15{height:66.209526pt;}
.hf{height:66.562500pt;}
.h13{height:69.560000pt;}
.h4{height:71.044468pt;}
.h20{height:82.885213pt;}
.h3{height:91.866667pt;}
.h12{height:133.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x12{left:108.529333pt;}
.x1e{left:109.792000pt;}
.x1f{left:133.826667pt;}
.x25{left:144.066667pt;}
.x4{left:150.160000pt;}
.x13{left:176.689333pt;}
.x6{left:185.653333pt;}
.x18{left:188.249333pt;}
.x24{left:201.312000pt;}
.x23{left:223.746667pt;}
.x16{left:269.556000pt;}
.x14{left:272.436000pt;}
.x17{left:274.356000pt;}
.x15{left:277.236000pt;}
.x1b{left:288.916443pt;}
.x11{left:298.356000pt;}
.x19{left:326.516000pt;}
.xa{left:396.320000pt;}
.x1a{left:408.462667pt;}
.x1d{left:420.960000pt;}
.x21{left:434.746667pt;}
.x22{left:458.746667pt;}
.x20{left:468.986667pt;}
.x7{left:642.173333pt;}
.x1{left:666.173333pt;}
}




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