
    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_0ba7fd96e78bc47a4c3215c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.067000;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_7182a74cbc712c272f8d54e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.212000;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_dbaca491e973089b0b67bb48.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.690918;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d3846c918c1c800b3e27f1c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.212000;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_633192a904817c2644c20dbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.212000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d174745b8d96e293166a3fd1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_d5743049d174bfc69330f7d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.212000;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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);}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.ls2a{letter-spacing:-1.668000px;}
.ls1f{letter-spacing:-1.182000px;}
.lsf{letter-spacing:-0.636000px;}
.ls18{letter-spacing:-0.564600px;}
.ls21{letter-spacing:-0.478200px;}
.ls1d{letter-spacing:-0.466800px;}
.ls26{letter-spacing:-0.454800px;}
.ls22{letter-spacing:-0.443400px;}
.ls2b{letter-spacing:-0.230400px;}
.ls2{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.057600px;}
.ls1c{letter-spacing:0.078000px;}
.ls1b{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.259200px;}
.ls28{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.377280px;}
.ls13{letter-spacing:0.468000px;}
.ls25{letter-spacing:0.636000px;}
.ls14{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.684000px;}
.ls23{letter-spacing:0.984000px;}
.ls12{letter-spacing:2.571840px;}
.ls29{letter-spacing:5.451840px;}
.ls2f{letter-spacing:8.331840px;}
.lsd{letter-spacing:51.269760px;}
.ls27{letter-spacing:58.210560px;}
.ls2d{letter-spacing:62.530560px;}
.ls16{letter-spacing:63.970560px;}
.ls17{letter-spacing:66.384000px;}
.ls20{letter-spacing:66.850560px;}
.lsc{letter-spacing:67.121760px;}
.ls15{letter-spacing:67.824000px;}
.ls1e{letter-spacing:68.290560px;}
.ls24{letter-spacing:69.730560px;}
.ls1a{letter-spacing:79.810560px;}
.ls8{letter-spacing:81.509760px;}
.ls11{letter-spacing:82.224000px;}
.ls6{letter-spacing:82.949760px;}
.lse{letter-spacing:97.505760px;}
.ls4{letter-spacing:98.789760px;}
.lsb{letter-spacing:98.945760px;}
.lsa{letter-spacing:100.385760px;}
.ls9{letter-spacing:114.785760px;}
.ls0{letter-spacing:828.456000px;}
.ls2c{letter-spacing:849.336000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-60.480000px;}
.ws0{word-spacing:-19.152000px;}
.wse{word-spacing:-18.707040px;}
.ws6{word-spacing:-18.023040px;}
.wsc{word-spacing:-17.614080px;}
.ws10{word-spacing:-16.942560px;}
.ws1{word-spacing:-16.832160px;}
.ws11{word-spacing:-16.410360px;}
.ws4{word-spacing:-16.407360px;}
.wsd{word-spacing:-16.257360px;}
.ws3{word-spacing:-16.148160px;}
.ws13{word-spacing:-16.076160px;}
.wsf{word-spacing:-15.669960px;}
.ws8{word-spacing:-15.624000px;}
.ws7{word-spacing:-15.583560px;}
.ws5{word-spacing:-15.512160px;}
.wsa{word-spacing:-15.264000px;}
.ws12{word-spacing:-14.638560px;}
.wsb{word-spacing:-12.821760px;}
.ws14{word-spacing:-9.612000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-14.502240px;}
._a{margin-left:-13.125120px;}
._4{margin-left:-12.104160px;}
._7{margin-left:-10.928160px;}
._3{margin-left:-9.524640px;}
._9{margin-left:-7.534080px;}
._6{margin-left:-6.431520px;}
._8{margin-left:-5.111040px;}
._14{margin-left:-3.978720px;}
._2{margin-left:-2.284800px;}
._1{margin-left:-1.224000px;}
._0{width:1.296000px;}
._b{width:2.661120px;}
._c{width:4.536000px;}
._e{width:5.948640px;}
._d{width:7.125600px;}
._17{width:8.138880px;}
._18{width:9.383520px;}
._11{width:10.584000px;}
._10{width:11.612160px;}
._13{width:12.839040px;}
._12{width:15.004800px;}
._1c{width:16.308960px;}
._15{width:17.706720px;}
._16{width:19.670400px;}
._19{width:23.829120px;}
._1b{width:25.178400px;}
._1a{width:26.715360px;}
._f{width:31.147200px;}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(2,114,177);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:5.400000px;}
.ye{bottom:6.120000px;}
.y11{bottom:7.560000px;}
.yc{bottom:19.440000px;}
.y7d{bottom:27.720000px;}
.yaa{bottom:27.765000px;}
.yd{bottom:33.120000px;}
.y63{bottom:87.840000px;}
.y46{bottom:88.200000px;}
.y6e{bottom:91.440000px;}
.yae{bottom:92.880000px;}
.y45{bottom:93.600000px;}
.y62{bottom:105.120000px;}
.y6d{bottom:115.956000px;}
.yad{bottom:117.036000px;}
.y61{bottom:122.436000px;}
.y44{bottom:124.236000px;}
.y43{bottom:129.636000px;}
.y60{bottom:139.716000px;}
.y6c{bottom:140.076000px;}
.yac{bottom:141.516000px;}
.y5f{bottom:145.116000px;}
.y42{bottom:160.230000px;}
.y41{bottom:165.630000px;}
.y5e{bottom:177.150000px;}
.yab{bottom:190.110000px;}
.y6b{bottom:197.670000px;}
.y40{bottom:198.390000px;}
.ya9{bottom:208.110000px;}
.y5d{bottom:220.350000px;}
.ycc{bottom:223.230000px;}
.y6a{bottom:226.830000px;}
.y3e{bottom:232.635000px;}
.y5c{bottom:244.515000px;}
.yba{bottom:251.715000px;}
.ycb{bottom:259.635000px;}
.y3d{bottom:262.875000px;}
.y5b{bottom:268.995000px;}
.ya8{bottom:273.675000px;}
.yb9{bottom:276.195000px;}
.yca{bottom:284.115000px;}
.y3c{bottom:287.355000px;}
.ya7{bottom:289.155000px;}
.y5a{bottom:293.115000px;}
.yb8{bottom:300.315000px;}
.y12{bottom:304.275000px;}
.yc9{bottom:308.235000px;}
.y3b{bottom:311.475000px;}
.y59{bottom:317.595000px;}
.yb7{bottom:324.795000px;}
.yc8{bottom:332.355000px;}
.y58{bottom:341.715000px;}
.y10{bottom:346.395000px;}
.yb6{bottom:348.915000px;}
.y3a{bottom:351.075000px;}
.yc7{bottom:356.865000px;}
.y57{bottom:366.225000px;}
.yb5{bottom:373.065000px;}
.yf{bottom:374.145000px;}
.yc6{bottom:380.985000px;}
.ydb{bottom:387.465000px;}
.y56{bottom:390.345000px;}
.yb4{bottom:391.425000px;}
.yb{bottom:401.865000px;}
.yc5{bottom:405.465000px;}
.y39{bottom:406.185000px;}
.y8a{bottom:410.145000px;}
.y55{bottom:414.465000px;}
.yda{bottom:423.825000px;}
.yc4{bottom:429.585000px;}
.y38{bottom:430.665000px;}
.y89{bottom:434.265000px;}
.y54{bottom:438.945000px;}
.yb3{bottom:443.985000px;}
.yd9{bottom:447.945000px;}
.y98{bottom:454.065000px;}
.y37{bottom:454.785000px;}
.y88{bottom:458.385000px;}
.ya3{bottom:462.345000px;}
.y52{bottom:463.065000px;}
.y53{bottom:468.465000px;}
.yd8{bottom:472.425000px;}
.ya{bottom:473.505000px;}
.y97{bottom:478.230000px;}
.y36{bottom:479.310000px;}
.y87{bottom:482.910000px;}
.y51{bottom:487.590000px;}
.ye7{bottom:488.670000px;}
.yb2{bottom:492.630000px;}
.yd7{bottom:496.590000px;}
.ya2{bottom:498.750000px;}
.y96{bottom:502.710000px;}
.y35{bottom:503.430000px;}
.y86{bottom:507.030000px;}
.y50{bottom:511.710000px;}
.ye6{bottom:513.150000px;}
.yc3{bottom:515.310000px;}
.yb1{bottom:516.750000px;}
.yd6{bottom:521.070000px;}
.ya1{bottom:522.870000px;}
.y95{bottom:526.830000px;}
.y34{bottom:527.550000px;}
.y64{bottom:529.710000px;}
.y85{bottom:531.510000px;}
.y9{bottom:531.870000px;}
.ye5{bottom:537.270000px;}
.yb0{bottom:541.230000px;}
.yd5{bottom:545.190000px;}
.ya0{bottom:547.350000px;}
.yc2{bottom:549.870000px;}
.y94{bottom:550.950000px;}
.y33{bottom:552.030000px;}
.y84{bottom:555.630000px;}
.y4f{bottom:558.870000px;}
.ye4{bottom:561.750000px;}
.yd4{bottom:569.670000px;}
.y9f{bottom:571.470000px;}
.yc1{bottom:573.990000px;}
.y93{bottom:575.430000px;}
.y32{bottom:576.150000px;}
.yaf{bottom:578.310000px;}
.y4e{bottom:583.350000px;}
.ye3{bottom:585.870000px;}
.y8{bottom:590.190000px;}
.yd3{bottom:593.790000px;}
.yc0{bottom:598.500000px;}
.y92{bottom:599.580000px;}
.y31{bottom:600.660000px;}
.y83{bottom:607.140000px;}
.y4d{bottom:607.500000px;}
.y9e{bottom:607.860000px;}
.ye2{bottom:610.020000px;}
.yd2{bottom:617.940000px;}
.ybf{bottom:622.620000px;}
.y91{bottom:624.060000px;}
.y82{bottom:631.260000px;}
.y4c{bottom:631.620000px;}
.y9d{bottom:631.980000px;}
.ye1{bottom:634.500000px;}
.y30{bottom:637.020000px;}
.yd1{bottom:642.420000px;}
.ybe{bottom:647.100000px;}
.y90{bottom:648.180000px;}
.y7{bottom:648.540000px;}
.y81{bottom:655.740000px;}
.y69{bottom:656.100000px;}
.y9c{bottom:656.460000px;}
.ye0{bottom:658.620000px;}
.y4b{bottom:667.980000px;}
.ybd{bottom:671.220000px;}
.y8f{bottom:672.660000px;}
.y2f{bottom:676.620000px;}
.yd0{bottom:678.780000px;}
.y80{bottom:679.860000px;}
.y68{bottom:680.220000px;}
.y9b{bottom:680.580000px;}
.ydf{bottom:683.100000px;}
.y8e{bottom:696.780000px;}
.ya6{bottom:702.900000px;}
.y7f{bottom:703.980000px;}
.y67{bottom:704.700000px;}
.y4a{bottom:705.060000px;}
.y6{bottom:706.500000px;}
.ybc{bottom:708.300000px;}
.ycf{bottom:715.860000px;}
.y9a{bottom:717.660000px;}
.yde{bottom:720.210000px;}
.y8d{bottom:721.290000px;}
.ya5{bottom:727.410000px;}
.y7e{bottom:728.490000px;}
.y2d{bottom:731.730000px;}
.y49{bottom:734.250000px;}
.yce{bottom:736.050000px;}
.y2e{bottom:737.130000px;}
.ybb{bottom:737.490000px;}
.ydd{bottom:740.370000px;}
.y7c{bottom:746.490000px;}
.y99{bottom:746.850000px;}
.y66{bottom:753.690000px;}
.y2c{bottom:755.850000px;}
.y8c{bottom:758.370000px;}
.ya4{bottom:764.490000px;}
.y5{bottom:764.850000px;}
.ycd{bottom:765.210000px;}
.ydc{bottom:769.530000px;}
.y2b{bottom:779.970000px;}
.y65{bottom:782.850000px;}
.y8b{bottom:787.530000px;}
.y1e{bottom:798.690000px;}
.y7b{bottom:799.410000px;}
.y29{bottom:804.450000px;}
.y2a{bottom:809.850000px;}
.y4{bottom:823.170000px;}
.y7a{bottom:823.530000px;}
.y28{bottom:828.570000px;}
.y1d{bottom:847.335000px;}
.y79{bottom:847.695000px;}
.y27{bottom:853.095000px;}
.y3{bottom:868.935000px;}
.y78{bottom:872.175000px;}
.y26{bottom:877.215000px;}
.y1c{bottom:879.015000px;}
.y77{bottom:896.295000px;}
.y25{bottom:901.695000px;}
.y1b{bottom:910.695000px;}
.y76{bottom:920.775000px;}
.y24{bottom:925.815000px;}
.y1a{bottom:935.175000px;}
.y75{bottom:944.895000px;}
.y23{bottom:950.295000px;}
.y19{bottom:966.885000px;}
.y74{bottom:969.405000px;}
.y21{bottom:974.445000px;}
.y22{bottom:979.845000px;}
.y18{bottom:991.365000px;}
.y73{bottom:993.525000px;}
.y20{bottom:998.565000px;}
.y17{bottom:1015.485000px;}
.y72{bottom:1018.005000px;}
.y1f{bottom:1023.045000px;}
.y71{bottom:1042.125000px;}
.y16{bottom:1047.165000px;}
.y2{bottom:1056.885000px;}
.y70{bottom:1066.245000px;}
.y15{bottom:1071.645000px;}
.y6f{bottom:1090.770000px;}
.y14{bottom:1095.810000px;}
.y48{bottom:1114.890000px;}
.y1{bottom:1115.250000px;}
.y13{bottom:1135.410000px;}
.ye8{bottom:1139.010000px;}
.y47{bottom:1139.370000px;}
.hc{height:22.680000px;}
.h5{height:27.000000px;}
.h6{height:27.036000px;}
.hd{height:28.419609px;}
.ha{height:33.912000px;}
.hb{height:35.372160px;}
.h11{height:44.208281px;}
.h12{height:45.000000px;}
.h13{height:45.036000px;}
.he{height:46.313437px;}
.hf{height:48.444480px;}
.h10{height:51.546240px;}
.h3{height:54.000000px;}
.h9{height:56.972160px;}
.h7{height:57.672000px;}
.h8{height:65.884219px;}
.h4{height:67.824000px;}
.h2{height:115.344000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:226.905000px;}
.w4{width:494.100000px;}
.w7{width:667.695000px;}
.w6{width:721.725000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:7.920000px;}
.x1{left:84.995987px;}
.x27{left:88.595987px;}
.x12{left:90.395987px;}
.x19{left:92.555987px;}
.x7{left:101.555987px;}
.xf{left:111.995987px;}
.x21{left:114.875987px;}
.x8{left:118.115987px;}
.x10{left:139.031987px;}
.x28{left:158.114987px;}
.x25{left:160.634987px;}
.x26{left:175.034987px;}
.x23{left:206.354987px;}
.x1e{left:250.304987px;}
.x11{left:301.109987px;}
.x17{left:307.949987px;}
.x6{left:313.350000px;}
.x4{left:328.109987px;}
.xd{left:342.509973px;}
.xe{left:347.909987px;}
.x14{left:361.589987px;}
.x1c{left:367.349987px;}
.x1a{left:423.179987px;}
.x1f{left:430.379987px;}
.x2{left:446.579987px;}
.xb{left:678.524973px;}
.xc{left:683.564987px;}
.x15{left:692.924973px;}
.x16{left:698.684987px;}
.x9{left:752.369973px;}
.x1d{left:753.809987px;}
.xa{left:755.249987px;}
.x3{left:758.129987px;}
.x24{left:759.929987px;}
.x1b{left:762.809987px;}
.x13{left:763.889987px;}
.x18{left:764.969987px;}
.x22{left:789.809987px;}
.x20{left:806.009987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.ls2a{letter-spacing:-1.482667pt;}
.ls1f{letter-spacing:-1.050667pt;}
.lsf{letter-spacing:-0.565333pt;}
.ls18{letter-spacing:-0.501867pt;}
.ls21{letter-spacing:-0.425067pt;}
.ls1d{letter-spacing:-0.414933pt;}
.ls26{letter-spacing:-0.404267pt;}
.ls22{letter-spacing:-0.394133pt;}
.ls2b{letter-spacing:-0.204800pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.051200pt;}
.ls1c{letter-spacing:0.069333pt;}
.ls1b{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.230400pt;}
.ls28{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.335360pt;}
.ls13{letter-spacing:0.416000pt;}
.ls25{letter-spacing:0.565333pt;}
.ls14{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.608000pt;}
.ls23{letter-spacing:0.874667pt;}
.ls12{letter-spacing:2.286080pt;}
.ls29{letter-spacing:4.846080pt;}
.ls2f{letter-spacing:7.406080pt;}
.lsd{letter-spacing:45.573120pt;}
.ls27{letter-spacing:51.742720pt;}
.ls2d{letter-spacing:55.582720pt;}
.ls16{letter-spacing:56.862720pt;}
.ls17{letter-spacing:59.008000pt;}
.ls20{letter-spacing:59.422720pt;}
.lsc{letter-spacing:59.663787pt;}
.ls15{letter-spacing:60.288000pt;}
.ls1e{letter-spacing:60.702720pt;}
.ls24{letter-spacing:61.982720pt;}
.ls1a{letter-spacing:70.942720pt;}
.ls8{letter-spacing:72.453120pt;}
.ls11{letter-spacing:73.088000pt;}
.ls6{letter-spacing:73.733120pt;}
.lse{letter-spacing:86.671787pt;}
.ls4{letter-spacing:87.813120pt;}
.lsb{letter-spacing:87.951787pt;}
.lsa{letter-spacing:89.231787pt;}
.ls9{letter-spacing:102.031787pt;}
.ls0{letter-spacing:736.405333pt;}
.ls2c{letter-spacing:754.965333pt;}
.ws9{word-spacing:-53.760000pt;}
.ws0{word-spacing:-17.024000pt;}
.wse{word-spacing:-16.628480pt;}
.ws6{word-spacing:-16.020480pt;}
.wsc{word-spacing:-15.656960pt;}
.ws10{word-spacing:-15.060053pt;}
.ws1{word-spacing:-14.961920pt;}
.ws11{word-spacing:-14.586987pt;}
.ws4{word-spacing:-14.584320pt;}
.wsd{word-spacing:-14.450987pt;}
.ws3{word-spacing:-14.353920pt;}
.ws13{word-spacing:-14.289920pt;}
.wsf{word-spacing:-13.928853pt;}
.ws8{word-spacing:-13.888000pt;}
.ws7{word-spacing:-13.852053pt;}
.ws5{word-spacing:-13.788587pt;}
.wsa{word-spacing:-13.568000pt;}
.ws12{word-spacing:-13.012053pt;}
.wsb{word-spacing:-11.397120pt;}
.ws14{word-spacing:-8.544000pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-12.890880pt;}
._a{margin-left:-11.666773pt;}
._4{margin-left:-10.759253pt;}
._7{margin-left:-9.713920pt;}
._3{margin-left:-8.466347pt;}
._9{margin-left:-6.696960pt;}
._6{margin-left:-5.716907pt;}
._8{margin-left:-4.543147pt;}
._14{margin-left:-3.536640pt;}
._2{margin-left:-2.030933pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.152000pt;}
._b{width:2.365440pt;}
._c{width:4.032000pt;}
._e{width:5.287680pt;}
._d{width:6.333867pt;}
._17{width:7.234560pt;}
._18{width:8.340907pt;}
._11{width:9.408000pt;}
._10{width:10.321920pt;}
._13{width:11.412480pt;}
._12{width:13.337600pt;}
._1c{width:14.496853pt;}
._15{width:15.739307pt;}
._16{width:17.484800pt;}
._19{width:21.181440pt;}
._1b{width:22.380800pt;}
._1a{width:23.746987pt;}
._f{width:27.686400pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:4.800000pt;}
.ye{bottom:5.440000pt;}
.y11{bottom:6.720000pt;}
.yc{bottom:17.280000pt;}
.y7d{bottom:24.640000pt;}
.yaa{bottom:24.680000pt;}
.yd{bottom:29.440000pt;}
.y63{bottom:78.080000pt;}
.y46{bottom:78.400000pt;}
.y6e{bottom:81.280000pt;}
.yae{bottom:82.560000pt;}
.y45{bottom:83.200000pt;}
.y62{bottom:93.440000pt;}
.y6d{bottom:103.072000pt;}
.yad{bottom:104.032000pt;}
.y61{bottom:108.832000pt;}
.y44{bottom:110.432000pt;}
.y43{bottom:115.232000pt;}
.y60{bottom:124.192000pt;}
.y6c{bottom:124.512000pt;}
.yac{bottom:125.792000pt;}
.y5f{bottom:128.992000pt;}
.y42{bottom:142.426667pt;}
.y41{bottom:147.226667pt;}
.y5e{bottom:157.466667pt;}
.yab{bottom:168.986667pt;}
.y6b{bottom:175.706667pt;}
.y40{bottom:176.346667pt;}
.ya9{bottom:184.986667pt;}
.y5d{bottom:195.866667pt;}
.ycc{bottom:198.426667pt;}
.y6a{bottom:201.626667pt;}
.y3e{bottom:206.786667pt;}
.y5c{bottom:217.346667pt;}
.yba{bottom:223.746667pt;}
.ycb{bottom:230.786667pt;}
.y3d{bottom:233.666667pt;}
.y5b{bottom:239.106667pt;}
.ya8{bottom:243.266667pt;}
.yb9{bottom:245.506667pt;}
.yca{bottom:252.546667pt;}
.y3c{bottom:255.426667pt;}
.ya7{bottom:257.026667pt;}
.y5a{bottom:260.546667pt;}
.yb8{bottom:266.946667pt;}
.y12{bottom:270.466667pt;}
.yc9{bottom:273.986667pt;}
.y3b{bottom:276.866667pt;}
.y59{bottom:282.306667pt;}
.yb7{bottom:288.706667pt;}
.yc8{bottom:295.426667pt;}
.y58{bottom:303.746667pt;}
.y10{bottom:307.906667pt;}
.yb6{bottom:310.146667pt;}
.y3a{bottom:312.066667pt;}
.yc7{bottom:317.213333pt;}
.y57{bottom:325.533333pt;}
.yb5{bottom:331.613333pt;}
.yf{bottom:332.573333pt;}
.yc6{bottom:338.653333pt;}
.ydb{bottom:344.413333pt;}
.y56{bottom:346.973333pt;}
.yb4{bottom:347.933333pt;}
.yb{bottom:357.213333pt;}
.yc5{bottom:360.413333pt;}
.y39{bottom:361.053333pt;}
.y8a{bottom:364.573333pt;}
.y55{bottom:368.413333pt;}
.yda{bottom:376.733333pt;}
.yc4{bottom:381.853333pt;}
.y38{bottom:382.813333pt;}
.y89{bottom:386.013333pt;}
.y54{bottom:390.173333pt;}
.yb3{bottom:394.653333pt;}
.yd9{bottom:398.173333pt;}
.y98{bottom:403.613333pt;}
.y37{bottom:404.253333pt;}
.y88{bottom:407.453333pt;}
.ya3{bottom:410.973333pt;}
.y52{bottom:411.613333pt;}
.y53{bottom:416.413333pt;}
.yd8{bottom:419.933333pt;}
.ya{bottom:420.893333pt;}
.y97{bottom:425.093333pt;}
.y36{bottom:426.053333pt;}
.y87{bottom:429.253333pt;}
.y51{bottom:433.413333pt;}
.ye7{bottom:434.373333pt;}
.yb2{bottom:437.893333pt;}
.yd7{bottom:441.413333pt;}
.ya2{bottom:443.333333pt;}
.y96{bottom:446.853333pt;}
.y35{bottom:447.493333pt;}
.y86{bottom:450.693333pt;}
.y50{bottom:454.853333pt;}
.ye6{bottom:456.133333pt;}
.yc3{bottom:458.053333pt;}
.yb1{bottom:459.333333pt;}
.yd6{bottom:463.173333pt;}
.ya1{bottom:464.773333pt;}
.y95{bottom:468.293333pt;}
.y34{bottom:468.933333pt;}
.y64{bottom:470.853333pt;}
.y85{bottom:472.453333pt;}
.y9{bottom:472.773333pt;}
.ye5{bottom:477.573333pt;}
.yb0{bottom:481.093333pt;}
.yd5{bottom:484.613333pt;}
.ya0{bottom:486.533333pt;}
.yc2{bottom:488.773333pt;}
.y94{bottom:489.733333pt;}
.y33{bottom:490.693333pt;}
.y84{bottom:493.893333pt;}
.y4f{bottom:496.773333pt;}
.ye4{bottom:499.333333pt;}
.yd4{bottom:506.373333pt;}
.y9f{bottom:507.973333pt;}
.yc1{bottom:510.213333pt;}
.y93{bottom:511.493333pt;}
.y32{bottom:512.133333pt;}
.yaf{bottom:514.053333pt;}
.y4e{bottom:518.533333pt;}
.ye3{bottom:520.773333pt;}
.y8{bottom:524.613333pt;}
.yd3{bottom:527.813333pt;}
.yc0{bottom:532.000000pt;}
.y92{bottom:532.960000pt;}
.y31{bottom:533.920000pt;}
.y83{bottom:539.680000pt;}
.y4d{bottom:540.000000pt;}
.y9e{bottom:540.320000pt;}
.ye2{bottom:542.240000pt;}
.yd2{bottom:549.280000pt;}
.ybf{bottom:553.440000pt;}
.y91{bottom:554.720000pt;}
.y82{bottom:561.120000pt;}
.y4c{bottom:561.440000pt;}
.y9d{bottom:561.760000pt;}
.ye1{bottom:564.000000pt;}
.y30{bottom:566.240000pt;}
.yd1{bottom:571.040000pt;}
.ybe{bottom:575.200000pt;}
.y90{bottom:576.160000pt;}
.y7{bottom:576.480000pt;}
.y81{bottom:582.880000pt;}
.y69{bottom:583.200000pt;}
.y9c{bottom:583.520000pt;}
.ye0{bottom:585.440000pt;}
.y4b{bottom:593.760000pt;}
.ybd{bottom:596.640000pt;}
.y8f{bottom:597.920000pt;}
.y2f{bottom:601.440000pt;}
.yd0{bottom:603.360000pt;}
.y80{bottom:604.320000pt;}
.y68{bottom:604.640000pt;}
.y9b{bottom:604.960000pt;}
.ydf{bottom:607.200000pt;}
.y8e{bottom:619.360000pt;}
.ya6{bottom:624.800000pt;}
.y7f{bottom:625.760000pt;}
.y67{bottom:626.400000pt;}
.y4a{bottom:626.720000pt;}
.y6{bottom:628.000000pt;}
.ybc{bottom:629.600000pt;}
.ycf{bottom:636.320000pt;}
.y9a{bottom:637.920000pt;}
.yde{bottom:640.186667pt;}
.y8d{bottom:641.146667pt;}
.ya5{bottom:646.586667pt;}
.y7e{bottom:647.546667pt;}
.y2d{bottom:650.426667pt;}
.y49{bottom:652.666667pt;}
.yce{bottom:654.266667pt;}
.y2e{bottom:655.226667pt;}
.ybb{bottom:655.546667pt;}
.ydd{bottom:658.106667pt;}
.y7c{bottom:663.546667pt;}
.y99{bottom:663.866667pt;}
.y66{bottom:669.946667pt;}
.y2c{bottom:671.866667pt;}
.y8c{bottom:674.106667pt;}
.ya4{bottom:679.546667pt;}
.y5{bottom:679.866667pt;}
.ycd{bottom:680.186667pt;}
.ydc{bottom:684.026667pt;}
.y2b{bottom:693.306667pt;}
.y65{bottom:695.866667pt;}
.y8b{bottom:700.026667pt;}
.y1e{bottom:709.946667pt;}
.y7b{bottom:710.586667pt;}
.y29{bottom:715.066667pt;}
.y2a{bottom:719.866667pt;}
.y4{bottom:731.706667pt;}
.y7a{bottom:732.026667pt;}
.y28{bottom:736.506667pt;}
.y1d{bottom:753.186667pt;}
.y79{bottom:753.506667pt;}
.y27{bottom:758.306667pt;}
.y3{bottom:772.386667pt;}
.y78{bottom:775.266667pt;}
.y26{bottom:779.746667pt;}
.y1c{bottom:781.346667pt;}
.y77{bottom:796.706667pt;}
.y25{bottom:801.506667pt;}
.y1b{bottom:809.506667pt;}
.y76{bottom:818.466667pt;}
.y24{bottom:822.946667pt;}
.y1a{bottom:831.266667pt;}
.y75{bottom:839.906667pt;}
.y23{bottom:844.706667pt;}
.y19{bottom:859.453333pt;}
.y74{bottom:861.693333pt;}
.y21{bottom:866.173333pt;}
.y22{bottom:870.973333pt;}
.y18{bottom:881.213333pt;}
.y73{bottom:883.133333pt;}
.y20{bottom:887.613333pt;}
.y17{bottom:902.653333pt;}
.y72{bottom:904.893333pt;}
.y1f{bottom:909.373333pt;}
.y71{bottom:926.333333pt;}
.y16{bottom:930.813333pt;}
.y2{bottom:939.453333pt;}
.y70{bottom:947.773333pt;}
.y15{bottom:952.573333pt;}
.y6f{bottom:969.573333pt;}
.y14{bottom:974.053333pt;}
.y48{bottom:991.013333pt;}
.y1{bottom:991.333333pt;}
.y13{bottom:1009.253333pt;}
.ye8{bottom:1012.453333pt;}
.y47{bottom:1012.773333pt;}
.hc{height:20.160000pt;}
.h5{height:24.000000pt;}
.h6{height:24.032000pt;}
.hd{height:25.261875pt;}
.ha{height:30.144000pt;}
.hb{height:31.441920pt;}
.h11{height:39.296250pt;}
.h12{height:40.000000pt;}
.h13{height:40.032000pt;}
.he{height:41.167500pt;}
.hf{height:43.061760pt;}
.h10{height:45.818880pt;}
.h3{height:48.000000pt;}
.h9{height:50.641920pt;}
.h7{height:51.264000pt;}
.h8{height:58.563750pt;}
.h4{height:60.288000pt;}
.h2{height:102.528000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:201.693333pt;}
.w4{width:439.200000pt;}
.w7{width:593.506667pt;}
.w6{width:641.533333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:7.040000pt;}
.x1{left:75.551988pt;}
.x27{left:78.751988pt;}
.x12{left:80.351988pt;}
.x19{left:82.271988pt;}
.x7{left:90.271988pt;}
.xf{left:99.551988pt;}
.x21{left:102.111988pt;}
.x8{left:104.991988pt;}
.x10{left:123.583988pt;}
.x28{left:140.546655pt;}
.x25{left:142.786655pt;}
.x26{left:155.586655pt;}
.x23{left:183.426655pt;}
.x1e{left:222.493322pt;}
.x11{left:267.653322pt;}
.x17{left:273.733322pt;}
.x6{left:278.533333pt;}
.x4{left:291.653322pt;}
.xd{left:304.453310pt;}
.xe{left:309.253322pt;}
.x14{left:321.413322pt;}
.x1c{left:326.533322pt;}
.x1a{left:376.159988pt;}
.x1f{left:382.559988pt;}
.x2{left:396.959988pt;}
.xb{left:603.133310pt;}
.xc{left:607.613322pt;}
.x15{left:615.933310pt;}
.x16{left:621.053322pt;}
.x9{left:668.773310pt;}
.x1d{left:670.053322pt;}
.xa{left:671.333322pt;}
.x3{left:673.893322pt;}
.x24{left:675.493322pt;}
.x1b{left:678.053322pt;}
.x13{left:679.013322pt;}
.x18{left:679.973322pt;}
.x22{left:702.053322pt;}
.x20{left:716.453322pt;}
}




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