
    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_6bc1750cceda604d22172d36.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_7cdf04e1c434a7112bde852c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_efc24ce50ab64877048a10f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8af405c3b0087fa5221759d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_b0658397fc7c31c52135a654.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_7261d462437f8e18da1272d0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0b55758f3d9448e580935d67.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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;}
.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;}
}
.ws0{word-spacing:-63.071100px;}
.ws7{word-spacing:-55.944000px;}
.ws2f{word-spacing:-38.872800px;}
.ws8f{word-spacing:-38.857800px;}
.ws6a{word-spacing:-38.834400px;}
.ws43{word-spacing:-38.659200px;}
.wsa0{word-spacing:-38.656800px;}
.ws6d{word-spacing:-38.655600px;}
.ws14{word-spacing:-38.654400px;}
.ws4d{word-spacing:-38.653200px;}
.ws59{word-spacing:-38.651400px;}
.wsac{word-spacing:-38.648100px;}
.ws7e{word-spacing:-38.646000px;}
.ws48{word-spacing:-38.642400px;}
.ws6{word-spacing:-38.641200px;}
.ws61{word-spacing:-38.637600px;}
.ws3c{word-spacing:-38.634600px;}
.ws56{word-spacing:-38.633700px;}
.ws7a{word-spacing:-38.442600px;}
.wsa6{word-spacing:-38.442000px;}
.ws93{word-spacing:-38.439000px;}
.ws1a{word-spacing:-38.435400px;}
.ws8c{word-spacing:-38.434800px;}
.wsa3{word-spacing:-38.434500px;}
.ws96{word-spacing:-38.433000px;}
.ws5f{word-spacing:-38.432700px;}
.ws66{word-spacing:-38.431200px;}
.ws33{word-spacing:-38.430000px;}
.ws50{word-spacing:-38.426400px;}
.ws88{word-spacing:-38.425800px;}
.ws5c{word-spacing:-38.424600px;}
.ws64{word-spacing:-38.424000px;}
.ws76{word-spacing:-38.422200px;}
.ws5{word-spacing:-38.367900px;}
.ws90{word-spacing:-38.353800px;}
.ws62{word-spacing:-38.353500px;}
.ws52{word-spacing:-38.351100px;}
.ws3{word-spacing:-38.157300px;}
.ws21{word-spacing:-38.156400px;}
.wsd{word-spacing:-38.154600px;}
.ws27{word-spacing:-38.147400px;}
.ws5b{word-spacing:-38.140200px;}
.ws71{word-spacing:-38.139600px;}
.wsa9{word-spacing:-38.079900px;}
.wsaf{word-spacing:-37.944000px;}
.wsa5{word-spacing:-37.941900px;}
.ws97{word-spacing:-37.938600px;}
.ws1c{word-spacing:-37.935000px;}
.ws5e{word-spacing:-37.925400px;}
.ws9f{word-spacing:-37.922700px;}
.ws9b{word-spacing:-37.916400px;}
.wsb0{word-spacing:-37.856100px;}
.ws4{word-spacing:-37.851300px;}
.ws9c{word-spacing:-37.729500px;}
.wse{word-spacing:-37.720800px;}
.ws24{word-spacing:-37.713600px;}
.ws55{word-spacing:-37.711200px;}
.ws22{word-spacing:-37.431000px;}
.wsa4{word-spacing:-37.221300px;}
.ws46{word-spacing:-37.218000px;}
.ws73{word-spacing:-37.210800px;}
.ws68{word-spacing:-37.209600px;}
.ws23{word-spacing:-36.491400px;}
.wsa{word-spacing:-36.487800px;}
.ws32{word-spacing:-36.006000px;}
.ws15{word-spacing:-35.974200px;}
.ws2b{word-spacing:-35.776800px;}
.ws82{word-spacing:-35.560800px;}
.wsb{word-spacing:-35.055300px;}
.ws7d{word-spacing:-35.049600px;}
.ws20{word-spacing:-35.029800px;}
.ws74{word-spacing:-34.335000px;}
.wsc{word-spacing:-34.105800px;}
.ws4a{word-spacing:-33.616800px;}
.ws2{word-spacing:-33.547800px;}
.ws44{word-spacing:-33.391800px;}
.ws34{word-spacing:-33.109200px;}
.ws87{word-spacing:-32.891400px;}
.ws8{word-spacing:-32.680800px;}
.ws31{word-spacing:-31.960800px;}
.ws3b{word-spacing:-31.462200px;}
.ws2d{word-spacing:-31.455000px;}
.ws6b{word-spacing:-30.960000px;}
.ws75{word-spacing:-30.954600px;}
.ws4e{word-spacing:-30.940200px;}
.ws6f{word-spacing:-29.800800px;}
.ws60{word-spacing:-29.791200px;}
.ws18{word-spacing:-29.514600px;}
.ws1e{word-spacing:-29.299200px;}
.ws3d{word-spacing:-29.293200px;}
.ws91{word-spacing:-29.289300px;}
.ws26{word-spacing:-29.080800px;}
.ws42{word-spacing:-28.783800px;}
.ws92{word-spacing:-28.578000px;}
.ws5a{word-spacing:-28.577400px;}
.ws39{word-spacing:-28.570800px;}
.ws4c{word-spacing:-28.569600px;}
.ws63{word-spacing:-27.860400px;}
.ws7c{word-spacing:-27.851400px;}
.ws79{word-spacing:-27.349200px;}
.ws16{word-spacing:-26.920800px;}
.ws84{word-spacing:-26.914800px;}
.wsa2{word-spacing:-26.418600px;}
.ws6e{word-spacing:-26.203200px;}
.ws81{word-spacing:-26.200800px;}
.ws2a{word-spacing:-25.914600px;}
.wsa1{word-spacing:-25.696800px;}
.ws57{word-spacing:-25.695900px;}
.ws35{word-spacing:-25.691400px;}
.ws2e{word-spacing:-25.690800px;}
.ws80{word-spacing:-25.686000px;}
.ws25{word-spacing:-25.194600px;}
.ws9{word-spacing:-24.982800px;}
.ws6c{word-spacing:-24.977400px;}
.ws77{word-spacing:-24.757800px;}
.ws85{word-spacing:-24.480000px;}
.ws41{word-spacing:-24.246000px;}
.ws7b{word-spacing:-24.046800px;}
.ws36{word-spacing:-23.536800px;}
.ws95{word-spacing:-22.246800px;}
.ws94{word-spacing:-22.087200px;}
.ws8e{word-spacing:-21.882600px;}
.ws11{word-spacing:-21.379200px;}
.ws1b{word-spacing:-21.160800px;}
.ws72{word-spacing:-20.860200px;}
.ws53{word-spacing:-20.655600px;}
.ws58{word-spacing:-20.648400px;}
.ws47{word-spacing:-19.902600px;}
.ws4f{word-spacing:-19.440000px;}
.ws29{word-spacing:-19.213200px;}
.ws4b{word-spacing:-17.775000px;}
.ws65{word-spacing:-17.544600px;}
.wsf{word-spacing:-17.274600px;}
.ws86{word-spacing:-17.053200px;}
.ws54{word-spacing:-17.052000px;}
.ws98{word-spacing:-16.838700px;}
.wsab{word-spacing:-16.557300px;}
.wsaa{word-spacing:-16.486800px;}
.ws45{word-spacing:-16.336800px;}
.ws1f{word-spacing:-15.601800px;}
.ws17{word-spacing:-15.087600px;}
.ws40{word-spacing:-14.679000px;}
.ws9d{word-spacing:-14.170800px;}
.ws1d{word-spacing:-13.465500px;}
.ws9e{word-spacing:-13.452300px;}
.ws12{word-spacing:-12.726000px;}
.ws5d{word-spacing:-12.013200px;}
.ws13{word-spacing:-11.978400px;}
.ws3e{word-spacing:-11.800800px;}
.ws38{word-spacing:-11.282400px;}
.ws70{word-spacing:-11.278200px;}
.wsa8{word-spacing:-10.077300px;}
.ws8a{word-spacing:-9.853200px;}
.wsa7{word-spacing:-9.849000px;}
.ws8d{word-spacing:-9.646800px;}
.ws30{word-spacing:-9.128100px;}
.wsad{word-spacing:-8.910300px;}
.wsae{word-spacing:-8.643300px;}
.ws19{word-spacing:-7.914600px;}
.ws3f{word-spacing:-7.683600px;}
.ws78{word-spacing:-4.302600px;}
.ws8b{word-spacing:3.114000px;}
.ws3a{word-spacing:3.609000px;}
.ws7f{word-spacing:3.824100px;}
.ws83{word-spacing:3.825000px;}
.ws49{word-spacing:7.639200px;}
.ws37{word-spacing:9.799200px;}
.ws9a{word-spacing:11.750100px;}
.ws10{word-spacing:11.965500px;}
.ws99{word-spacing:12.473700px;}
.ws2c{word-spacing:12.971400px;}
.ws69{word-spacing:18.003600px;}
.ws67{word-spacing:35.299800px;}
.ws51{word-spacing:106.056000px;}
.ws28{word-spacing:107.713200px;}
.ws89{word-spacing:111.832800px;}
.ws1{word-spacing:1871.357400px;}
._3{margin-left:-1.476900px;}
._0{width:1.148400px;}
._1{width:18.625200px;}
._6{width:20.579400px;}
._10{width:21.598500px;}
._7{width:22.605300px;}
._20{width:23.805600px;}
._2{width:25.054800px;}
._1d{width:26.433600px;}
._13{width:27.726000px;}
._14{width:28.788600px;}
._11{width:30.318000px;}
._4{width:32.118000px;}
._5{width:33.118800px;}
._1b{width:34.136400px;}
._c{width:35.574000px;}
._22{width:36.731700px;}
._18{width:37.806000px;}
._a{width:39.888600px;}
._12{width:41.943600px;}
._2b{width:43.048800px;}
._d{width:45.854400px;}
._1a{width:48.142200px;}
._1f{width:49.570800px;}
._28{width:53.556600px;}
._9{width:60.198000px;}
._1c{width:62.125200px;}
._21{width:65.158800px;}
._b{width:69.377100px;}
._19{width:70.392000px;}
._24{width:75.746400px;}
._f{width:79.854000px;}
._27{width:85.222500px;}
._23{width:92.670000px;}
._1e{width:108.789000px;}
._2c{width:126.000000px;}
._2a{width:162.000000px;}
._17{width:165.532800px;}
._29{width:169.693200px;}
._16{width:252.510000px;}
._8{width:434.790000px;}
._e{width:722.478000px;}
._25{width:955.614000px;}
._15{width:1111.024800px;}
._26{width:1361.246700px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y33{bottom:105.555000px;}
.y89{bottom:114.555000px;}
.y32{bottom:126.255000px;}
.y88{bottom:135.255000px;}
.y61{bottom:135.975000px;}
.y31{bottom:146.955000px;}
.y87{bottom:155.955000px;}
.y60{bottom:156.675000px;}
.y30{bottom:167.655000px;}
.y86{bottom:176.655000px;}
.y5f{bottom:177.375000px;}
.y2f{bottom:188.355000px;}
.y85{bottom:197.355000px;}
.y5e{bottom:198.075000px;}
.y2e{bottom:209.055000px;}
.y84{bottom:218.055000px;}
.y5d{bottom:218.775000px;}
.y2d{bottom:229.755000px;}
.y83{bottom:238.755000px;}
.y5c{bottom:239.295000px;}
.y2c{bottom:250.455000px;}
.y82{bottom:259.455000px;}
.y5b{bottom:259.996500px;}
.y2b{bottom:271.155000px;}
.y81{bottom:280.155000px;}
.y5a{bottom:280.696500px;}
.y2a{bottom:291.855000px;}
.y80{bottom:300.855000px;}
.y59{bottom:301.396500px;}
.y29{bottom:312.555000px;}
.y7f{bottom:321.555000px;}
.y58{bottom:322.096500px;}
.y28{bottom:333.255000px;}
.y57{bottom:342.795000px;}
.y27{bottom:353.955000px;}
.y7e{bottom:363.315000px;}
.y56{bottom:363.496500px;}
.y26{bottom:374.655000px;}
.y55{bottom:384.196500px;}
.y25{bottom:395.355000px;}
.y54{bottom:404.896500px;}
.y24{bottom:416.055000px;}
.y53{bottom:425.596500px;}
.y23{bottom:436.755000px;}
.y52{bottom:446.295000px;}
.y22{bottom:457.455000px;}
.y51{bottom:466.996500px;}
.y21{bottom:478.155000px;}
.y7d{bottom:487.696500px;}
.y20{bottom:498.855000px;}
.y7c{bottom:508.396500px;}
.y50{bottom:508.755000px;}
.y1f{bottom:519.555000px;}
.y7b{bottom:529.096500px;}
.y4f{bottom:529.455000px;}
.y1e{bottom:540.255000px;}
.y7a{bottom:549.796500px;}
.y4e{bottom:550.155000px;}
.y1d{bottom:560.955000px;}
.y79{bottom:570.496500px;}
.y4d{bottom:570.855000px;}
.y1c{bottom:581.655000px;}
.y9d{bottom:591.015000px;}
.y78{bottom:591.195000px;}
.y4c{bottom:591.555000px;}
.y1b{bottom:602.355000px;}
.y9c{bottom:611.715000px;}
.y77{bottom:611.896500px;}
.y4b{bottom:612.255000px;}
.y1a{bottom:623.055000px;}
.y9b{bottom:632.415000px;}
.y76{bottom:632.596500px;}
.y4a{bottom:632.955000px;}
.y19{bottom:643.755000px;}
.y9a{bottom:653.115000px;}
.y75{bottom:653.295000px;}
.y49{bottom:653.655000px;}
.y18{bottom:664.455000px;}
.y99{bottom:673.815000px;}
.y74{bottom:673.996500px;}
.y48{bottom:674.355000px;}
.y17{bottom:685.155000px;}
.y98{bottom:694.515000px;}
.y73{bottom:694.695000px;}
.y47{bottom:695.055000px;}
.y16{bottom:705.855000px;}
.y97{bottom:715.215000px;}
.y72{bottom:715.396500px;}
.y46{bottom:715.755000px;}
.y15{bottom:726.555000px;}
.y96{bottom:735.915000px;}
.y71{bottom:736.096500px;}
.y45{bottom:736.455000px;}
.y14{bottom:747.255000px;}
.y95{bottom:756.615000px;}
.y70{bottom:756.795000px;}
.y44{bottom:757.155000px;}
.y13{bottom:767.955000px;}
.y94{bottom:777.315000px;}
.y6f{bottom:777.496500px;}
.y43{bottom:777.855000px;}
.y12{bottom:788.655000px;}
.y93{bottom:798.015000px;}
.y6e{bottom:798.195000px;}
.y42{bottom:798.555000px;}
.y11{bottom:809.355000px;}
.y92{bottom:818.715000px;}
.y6d{bottom:818.895000px;}
.y41{bottom:819.255000px;}
.y10{bottom:830.055000px;}
.y91{bottom:839.415000px;}
.y6c{bottom:839.596500px;}
.y40{bottom:839.955000px;}
.yf{bottom:850.755000px;}
.y90{bottom:860.115000px;}
.y6b{bottom:860.295000px;}
.y3f{bottom:860.655000px;}
.ye{bottom:871.455000px;}
.y8f{bottom:880.815000px;}
.y6a{bottom:880.995000px;}
.y3e{bottom:881.355000px;}
.yd{bottom:892.155000px;}
.y8e{bottom:901.515000px;}
.y69{bottom:901.695000px;}
.y3d{bottom:902.055000px;}
.yc{bottom:912.855000px;}
.y8d{bottom:922.215000px;}
.y68{bottom:922.395000px;}
.y3c{bottom:922.755000px;}
.yb{bottom:933.555000px;}
.y8c{bottom:942.915000px;}
.y67{bottom:943.095000px;}
.y3b{bottom:943.455000px;}
.ya{bottom:954.255000px;}
.y8b{bottom:963.615000px;}
.y66{bottom:963.795000px;}
.y3a{bottom:964.155000px;}
.y8a{bottom:984.315000px;}
.y65{bottom:984.495000px;}
.y39{bottom:984.855000px;}
.y9{bottom:996.015000px;}
.y64{bottom:1005.195000px;}
.y38{bottom:1005.555000px;}
.y63{bottom:1025.895000px;}
.y37{bottom:1026.255000px;}
.y8{bottom:1037.595000px;}
.y62{bottom:1046.595000px;}
.y36{bottom:1046.955000px;}
.y35{bottom:1067.655000px;}
.y7{bottom:1073.415000px;}
.y34{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h7{height:48.761719px;}
.h6{height:48.796875px;}
.h8{height:49.992188px;}
.h9{height:50.027344px;}
.h3{height:50.308594px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.x9{left:191.338500px;}
.x4{left:195.480000px;}
.xd{left:244.438500px;}
.x5{left:351.000000px;}
.xb{left:456.838500px;}
.x3{left:475.350000px;}
.xc{left:509.938500px;}
.x7{left:555.300000px;}
.x6{left:558.180000px;}
.xa{left:563.038500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws7{word-spacing:-49.728000pt;}
.ws2f{word-spacing:-34.553600pt;}
.ws8f{word-spacing:-34.540267pt;}
.ws6a{word-spacing:-34.519467pt;}
.ws43{word-spacing:-34.363733pt;}
.wsa0{word-spacing:-34.361600pt;}
.ws6d{word-spacing:-34.360533pt;}
.ws14{word-spacing:-34.359467pt;}
.ws4d{word-spacing:-34.358400pt;}
.ws59{word-spacing:-34.356800pt;}
.wsac{word-spacing:-34.353867pt;}
.ws7e{word-spacing:-34.352000pt;}
.ws48{word-spacing:-34.348800pt;}
.ws6{word-spacing:-34.347733pt;}
.ws61{word-spacing:-34.344533pt;}
.ws3c{word-spacing:-34.341867pt;}
.ws56{word-spacing:-34.341067pt;}
.ws7a{word-spacing:-34.171200pt;}
.wsa6{word-spacing:-34.170667pt;}
.ws93{word-spacing:-34.168000pt;}
.ws1a{word-spacing:-34.164800pt;}
.ws8c{word-spacing:-34.164267pt;}
.wsa3{word-spacing:-34.164000pt;}
.ws96{word-spacing:-34.162667pt;}
.ws5f{word-spacing:-34.162400pt;}
.ws66{word-spacing:-34.161067pt;}
.ws33{word-spacing:-34.160000pt;}
.ws50{word-spacing:-34.156800pt;}
.ws88{word-spacing:-34.156267pt;}
.ws5c{word-spacing:-34.155200pt;}
.ws64{word-spacing:-34.154667pt;}
.ws76{word-spacing:-34.153067pt;}
.ws5{word-spacing:-34.104800pt;}
.ws90{word-spacing:-34.092267pt;}
.ws62{word-spacing:-34.092000pt;}
.ws52{word-spacing:-34.089867pt;}
.ws3{word-spacing:-33.917600pt;}
.ws21{word-spacing:-33.916800pt;}
.wsd{word-spacing:-33.915200pt;}
.ws27{word-spacing:-33.908800pt;}
.ws5b{word-spacing:-33.902400pt;}
.ws71{word-spacing:-33.901867pt;}
.wsa9{word-spacing:-33.848800pt;}
.wsaf{word-spacing:-33.728000pt;}
.wsa5{word-spacing:-33.726133pt;}
.ws97{word-spacing:-33.723200pt;}
.ws1c{word-spacing:-33.720000pt;}
.ws5e{word-spacing:-33.711467pt;}
.ws9f{word-spacing:-33.709067pt;}
.ws9b{word-spacing:-33.703467pt;}
.wsb0{word-spacing:-33.649867pt;}
.ws4{word-spacing:-33.645600pt;}
.ws9c{word-spacing:-33.537333pt;}
.wse{word-spacing:-33.529600pt;}
.ws24{word-spacing:-33.523200pt;}
.ws55{word-spacing:-33.521067pt;}
.ws22{word-spacing:-33.272000pt;}
.wsa4{word-spacing:-33.085600pt;}
.ws46{word-spacing:-33.082667pt;}
.ws73{word-spacing:-33.076267pt;}
.ws68{word-spacing:-33.075200pt;}
.ws23{word-spacing:-32.436800pt;}
.wsa{word-spacing:-32.433600pt;}
.ws32{word-spacing:-32.005333pt;}
.ws15{word-spacing:-31.977067pt;}
.ws2b{word-spacing:-31.801600pt;}
.ws82{word-spacing:-31.609600pt;}
.wsb{word-spacing:-31.160267pt;}
.ws7d{word-spacing:-31.155200pt;}
.ws20{word-spacing:-31.137600pt;}
.ws74{word-spacing:-30.520000pt;}
.wsc{word-spacing:-30.316267pt;}
.ws4a{word-spacing:-29.881600pt;}
.ws2{word-spacing:-29.820267pt;}
.ws44{word-spacing:-29.681600pt;}
.ws34{word-spacing:-29.430400pt;}
.ws87{word-spacing:-29.236800pt;}
.ws8{word-spacing:-29.049600pt;}
.ws31{word-spacing:-28.409600pt;}
.ws3b{word-spacing:-27.966400pt;}
.ws2d{word-spacing:-27.960000pt;}
.ws6b{word-spacing:-27.520000pt;}
.ws75{word-spacing:-27.515200pt;}
.ws4e{word-spacing:-27.502400pt;}
.ws6f{word-spacing:-26.489600pt;}
.ws60{word-spacing:-26.481067pt;}
.ws18{word-spacing:-26.235200pt;}
.ws1e{word-spacing:-26.043733pt;}
.ws3d{word-spacing:-26.038400pt;}
.ws91{word-spacing:-26.034933pt;}
.ws26{word-spacing:-25.849600pt;}
.ws42{word-spacing:-25.585600pt;}
.ws92{word-spacing:-25.402667pt;}
.ws5a{word-spacing:-25.402133pt;}
.ws39{word-spacing:-25.396267pt;}
.ws4c{word-spacing:-25.395200pt;}
.ws63{word-spacing:-24.764800pt;}
.ws7c{word-spacing:-24.756800pt;}
.ws79{word-spacing:-24.310400pt;}
.ws16{word-spacing:-23.929600pt;}
.ws84{word-spacing:-23.924267pt;}
.wsa2{word-spacing:-23.483200pt;}
.ws6e{word-spacing:-23.291733pt;}
.ws81{word-spacing:-23.289600pt;}
.ws2a{word-spacing:-23.035200pt;}
.wsa1{word-spacing:-22.841600pt;}
.ws57{word-spacing:-22.840800pt;}
.ws35{word-spacing:-22.836800pt;}
.ws2e{word-spacing:-22.836267pt;}
.ws80{word-spacing:-22.832000pt;}
.ws25{word-spacing:-22.395200pt;}
.ws9{word-spacing:-22.206933pt;}
.ws6c{word-spacing:-22.202133pt;}
.ws77{word-spacing:-22.006933pt;}
.ws85{word-spacing:-21.760000pt;}
.ws41{word-spacing:-21.552000pt;}
.ws7b{word-spacing:-21.374933pt;}
.ws36{word-spacing:-20.921600pt;}
.ws95{word-spacing:-19.774933pt;}
.ws94{word-spacing:-19.633067pt;}
.ws8e{word-spacing:-19.451200pt;}
.ws11{word-spacing:-19.003733pt;}
.ws1b{word-spacing:-18.809600pt;}
.ws72{word-spacing:-18.542400pt;}
.ws53{word-spacing:-18.360533pt;}
.ws58{word-spacing:-18.354133pt;}
.ws47{word-spacing:-17.691200pt;}
.ws4f{word-spacing:-17.280000pt;}
.ws29{word-spacing:-17.078400pt;}
.ws4b{word-spacing:-15.800000pt;}
.ws65{word-spacing:-15.595200pt;}
.wsf{word-spacing:-15.355200pt;}
.ws86{word-spacing:-15.158400pt;}
.ws54{word-spacing:-15.157333pt;}
.ws98{word-spacing:-14.967733pt;}
.wsab{word-spacing:-14.717600pt;}
.wsaa{word-spacing:-14.654933pt;}
.ws45{word-spacing:-14.521600pt;}
.ws1f{word-spacing:-13.868267pt;}
.ws17{word-spacing:-13.411200pt;}
.ws40{word-spacing:-13.048000pt;}
.ws9d{word-spacing:-12.596267pt;}
.ws1d{word-spacing:-11.969333pt;}
.ws9e{word-spacing:-11.957600pt;}
.ws12{word-spacing:-11.312000pt;}
.ws5d{word-spacing:-10.678400pt;}
.ws13{word-spacing:-10.647467pt;}
.ws3e{word-spacing:-10.489600pt;}
.ws38{word-spacing:-10.028800pt;}
.ws70{word-spacing:-10.025067pt;}
.wsa8{word-spacing:-8.957600pt;}
.ws8a{word-spacing:-8.758400pt;}
.wsa7{word-spacing:-8.754667pt;}
.ws8d{word-spacing:-8.574933pt;}
.ws30{word-spacing:-8.113867pt;}
.wsad{word-spacing:-7.920267pt;}
.wsae{word-spacing:-7.682933pt;}
.ws19{word-spacing:-7.035200pt;}
.ws3f{word-spacing:-6.829867pt;}
.ws78{word-spacing:-3.824533pt;}
.ws8b{word-spacing:2.768000pt;}
.ws3a{word-spacing:3.208000pt;}
.ws7f{word-spacing:3.399200pt;}
.ws83{word-spacing:3.400000pt;}
.ws49{word-spacing:6.790400pt;}
.ws37{word-spacing:8.710400pt;}
.ws9a{word-spacing:10.444533pt;}
.ws10{word-spacing:10.636000pt;}
.ws99{word-spacing:11.087733pt;}
.ws2c{word-spacing:11.530133pt;}
.ws69{word-spacing:16.003200pt;}
.ws67{word-spacing:31.377600pt;}
.ws51{word-spacing:94.272000pt;}
.ws28{word-spacing:95.745067pt;}
.ws89{word-spacing:99.406933pt;}
.ws1{word-spacing:1663.428800pt;}
._3{margin-left:-1.312800pt;}
._0{width:1.020800pt;}
._1{width:16.555733pt;}
._6{width:18.292800pt;}
._10{width:19.198667pt;}
._7{width:20.093600pt;}
._20{width:21.160533pt;}
._2{width:22.270933pt;}
._1d{width:23.496533pt;}
._13{width:24.645333pt;}
._14{width:25.589867pt;}
._11{width:26.949333pt;}
._4{width:28.549333pt;}
._5{width:29.438933pt;}
._1b{width:30.343467pt;}
._c{width:31.621333pt;}
._22{width:32.650400pt;}
._18{width:33.605333pt;}
._a{width:35.456533pt;}
._12{width:37.283200pt;}
._2b{width:38.265600pt;}
._d{width:40.759467pt;}
._1a{width:42.793067pt;}
._1f{width:44.062933pt;}
._28{width:47.605867pt;}
._9{width:53.509333pt;}
._1c{width:55.222400pt;}
._21{width:57.918933pt;}
._b{width:61.668533pt;}
._19{width:62.570667pt;}
._24{width:67.330133pt;}
._f{width:70.981333pt;}
._27{width:75.753333pt;}
._23{width:82.373333pt;}
._1e{width:96.701333pt;}
._2c{width:112.000000pt;}
._2a{width:144.000000pt;}
._17{width:147.140267pt;}
._29{width:150.838400pt;}
._16{width:224.453333pt;}
._8{width:386.480000pt;}
._e{width:642.202667pt;}
._25{width:849.434667pt;}
._15{width:987.577600pt;}
._26{width:1209.997067pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y33{bottom:93.826667pt;}
.y89{bottom:101.826667pt;}
.y32{bottom:112.226667pt;}
.y88{bottom:120.226667pt;}
.y61{bottom:120.866667pt;}
.y31{bottom:130.626667pt;}
.y87{bottom:138.626667pt;}
.y60{bottom:139.266667pt;}
.y30{bottom:149.026667pt;}
.y86{bottom:157.026667pt;}
.y5f{bottom:157.666667pt;}
.y2f{bottom:167.426667pt;}
.y85{bottom:175.426667pt;}
.y5e{bottom:176.066667pt;}
.y2e{bottom:185.826667pt;}
.y84{bottom:193.826667pt;}
.y5d{bottom:194.466667pt;}
.y2d{bottom:204.226667pt;}
.y83{bottom:212.226667pt;}
.y5c{bottom:212.706667pt;}
.y2c{bottom:222.626667pt;}
.y82{bottom:230.626667pt;}
.y5b{bottom:231.108000pt;}
.y2b{bottom:241.026667pt;}
.y81{bottom:249.026667pt;}
.y5a{bottom:249.508000pt;}
.y2a{bottom:259.426667pt;}
.y80{bottom:267.426667pt;}
.y59{bottom:267.908000pt;}
.y29{bottom:277.826667pt;}
.y7f{bottom:285.826667pt;}
.y58{bottom:286.308000pt;}
.y28{bottom:296.226667pt;}
.y57{bottom:304.706667pt;}
.y27{bottom:314.626667pt;}
.y7e{bottom:322.946667pt;}
.y56{bottom:323.108000pt;}
.y26{bottom:333.026667pt;}
.y55{bottom:341.508000pt;}
.y25{bottom:351.426667pt;}
.y54{bottom:359.908000pt;}
.y24{bottom:369.826667pt;}
.y53{bottom:378.308000pt;}
.y23{bottom:388.226667pt;}
.y52{bottom:396.706667pt;}
.y22{bottom:406.626667pt;}
.y51{bottom:415.108000pt;}
.y21{bottom:425.026667pt;}
.y7d{bottom:433.508000pt;}
.y20{bottom:443.426667pt;}
.y7c{bottom:451.908000pt;}
.y50{bottom:452.226667pt;}
.y1f{bottom:461.826667pt;}
.y7b{bottom:470.308000pt;}
.y4f{bottom:470.626667pt;}
.y1e{bottom:480.226667pt;}
.y7a{bottom:488.708000pt;}
.y4e{bottom:489.026667pt;}
.y1d{bottom:498.626667pt;}
.y79{bottom:507.108000pt;}
.y4d{bottom:507.426667pt;}
.y1c{bottom:517.026667pt;}
.y9d{bottom:525.346667pt;}
.y78{bottom:525.506667pt;}
.y4c{bottom:525.826667pt;}
.y1b{bottom:535.426667pt;}
.y9c{bottom:543.746667pt;}
.y77{bottom:543.908000pt;}
.y4b{bottom:544.226667pt;}
.y1a{bottom:553.826667pt;}
.y9b{bottom:562.146667pt;}
.y76{bottom:562.308000pt;}
.y4a{bottom:562.626667pt;}
.y19{bottom:572.226667pt;}
.y9a{bottom:580.546667pt;}
.y75{bottom:580.706667pt;}
.y49{bottom:581.026667pt;}
.y18{bottom:590.626667pt;}
.y99{bottom:598.946667pt;}
.y74{bottom:599.108000pt;}
.y48{bottom:599.426667pt;}
.y17{bottom:609.026667pt;}
.y98{bottom:617.346667pt;}
.y73{bottom:617.506667pt;}
.y47{bottom:617.826667pt;}
.y16{bottom:627.426667pt;}
.y97{bottom:635.746667pt;}
.y72{bottom:635.908000pt;}
.y46{bottom:636.226667pt;}
.y15{bottom:645.826667pt;}
.y96{bottom:654.146667pt;}
.y71{bottom:654.308000pt;}
.y45{bottom:654.626667pt;}
.y14{bottom:664.226667pt;}
.y95{bottom:672.546667pt;}
.y70{bottom:672.706667pt;}
.y44{bottom:673.026667pt;}
.y13{bottom:682.626667pt;}
.y94{bottom:690.946667pt;}
.y6f{bottom:691.108000pt;}
.y43{bottom:691.426667pt;}
.y12{bottom:701.026667pt;}
.y93{bottom:709.346667pt;}
.y6e{bottom:709.506667pt;}
.y42{bottom:709.826667pt;}
.y11{bottom:719.426667pt;}
.y92{bottom:727.746667pt;}
.y6d{bottom:727.906667pt;}
.y41{bottom:728.226667pt;}
.y10{bottom:737.826667pt;}
.y91{bottom:746.146667pt;}
.y6c{bottom:746.308000pt;}
.y40{bottom:746.626667pt;}
.yf{bottom:756.226667pt;}
.y90{bottom:764.546667pt;}
.y6b{bottom:764.706667pt;}
.y3f{bottom:765.026667pt;}
.ye{bottom:774.626667pt;}
.y8f{bottom:782.946667pt;}
.y6a{bottom:783.106667pt;}
.y3e{bottom:783.426667pt;}
.yd{bottom:793.026667pt;}
.y8e{bottom:801.346667pt;}
.y69{bottom:801.506667pt;}
.y3d{bottom:801.826667pt;}
.yc{bottom:811.426667pt;}
.y8d{bottom:819.746667pt;}
.y68{bottom:819.906667pt;}
.y3c{bottom:820.226667pt;}
.yb{bottom:829.826667pt;}
.y8c{bottom:838.146667pt;}
.y67{bottom:838.306667pt;}
.y3b{bottom:838.626667pt;}
.ya{bottom:848.226667pt;}
.y8b{bottom:856.546667pt;}
.y66{bottom:856.706667pt;}
.y3a{bottom:857.026667pt;}
.y8a{bottom:874.946667pt;}
.y65{bottom:875.106667pt;}
.y39{bottom:875.426667pt;}
.y9{bottom:885.346667pt;}
.y64{bottom:893.506667pt;}
.y38{bottom:893.826667pt;}
.y63{bottom:911.906667pt;}
.y37{bottom:912.226667pt;}
.y8{bottom:922.306667pt;}
.y62{bottom:930.306667pt;}
.y36{bottom:930.626667pt;}
.y35{bottom:949.026667pt;}
.y7{bottom:954.146667pt;}
.y34{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h7{height:43.343750pt;}
.h6{height:43.375000pt;}
.h8{height:44.437500pt;}
.h9{height:44.468750pt;}
.h3{height:44.718750pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.x9{left:170.078667pt;}
.x4{left:173.760000pt;}
.xd{left:217.278667pt;}
.x5{left:312.000000pt;}
.xb{left:406.078667pt;}
.x3{left:422.533333pt;}
.xc{left:453.278667pt;}
.x7{left:493.600000pt;}
.x6{left:496.160000pt;}
.xa{left:500.478667pt;}
}




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