
    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_deeb424208ccdbaa68246ace.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_01a6d8cff7f933f08bf497ff.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ac58df158bfb5c10dc3f0a3d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_1907caff983977ea203af513.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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);}
.mc{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.272225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272225,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v2{vertical-align:-125.280000px;}
.v3{vertical-align:-75.600000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.164000px;}
.ls10{letter-spacing:-1.134000px;}
.lsf{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.420000px;}
.ls1a{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.246600px;}
.ls6{letter-spacing:-0.226800px;}
.ls15{letter-spacing:-0.187200px;}
.ls1c{letter-spacing:-0.170400px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000006px;}
.lse{letter-spacing:0.109200px;}
.lsa{letter-spacing:0.185400px;}
.lsb{letter-spacing:0.236400px;}
.ls12{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.265200px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.375600px;}
.ls18{letter-spacing:0.376355px;}
.ls4{letter-spacing:0.413400px;}
.lsd{letter-spacing:0.441600px;}
.ls17{letter-spacing:0.463680px;}
.ls11{letter-spacing:0.530400px;}
.ls19{letter-spacing:0.732000px;}
.ls9{letter-spacing:1.278000px;}
.ls16{letter-spacing:8.640000px;}
.ls14{letter-spacing:82.992093px;}
.ls3{letter-spacing:132.276000px;}
.ls2{letter-spacing:2024.400000px;}
.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:-25.560006px;}
.ws9{word-spacing:-21.060000px;}
.wse{word-spacing:-17.292000px;}
.wsf{word-spacing:-17.090400px;}
.ws11{word-spacing:-17.023680px;}
.ws12{word-spacing:-16.935600px;}
.wsc{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.669200px;}
.wsd{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.389600px;}
.ws10{word-spacing:-16.297800px;}
.wsb{word-spacing:-15.426000px;}
.ws1{word-spacing:-15.353400px;}
.ws2{word-spacing:-14.693400px;}
.ws5{word-spacing:-14.456400px;}
.ws4{word-spacing:-14.405400px;}
.ws3{word-spacing:-14.220000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.056000px;}
.ws8{word-spacing:0.000000px;}
._1b{margin-left:-2.815337px;}
._0{margin-left:-1.149143px;}
._1{width:1.330560px;}
._2{width:2.545331px;}
._5{width:4.341545px;}
._4{width:5.460480px;}
._9{width:7.156483px;}
._a{width:8.241065px;}
._b{width:9.863039px;}
._3{width:11.358293px;}
._f{width:12.365798px;}
._e{width:13.777920px;}
._6{width:15.698880px;}
._14{width:17.795520px;}
._17{width:18.943556px;}
._16{width:20.004480px;}
._12{width:21.060817px;}
._c{width:22.519314px;}
._15{width:23.846400px;}
._8{width:25.210080px;}
._7{width:26.268480px;}
._19{width:27.538560px;}
._18{width:28.543680px;}
._1a{width:29.836823px;}
._d{width:32.560450px;}
._13{width:37.529280px;}
._11{width:38.551680px;}
._10{width:40.296983px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:102.240000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:203.070000px;}
.y8c{bottom:203.610000px;}
.y31{bottom:208.290000px;}
.yb1{bottom:210.270000px;}
.yba{bottom:213.870000px;}
.y30{bottom:220.350000px;}
.yd2{bottom:221.610000px;}
.y61{bottom:222.870000px;}
.y8b{bottom:223.950000px;}
.y2f{bottom:225.570000px;}
.yb0{bottom:229.350000px;}
.yf0{bottom:230.430000px;}
.y2e{bottom:237.450000px;}
.yd1{bottom:240.510000px;}
.y2d{bottom:242.670000px;}
.y60{bottom:243.210000px;}
.y8a{bottom:244.290000px;}
.yaf{bottom:248.250000px;}
.yef{bottom:249.330000px;}
.y2c{bottom:254.730000px;}
.yd0{bottom:259.410000px;}
.y2b{bottom:259.950000px;}
.y5f{bottom:263.550000px;}
.y89{bottom:264.630000px;}
.yae{bottom:267.150000px;}
.yee{bottom:268.410000px;}
.y2a{bottom:272.010000px;}
.y29{bottom:277.230000px;}
.ycf{bottom:278.490000px;}
.y5e{bottom:283.890000px;}
.y88{bottom:284.970000px;}
.yad{bottom:286.230000px;}
.yed{bottom:287.310000px;}
.y28{bottom:290.010000px;}
.yce{bottom:297.390000px;}
.y5d{bottom:302.790000px;}
.yac{bottom:305.130000px;}
.y87{bottom:305.310000px;}
.yec{bottom:306.390000px;}
.y5c{bottom:322.950000px;}
.yab{bottom:324.210000px;}
.yeb{bottom:325.290000px;}
.y86{bottom:325.650000px;}
.ycd{bottom:335.370000px;}
.yaa{bottom:343.155000px;}
.yea{bottom:344.235000px;}
.y5b{bottom:346.035000px;}
.y27{bottom:347.475000px;}
.ycc{bottom:355.755000px;}
.ya9{bottom:362.055000px;}
.ye9{bottom:363.315000px;}
.y26{bottom:363.855000px;}
.y5a{bottom:364.935000px;}
.y85{bottom:366.195000px;}
.ycb{bottom:376.095000px;}
.ya8{bottom:381.135000px;}
.ye8{bottom:382.215000px;}
.y59{bottom:384.015000px;}
.y25{bottom:386.355000px;}
.y84{bottom:386.535000px;}
.yca{bottom:394.995000px;}
.ya7{bottom:400.035000px;}
.ye7{bottom:401.295000px;}
.y24{bottom:402.735000px;}
.y58{bottom:402.915000px;}
.y83{bottom:406.875000px;}
.yc9{bottom:410.475000px;}
.y23{bottom:419.115000px;}
.ye6{bottom:420.195000px;}
.y57{bottom:421.995000px;}
.y82{bottom:427.215000px;}
.y22{bottom:435.495000px;}
.ya6{bottom:438.015000px;}
.ye5{bottom:439.095000px;}
.y56{bottom:440.895000px;}
.y81{bottom:447.555000px;}
.y21{bottom:451.875000px;}
.ya5{bottom:456.915000px;}
.ye4{bottom:458.175000px;}
.y55{bottom:459.795000px;}
.y80{bottom:467.895000px;}
.y20{bottom:468.255000px;}
.ya4{bottom:475.995000px;}
.ye3{bottom:477.075000px;}
.y54{bottom:478.875000px;}
.y1f{bottom:484.635000px;}
.y7f{bottom:488.235000px;}
.ya3{bottom:494.895000px;}
.ye2{bottom:496.155000px;}
.y53{bottom:497.775000px;}
.y1e{bottom:501.015000px;}
.y7e{bottom:508.575000px;}
.ya2{bottom:513.975000px;}
.ye1{bottom:515.055000px;}
.y52{bottom:516.855000px;}
.y1d{bottom:517.395000px;}
.y7d{bottom:528.735000px;}
.ya1{bottom:532.875000px;}
.y1c{bottom:533.775000px;}
.ye0{bottom:534.135000px;}
.y51{bottom:535.755000px;}
.y7c{bottom:549.075000px;}
.y1b{bottom:550.335000px;}
.ya0{bottom:551.775000px;}
.ydf{bottom:553.575000px;}
.y50{bottom:554.655000px;}
.yb9{bottom:564.015000px;}
.y1a{bottom:567.615000px;}
.y7b{bottom:569.415000px;}
.y9f{bottom:570.855000px;}
.y4f{bottom:573.735000px;}
.yde{bottom:574.815000px;}
.yb8{bottom:582.915000px;}
.y19{bottom:584.715000px;}
.y7a{bottom:589.755000px;}
.y4e{bottom:592.635000px;}
.ydd{bottom:597.855000px;}
.yb7{bottom:601.995000px;}
.y18{bottom:602.175000px;}
.y9e{bottom:608.865000px;}
.y79{bottom:610.125000px;}
.y4d{bottom:612.645000px;}
.ydc{bottom:616.785000px;}
.yb6{bottom:620.925000px;}
.y9d{bottom:627.765000px;}
.y16{bottom:627.945000px;}
.y78{bottom:630.465000px;}
.y4c{bottom:635.865000px;}
.y17{bottom:640.725000px;}
.y9c{bottom:646.665000px;}
.y77{bottom:650.805000px;}
.y4b{bottom:654.765000px;}
.yb5{bottom:658.905000px;}
.y15{bottom:660.345000px;}
.y9b{bottom:665.745000px;}
.y76{bottom:671.145000px;}
.y4a{bottom:673.845000px;}
.yb4{bottom:679.245000px;}
.y9a{bottom:684.645000px;}
.y13{bottom:686.085000px;}
.y75{bottom:691.305000px;}
.y49{bottom:692.745000px;}
.y14{bottom:698.865000px;}
.yb3{bottom:699.585000px;}
.y99{bottom:703.725000px;}
.y74{bottom:711.645000px;}
.y48{bottom:711.825000px;}
.y12{bottom:718.485000px;}
.y98{bottom:722.625000px;}
.y47{bottom:730.725000px;}
.y73{bottom:731.985000px;}
.y97{bottom:741.705000px;}
.y10{bottom:744.225000px;}
.y46{bottom:749.625000px;}
.yc8{bottom:750.885000px;}
.y72{bottom:752.325000px;}
.y11{bottom:757.005000px;}
.y96{bottom:760.605000px;}
.y45{bottom:768.705000px;}
.yc7{bottom:769.785000px;}
.y71{bottom:772.665000px;}
.yf{bottom:776.625000px;}
.y95{bottom:779.505000px;}
.y44{bottom:787.605000px;}
.yc6{bottom:788.685000px;}
.y70{bottom:793.005000px;}
.y94{bottom:798.585000px;}
.yd{bottom:802.365000px;}
.y43{bottom:806.685000px;}
.yc5{bottom:807.765000px;}
.y6f{bottom:813.345000px;}
.ye{bottom:815.145000px;}
.y93{bottom:817.485000px;}
.y42{bottom:825.585000px;}
.yc4{bottom:826.665000px;}
.y6e{bottom:833.685000px;}
.yc{bottom:834.765000px;}
.y92{bottom:836.565000px;}
.y41{bottom:844.485000px;}
.yc3{bottom:845.745000px;}
.y6d{bottom:853.845000px;}
.y91{bottom:855.465000px;}
.ya{bottom:860.505000px;}
.y40{bottom:863.565000px;}
.yc2{bottom:864.645000px;}
.yb{bottom:873.330000px;}
.y6c{bottom:874.230000px;}
.y90{bottom:874.410000px;}
.y3f{bottom:882.510000px;}
.ydb{bottom:883.590000px;}
.yc1{bottom:883.770000px;}
.y9{bottom:889.710000px;}
.y8f{bottom:893.490000px;}
.y6b{bottom:894.570000px;}
.y3e{bottom:901.590000px;}
.yc0{bottom:902.670000px;}
.yda{bottom:906.630000px;}
.y8e{bottom:912.390000px;}
.y6a{bottom:914.910000px;}
.y3d{bottom:920.490000px;}
.ybf{bottom:921.570000px;}
.yd9{bottom:925.710000px;}
.y8{bottom:928.950000px;}
.y8d{bottom:932.370000px;}
.y69{bottom:935.250000px;}
.y3c{bottom:939.390000px;}
.ybe{bottom:940.650000px;}
.yd8{bottom:944.610000px;}
.y68{bottom:955.590000px;}
.y3b{bottom:958.470000px;}
.ybd{bottom:959.550000px;}
.yd7{bottom:963.690000px;}
.y67{bottom:975.930000px;}
.y3a{bottom:977.370000px;}
.ybc{bottom:978.630000px;}
.yd6{bottom:982.590000px;}
.y7{bottom:989.610000px;}
.y66{bottom:996.270000px;}
.y39{bottom:996.450000px;}
.ybb{bottom:997.530000px;}
.yd5{bottom:1001.490000px;}
.y6{bottom:1015.170000px;}
.y38{bottom:1015.350000px;}
.y65{bottom:1016.430000px;}
.yd4{bottom:1020.570000px;}
.y33{bottom:1023.090000px;}
.y5{bottom:1032.270000px;}
.y37{bottom:1034.250000px;}
.y64{bottom:1036.770000px;}
.yd3{bottom:1039.470000px;}
.y4{bottom:1049.550000px;}
.y36{bottom:1053.330000px;}
.y63{bottom:1057.110000px;}
.yb2{bottom:1058.550000px;}
.y3{bottom:1069.170000px;}
.y35{bottom:1073.310000px;}
.y62{bottom:1077.450000px;}
.y34{bottom:1171.620000px;}
.y2{bottom:1187.460000px;}
.y1{bottom:1192.320000px;}
.ha{height:38.158594px;}
.hd{height:52.998047px;}
.hc{height:55.824609px;}
.hb{height:57.324375px;}
.h3{height:58.651172px;}
.h13{height:59.383125px;}
.h5{height:60.226875px;}
.h11{height:65.010937px;}
.h12{height:66.757500px;}
.h2{height:70.664062px;}
.h14{height:72.562500px;}
.he{height:75.600000px;}
.h9{height:79.850391px;}
.h10{height:82.676953px;}
.h6{height:84.898125px;}
.hf{height:87.695156px;}
.h7{height:100.342969px;}
.h4{height:103.038750px;}
.h8{height:141.328125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:92.880000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:82.080000px;}
.x4{left:148.895987px;}
.x2{left:159.509987px;}
.x16{left:164.369987px;}
.x17{left:168.149987px;}
.x1f{left:171.569987px;}
.x12{left:180.749987px;}
.x1d{left:182.370000px;}
.x22{left:185.069987px;}
.x2e{left:187.049987px;}
.x2b{left:189.389987px;}
.x23{left:193.529987px;}
.x20{left:195.689987px;}
.x27{left:201.989987px;}
.x2a{left:221.969987px;}
.x13{left:232.049987px;}
.x33{left:244.109987px;}
.x1c{left:259.409987px;}
.x1b{left:270.569987px;}
.x14{left:275.069987px;}
.x26{left:284.429987px;}
.x3{left:288.794987px;}
.x24{left:292.754987px;}
.x1a{left:296.534987px;}
.x31{left:298.514987px;}
.x30{left:304.634987px;}
.x18{left:307.334987px;}
.x28{left:309.854987px;}
.x21{left:311.114987px;}
.x36{left:321.374987px;}
.xf{left:331.274987px;}
.x10{left:333.614973px;}
.x5{left:339.554987px;}
.x19{left:345.134987px;}
.x15{left:375.554987px;}
.x8{left:390.854973px;}
.x9{left:396.254987px;}
.x25{left:402.554987px;}
.xd{left:423.434973px;}
.xe{left:428.654987px;}
.x2f{left:432.074987px;}
.x6{left:439.454973px;}
.x2c{left:440.894987px;}
.x7{left:444.674987px;}
.x29{left:483.764987px;}
.x2d{left:496.544987px;}
.xa{left:528.584973px;}
.xb{left:533.804987px;}
.x11{left:564.584987px;}
.xc{left:587.984987px;}
.x34{left:644.864987px;}
.x35{left:651.704987px;}
.x32{left:761.369987px;}
.x1{left:799.169987px;}
@media print{
.v2{vertical-align:-111.360000pt;}
.v3{vertical-align:-67.200000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.034667pt;}
.ls10{letter-spacing:-1.008000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.373333pt;}
.ls1a{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.219200pt;}
.ls6{letter-spacing:-0.201600pt;}
.ls15{letter-spacing:-0.166400pt;}
.ls1c{letter-spacing:-0.151467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000005pt;}
.lse{letter-spacing:0.097067pt;}
.lsa{letter-spacing:0.164800pt;}
.lsb{letter-spacing:0.210133pt;}
.ls12{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.235733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.333867pt;}
.ls18{letter-spacing:0.334537pt;}
.ls4{letter-spacing:0.367467pt;}
.lsd{letter-spacing:0.392533pt;}
.ls17{letter-spacing:0.412160pt;}
.ls11{letter-spacing:0.471467pt;}
.ls19{letter-spacing:0.650667pt;}
.ls9{letter-spacing:1.136000pt;}
.ls16{letter-spacing:7.680000pt;}
.ls14{letter-spacing:73.770750pt;}
.ls3{letter-spacing:117.578667pt;}
.ls2{letter-spacing:1799.466667pt;}
.ws0{word-spacing:-22.720005pt;}
.ws9{word-spacing:-18.720000pt;}
.wse{word-spacing:-15.370667pt;}
.wsf{word-spacing:-15.191467pt;}
.ws11{word-spacing:-15.132160pt;}
.ws12{word-spacing:-15.053867pt;}
.wsc{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.817067pt;}
.wsd{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.568533pt;}
.ws10{word-spacing:-14.486933pt;}
.wsb{word-spacing:-13.712000pt;}
.ws1{word-spacing:-13.647467pt;}
.ws2{word-spacing:-13.060800pt;}
.ws5{word-spacing:-12.850133pt;}
.ws4{word-spacing:-12.804800pt;}
.ws3{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.605333pt;}
.ws8{word-spacing:0.000000pt;}
._1b{margin-left:-2.502522pt;}
._0{margin-left:-1.021460pt;}
._1{width:1.182720pt;}
._2{width:2.262516pt;}
._5{width:3.859151pt;}
._4{width:4.853760pt;}
._9{width:6.361319pt;}
._a{width:7.325391pt;}
._b{width:8.767146pt;}
._3{width:10.096261pt;}
._f{width:10.991821pt;}
._e{width:12.247040pt;}
._6{width:13.954560pt;}
._14{width:15.818240pt;}
._17{width:16.838716pt;}
._16{width:17.781760pt;}
._12{width:18.720726pt;}
._c{width:20.017168pt;}
._15{width:21.196800pt;}
._8{width:22.408960pt;}
._7{width:23.349760pt;}
._19{width:24.478720pt;}
._18{width:25.372160pt;}
._1a{width:26.521620pt;}
._d{width:28.942622pt;}
._13{width:33.359360pt;}
._11{width:34.268160pt;}
._10{width:35.819540pt;}
.fs3{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:90.880000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:180.506667pt;}
.y8c{bottom:180.986667pt;}
.y31{bottom:185.146667pt;}
.yb1{bottom:186.906667pt;}
.yba{bottom:190.106667pt;}
.y30{bottom:195.866667pt;}
.yd2{bottom:196.986667pt;}
.y61{bottom:198.106667pt;}
.y8b{bottom:199.066667pt;}
.y2f{bottom:200.506667pt;}
.yb0{bottom:203.866667pt;}
.yf0{bottom:204.826667pt;}
.y2e{bottom:211.066667pt;}
.yd1{bottom:213.786667pt;}
.y2d{bottom:215.706667pt;}
.y60{bottom:216.186667pt;}
.y8a{bottom:217.146667pt;}
.yaf{bottom:220.666667pt;}
.yef{bottom:221.626667pt;}
.y2c{bottom:226.426667pt;}
.yd0{bottom:230.586667pt;}
.y2b{bottom:231.066667pt;}
.y5f{bottom:234.266667pt;}
.y89{bottom:235.226667pt;}
.yae{bottom:237.466667pt;}
.yee{bottom:238.586667pt;}
.y2a{bottom:241.786667pt;}
.y29{bottom:246.426667pt;}
.ycf{bottom:247.546667pt;}
.y5e{bottom:252.346667pt;}
.y88{bottom:253.306667pt;}
.yad{bottom:254.426667pt;}
.yed{bottom:255.386667pt;}
.y28{bottom:257.786667pt;}
.yce{bottom:264.346667pt;}
.y5d{bottom:269.146667pt;}
.yac{bottom:271.226667pt;}
.y87{bottom:271.386667pt;}
.yec{bottom:272.346667pt;}
.y5c{bottom:287.066667pt;}
.yab{bottom:288.186667pt;}
.yeb{bottom:289.146667pt;}
.y86{bottom:289.466667pt;}
.ycd{bottom:298.106667pt;}
.yaa{bottom:305.026667pt;}
.yea{bottom:305.986667pt;}
.y5b{bottom:307.586667pt;}
.y27{bottom:308.866667pt;}
.ycc{bottom:316.226667pt;}
.ya9{bottom:321.826667pt;}
.ye9{bottom:322.946667pt;}
.y26{bottom:323.426667pt;}
.y5a{bottom:324.386667pt;}
.y85{bottom:325.506667pt;}
.ycb{bottom:334.306667pt;}
.ya8{bottom:338.786667pt;}
.ye8{bottom:339.746667pt;}
.y59{bottom:341.346667pt;}
.y25{bottom:343.426667pt;}
.y84{bottom:343.586667pt;}
.yca{bottom:351.106667pt;}
.ya7{bottom:355.586667pt;}
.ye7{bottom:356.706667pt;}
.y24{bottom:357.986667pt;}
.y58{bottom:358.146667pt;}
.y83{bottom:361.666667pt;}
.yc9{bottom:364.866667pt;}
.y23{bottom:372.546667pt;}
.ye6{bottom:373.506667pt;}
.y57{bottom:375.106667pt;}
.y82{bottom:379.746667pt;}
.y22{bottom:387.106667pt;}
.ya6{bottom:389.346667pt;}
.ye5{bottom:390.306667pt;}
.y56{bottom:391.906667pt;}
.y81{bottom:397.826667pt;}
.y21{bottom:401.666667pt;}
.ya5{bottom:406.146667pt;}
.ye4{bottom:407.266667pt;}
.y55{bottom:408.706667pt;}
.y80{bottom:415.906667pt;}
.y20{bottom:416.226667pt;}
.ya4{bottom:423.106667pt;}
.ye3{bottom:424.066667pt;}
.y54{bottom:425.666667pt;}
.y1f{bottom:430.786667pt;}
.y7f{bottom:433.986667pt;}
.ya3{bottom:439.906667pt;}
.ye2{bottom:441.026667pt;}
.y53{bottom:442.466667pt;}
.y1e{bottom:445.346667pt;}
.y7e{bottom:452.066667pt;}
.ya2{bottom:456.866667pt;}
.ye1{bottom:457.826667pt;}
.y52{bottom:459.426667pt;}
.y1d{bottom:459.906667pt;}
.y7d{bottom:469.986667pt;}
.ya1{bottom:473.666667pt;}
.y1c{bottom:474.466667pt;}
.ye0{bottom:474.786667pt;}
.y51{bottom:476.226667pt;}
.y7c{bottom:488.066667pt;}
.y1b{bottom:489.186667pt;}
.ya0{bottom:490.466667pt;}
.ydf{bottom:492.066667pt;}
.y50{bottom:493.026667pt;}
.yb9{bottom:501.346667pt;}
.y1a{bottom:504.546667pt;}
.y7b{bottom:506.146667pt;}
.y9f{bottom:507.426667pt;}
.y4f{bottom:509.986667pt;}
.yde{bottom:510.946667pt;}
.yb8{bottom:518.146667pt;}
.y19{bottom:519.746667pt;}
.y7a{bottom:524.226667pt;}
.y4e{bottom:526.786667pt;}
.ydd{bottom:531.426667pt;}
.yb7{bottom:535.106667pt;}
.y18{bottom:535.266667pt;}
.y9e{bottom:541.213333pt;}
.y79{bottom:542.333333pt;}
.y4d{bottom:544.573333pt;}
.ydc{bottom:548.253333pt;}
.yb6{bottom:551.933333pt;}
.y9d{bottom:558.013333pt;}
.y16{bottom:558.173333pt;}
.y78{bottom:560.413333pt;}
.y4c{bottom:565.213333pt;}
.y17{bottom:569.533333pt;}
.y9c{bottom:574.813333pt;}
.y77{bottom:578.493333pt;}
.y4b{bottom:582.013333pt;}
.yb5{bottom:585.693333pt;}
.y15{bottom:586.973333pt;}
.y9b{bottom:591.773333pt;}
.y76{bottom:596.573333pt;}
.y4a{bottom:598.973333pt;}
.yb4{bottom:603.773333pt;}
.y9a{bottom:608.573333pt;}
.y13{bottom:609.853333pt;}
.y75{bottom:614.493333pt;}
.y49{bottom:615.773333pt;}
.y14{bottom:621.213333pt;}
.yb3{bottom:621.853333pt;}
.y99{bottom:625.533333pt;}
.y74{bottom:632.573333pt;}
.y48{bottom:632.733333pt;}
.y12{bottom:638.653333pt;}
.y98{bottom:642.333333pt;}
.y47{bottom:649.533333pt;}
.y73{bottom:650.653333pt;}
.y97{bottom:659.293333pt;}
.y10{bottom:661.533333pt;}
.y46{bottom:666.333333pt;}
.yc8{bottom:667.453333pt;}
.y72{bottom:668.733333pt;}
.y11{bottom:672.893333pt;}
.y96{bottom:676.093333pt;}
.y45{bottom:683.293333pt;}
.yc7{bottom:684.253333pt;}
.y71{bottom:686.813333pt;}
.yf{bottom:690.333333pt;}
.y95{bottom:692.893333pt;}
.y44{bottom:700.093333pt;}
.yc6{bottom:701.053333pt;}
.y70{bottom:704.893333pt;}
.y94{bottom:709.853333pt;}
.yd{bottom:713.213333pt;}
.y43{bottom:717.053333pt;}
.yc5{bottom:718.013333pt;}
.y6f{bottom:722.973333pt;}
.ye{bottom:724.573333pt;}
.y93{bottom:726.653333pt;}
.y42{bottom:733.853333pt;}
.yc4{bottom:734.813333pt;}
.y6e{bottom:741.053333pt;}
.yc{bottom:742.013333pt;}
.y92{bottom:743.613333pt;}
.y41{bottom:750.653333pt;}
.yc3{bottom:751.773333pt;}
.y6d{bottom:758.973333pt;}
.y91{bottom:760.413333pt;}
.ya{bottom:764.893333pt;}
.y40{bottom:767.613333pt;}
.yc2{bottom:768.573333pt;}
.yb{bottom:776.293333pt;}
.y6c{bottom:777.093333pt;}
.y90{bottom:777.253333pt;}
.y3f{bottom:784.453333pt;}
.ydb{bottom:785.413333pt;}
.yc1{bottom:785.573333pt;}
.y9{bottom:790.853333pt;}
.y8f{bottom:794.213333pt;}
.y6b{bottom:795.173333pt;}
.y3e{bottom:801.413333pt;}
.yc0{bottom:802.373333pt;}
.yda{bottom:805.893333pt;}
.y8e{bottom:811.013333pt;}
.y6a{bottom:813.253333pt;}
.y3d{bottom:818.213333pt;}
.ybf{bottom:819.173333pt;}
.yd9{bottom:822.853333pt;}
.y8{bottom:825.733333pt;}
.y8d{bottom:828.773333pt;}
.y69{bottom:831.333333pt;}
.y3c{bottom:835.013333pt;}
.ybe{bottom:836.133333pt;}
.yd8{bottom:839.653333pt;}
.y68{bottom:849.413333pt;}
.y3b{bottom:851.973333pt;}
.ybd{bottom:852.933333pt;}
.yd7{bottom:856.613333pt;}
.y67{bottom:867.493333pt;}
.y3a{bottom:868.773333pt;}
.ybc{bottom:869.893333pt;}
.yd6{bottom:873.413333pt;}
.y7{bottom:879.653333pt;}
.y66{bottom:885.573333pt;}
.y39{bottom:885.733333pt;}
.ybb{bottom:886.693333pt;}
.yd5{bottom:890.213333pt;}
.y6{bottom:902.373333pt;}
.y38{bottom:902.533333pt;}
.y65{bottom:903.493333pt;}
.yd4{bottom:907.173333pt;}
.y33{bottom:909.413333pt;}
.y5{bottom:917.573333pt;}
.y37{bottom:919.333333pt;}
.y64{bottom:921.573333pt;}
.yd3{bottom:923.973333pt;}
.y4{bottom:932.933333pt;}
.y36{bottom:936.293333pt;}
.y63{bottom:939.653333pt;}
.yb2{bottom:940.933333pt;}
.y3{bottom:950.373333pt;}
.y35{bottom:954.053333pt;}
.y62{bottom:957.733333pt;}
.y34{bottom:1041.440000pt;}
.y2{bottom:1055.520000pt;}
.y1{bottom:1059.840000pt;}
.ha{height:33.918750pt;}
.hd{height:47.109375pt;}
.hc{height:49.621875pt;}
.hb{height:50.955000pt;}
.h3{height:52.134375pt;}
.h13{height:52.785000pt;}
.h5{height:53.535000pt;}
.h11{height:57.787500pt;}
.h12{height:59.340000pt;}
.h2{height:62.812500pt;}
.h14{height:64.500000pt;}
.he{height:67.200000pt;}
.h9{height:70.978125pt;}
.h10{height:73.490625pt;}
.h6{height:75.465000pt;}
.hf{height:77.951250pt;}
.h7{height:89.193750pt;}
.h4{height:91.590000pt;}
.h8{height:125.625000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:82.560000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:72.960000pt;}
.x4{left:132.351988pt;}
.x2{left:141.786655pt;}
.x16{left:146.106655pt;}
.x17{left:149.466655pt;}
.x1f{left:152.506655pt;}
.x12{left:160.666655pt;}
.x1d{left:162.106667pt;}
.x22{left:164.506655pt;}
.x2e{left:166.266655pt;}
.x2b{left:168.346655pt;}
.x23{left:172.026655pt;}
.x20{left:173.946655pt;}
.x27{left:179.546655pt;}
.x2a{left:197.306655pt;}
.x13{left:206.266655pt;}
.x33{left:216.986655pt;}
.x1c{left:230.586655pt;}
.x1b{left:240.506655pt;}
.x14{left:244.506655pt;}
.x26{left:252.826655pt;}
.x3{left:256.706655pt;}
.x24{left:260.226655pt;}
.x1a{left:263.586655pt;}
.x31{left:265.346655pt;}
.x30{left:270.786655pt;}
.x18{left:273.186655pt;}
.x28{left:275.426655pt;}
.x21{left:276.546655pt;}
.x36{left:285.666655pt;}
.xf{left:294.466655pt;}
.x10{left:296.546643pt;}
.x5{left:301.826655pt;}
.x19{left:306.786655pt;}
.x15{left:333.826655pt;}
.x8{left:347.426643pt;}
.x9{left:352.226655pt;}
.x25{left:357.826655pt;}
.xd{left:376.386643pt;}
.xe{left:381.026655pt;}
.x2f{left:384.066655pt;}
.x6{left:390.626643pt;}
.x2c{left:391.906655pt;}
.x7{left:395.266655pt;}
.x29{left:430.013322pt;}
.x2d{left:441.373322pt;}
.xa{left:469.853310pt;}
.xb{left:474.493322pt;}
.x11{left:501.853322pt;}
.xc{left:522.653322pt;}
.x34{left:573.213322pt;}
.x35{left:579.293322pt;}
.x32{left:676.773322pt;}
.x1{left:710.373322pt;}
}




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