
    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_77122433e54b4e0302e9d513.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_473c8a67d833f149356e8a8c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3c3c44df343634f238e82f9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_79423777d7528a4626822963.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f7285c208a9e919ce388cd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_76576036b1f1abda49594368.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_067125f744939edfe43bf3b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_58985701b4c755d552b4c977.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_a56ddef09d21363c79f782d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fb3562be934d636ae62e8ffe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.059082;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_0ed052292027c94cf5c2f861.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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);}
.v1{vertical-align:-73.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-1.800000px;}
.ls11{letter-spacing:-0.804000px;}
.ls16{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.341400px;}
.ls9{letter-spacing:-0.269400px;}
.lse{letter-spacing:-0.252000px;}
.lsf{letter-spacing:-0.085200px;}
.lsd{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.028080px;}
.ls5{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.292200px;}
.ls14{letter-spacing:0.360000px;}
.ls4{letter-spacing:3.780000px;}
.ls15{letter-spacing:25.308000px;}
.ls13{letter-spacing:52.668000px;}
.ls7{letter-spacing:68.508000px;}
.ls6{letter-spacing:68.652000px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.ws2{word-spacing:-20.718600px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-15.226440px;}
.wse{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws7{word-spacing:-13.248000px;}
.ws4{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.790600px;}
.ws3{word-spacing:-11.700000px;}
.wsb{word-spacing:-10.905000px;}
.wsa{word-spacing:-10.527600px;}
.wsc{word-spacing:-9.808800px;}
.ws9{word-spacing:0.000000px;}
._5{margin-left:-2.850000px;}
._0{margin-left:-1.258560px;}
._1{width:1.450560px;}
._7{width:3.346560px;}
._a{width:4.752000px;}
._6{width:6.522000px;}
._4{width:7.992000px;}
._8{width:9.072000px;}
._9{width:10.123440px;}
._b{width:11.664000px;}
._10{width:15.243120px;}
._d{width:16.902000px;}
._e{width:17.920560px;}
._c{width:19.014000px;}
._14{width:20.149440px;}
._15{width:21.160560px;}
._16{width:22.356000px;}
._17{width:24.084000px;}
._1a{width:25.218000px;}
._12{width:26.244000px;}
._13{width:27.702000px;}
._18{width:29.214000px;}
._11{width:33.426000px;}
._19{width:34.891440px;}
._1c{width:36.025440px;}
._1b{width:37.036560px;}
._1d{width:39.366000px;}
._1e{width:40.554000px;}
._f{width:46.764000px;}
._2{width:1625.460000px;}
._3{width:1960.972800px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:5.580000px;}
.y21{bottom:11.160000px;}
.y20{bottom:29.160000px;}
.y1d{bottom:32.400000px;}
.y1c{bottom:50.220000px;}
.y52{bottom:58.500000px;}
.y1b{bottom:68.250000px;}
.y7{bottom:76.860000px;}
.y102{bottom:79.380000px;}
.y8e{bottom:85.680000px;}
.y1a{bottom:86.070000px;}
.y39{bottom:91.440000px;}
.yba{bottom:94.320000px;}
.y101{bottom:97.200000px;}
.y50{bottom:98.460000px;}
.ye7{bottom:103.140000px;}
.y8d{bottom:103.500000px;}
.y19{bottom:103.890000px;}
.y38{bottom:109.260000px;}
.yb9{bottom:112.140000px;}
.y100{bottom:115.020000px;}
.y4f{bottom:116.280000px;}
.ye6{bottom:120.960000px;}
.y8c{bottom:121.320000px;}
.y18{bottom:121.710000px;}
.y37{bottom:127.260000px;}
.yb8{bottom:129.960000px;}
.yff{bottom:132.840000px;}
.y4e{bottom:134.100000px;}
.ye5{bottom:138.780000px;}
.y8b{bottom:139.140000px;}
.y17{bottom:139.530000px;}
.yb7{bottom:147.780000px;}
.yfe{bottom:150.840000px;}
.y4d{bottom:152.100000px;}
.y36{bottom:154.620000px;}
.ye4{bottom:156.780000px;}
.y8a{bottom:156.960000px;}
.y16{bottom:157.350000px;}
.yb6{bottom:165.780000px;}
.yfd{bottom:168.660000px;}
.y4c{bottom:169.920000px;}
.ye3{bottom:174.600000px;}
.y89{bottom:174.780000px;}
.y15{bottom:175.350000px;}
.y35{bottom:181.800000px;}
.yb5{bottom:183.600000px;}
.yfc{bottom:186.480000px;}
.y4b{bottom:187.740000px;}
.ye2{bottom:192.420000px;}
.y88{bottom:192.780000px;}
.y14{bottom:193.170000px;}
.y34{bottom:199.620000px;}
.yb4{bottom:201.420000px;}
.yfb{bottom:204.300000px;}
.y4a{bottom:205.560000px;}
.ye1{bottom:210.270000px;}
.y13{bottom:210.990000px;}
.y33{bottom:217.470000px;}
.yb3{bottom:219.270000px;}
.y87{bottom:219.630000px;}
.yfa{bottom:222.150000px;}
.y49{bottom:223.410000px;}
.y12{bottom:228.810000px;}
.y32{bottom:235.470000px;}
.ye0{bottom:236.730000px;}
.y86{bottom:237.450000px;}
.yf9{bottom:239.970000px;}
.y48{bottom:241.410000px;}
.yb2{bottom:245.730000px;}
.y31{bottom:253.290000px;}
.y85{bottom:255.270000px;}
.y47{bottom:259.230000px;}
.ydf{bottom:264.090000px;}
.yf8{bottom:266.970000px;}
.y30{bottom:271.110000px;}
.y84{bottom:273.090000px;}
.y46{bottom:277.050000px;}
.yde{bottom:281.910000px;}
.yf7{bottom:284.790000px;}
.y2f{bottom:288.930000px;}
.yb1{bottom:290.910000px;}
.y83{bottom:291.090000px;}
.y45{bottom:294.870000px;}
.ydd{bottom:299.730000px;}
.yf6{bottom:302.610000px;}
.y2e{bottom:306.750000px;}
.yb0{bottom:308.730000px;}
.y82{bottom:308.910000px;}
.y44{bottom:312.690000px;}
.ydc{bottom:317.550000px;}
.yf5{bottom:320.430000px;}
.y2d{bottom:324.570000px;}
.yaf{bottom:326.550000px;}
.y81{bottom:326.730000px;}
.ydb{bottom:335.370000px;}
.yf4{bottom:338.250000px;}
.y43{bottom:339.150000px;}
.y2c{bottom:342.570000px;}
.yae{bottom:344.370000px;}
.y80{bottom:344.550000px;}
.yda{bottom:353.190000px;}
.yf3{bottom:356.250000px;}
.y2b{bottom:360.390000px;}
.yad{bottom:362.190000px;}
.y7f{bottom:362.370000px;}
.y42{bottom:366.510000px;}
.yd9{bottom:371.190000px;}
.yf2{bottom:374.070000px;}
.y2a{bottom:378.210000px;}
.y7e{bottom:380.190000px;}
.y41{bottom:384.330000px;}
.yd8{bottom:389.010000px;}
.yf1{bottom:391.890000px;}
.y29{bottom:396.030000px;}
.yac{bottom:398.010000px;}
.y7d{bottom:398.190000px;}
.y40{bottom:402.150000px;}
.yf0{bottom:409.710000px;}
.y28{bottom:413.850000px;}
.yd7{bottom:415.830000px;}
.y7c{bottom:416.010000px;}
.y3f{bottom:421.050000px;}
.yab{bottom:424.830000px;}
.yef{bottom:427.530000px;}
.y27{bottom:431.850000px;}
.yd6{bottom:433.650000px;}
.y7b{bottom:433.830000px;}
.y3e{bottom:438.870000px;}
.yaa{bottom:442.695000px;}
.y26{bottom:449.715000px;}
.yd5{bottom:451.515000px;}
.y7a{bottom:451.695000px;}
.yee{bottom:456.015000px;}
.y3d{bottom:456.735000px;}
.ya9{bottom:460.515000px;}
.y25{bottom:467.535000px;}
.yd4{bottom:469.515000px;}
.y3c{bottom:475.455000px;}
.y79{bottom:478.155000px;}
.ya8{bottom:478.515000px;}
.y24{bottom:485.355000px;}
.yd3{bottom:487.335000px;}
.y3b{bottom:493.455000px;}
.ya7{bottom:496.335000px;}
.y23{bottom:503.175000px;}
.yd2{bottom:505.155000px;}
.y78{bottom:505.515000px;}
.y3a{bottom:511.275000px;}
.ya6{bottom:514.155000px;}
.yd1{bottom:522.975000px;}
.y77{bottom:523.335000px;}
.y22{bottom:531.435000px;}
.ya5{bottom:531.975000px;}
.yd0{bottom:540.795000px;}
.y76{bottom:541.155000px;}
.ya4{bottom:549.795000px;}
.y1f{bottom:558.075000px;}
.ycf{bottom:558.615000px;}
.y75{bottom:558.975000px;}
.ya3{bottom:567.615000px;}
.yce{bottom:576.615000px;}
.y74{bottom:576.795000px;}
.ya2{bottom:585.615000px;}
.ycd{bottom:594.435000px;}
.y73{bottom:594.615000px;}
.ya1{bottom:603.435000px;}
.y11{bottom:609.195000px;}
.yed{bottom:612.255000px;}
.y72{bottom:612.615000px;}
.ya0{bottom:621.255000px;}
.yec{bottom:630.075000px;}
.y71{bottom:630.435000px;}
.ycc{bottom:639.075000px;}
.y9f{bottom:648.075000px;}
.y70{bottom:648.255000px;}
.ycb{bottom:656.895000px;}
.y9e{bottom:665.895000px;}
.y6f{bottom:666.075000px;}
.yca{bottom:674.715000px;}
.y9d{bottom:683.745000px;}
.y6e{bottom:683.925000px;}
.yc9{bottom:692.745000px;}
.y6d{bottom:701.745000px;}
.yc8{bottom:710.565000px;}
.y9c{bottom:719.565000px;}
.y6c{bottom:719.745000px;}
.yc7{bottom:728.385000px;}
.y9b{bottom:737.385000px;}
.y6b{bottom:737.565000px;}
.yc6{bottom:746.205000px;}
.y9a{bottom:755.205000px;}
.y6a{bottom:755.385000px;}
.yc5{bottom:764.025000px;}
.y99{bottom:773.025000px;}
.y69{bottom:773.205000px;}
.yeb{bottom:782.025000px;}
.y12b{bottom:784.725000px;}
.yc4{bottom:790.665000px;}
.y68{bottom:791.025000px;}
.yea{bottom:799.845000px;}
.y115{bottom:801.465000px;}
.y12a{bottom:806.505000px;}
.y98{bottom:808.845000px;}
.y67{bottom:809.025000px;}
.yc3{bottom:817.845000px;}
.y114{bottom:818.205000px;}
.y129{bottom:823.245000px;}
.ye9{bottom:826.305000px;}
.y97{bottom:826.665000px;}
.y66{bottom:826.845000px;}
.y113{bottom:834.945000px;}
.yc2{bottom:835.665000px;}
.y128{bottom:839.985000px;}
.y65{bottom:844.665000px;}
.y112{bottom:851.685000px;}
.y96{bottom:853.125000px;}
.yc1{bottom:853.485000px;}
.y127{bottom:856.725000px;}
.y64{bottom:862.485000px;}
.y10{bottom:865.725000px;}
.y111{bottom:868.425000px;}
.yc0{bottom:871.305000px;}
.y126{bottom:873.465000px;}
.y63{bottom:880.305000px;}
.y110{bottom:885.345000px;}
.ybf{bottom:889.125000px;}
.y125{bottom:890.205000px;}
.yf{bottom:892.545000px;}
.y62{bottom:898.125000px;}
.y10f{bottom:902.085000px;}
.y124{bottom:906.945000px;}
.ybe{bottom:907.125000px;}
.ye{bottom:910.365000px;}
.y61{bottom:916.170000px;}
.y10e{bottom:918.870000px;}
.y123{bottom:923.730000px;}
.ybd{bottom:924.990000px;}
.y60{bottom:933.990000px;}
.y10d{bottom:935.610000px;}
.yd{bottom:937.230000px;}
.y122{bottom:940.470000px;}
.ybc{bottom:942.810000px;}
.y5f{bottom:951.810000px;}
.y10c{bottom:952.350000px;}
.y121{bottom:957.210000px;}
.ybb{bottom:960.630000px;}
.yc{bottom:963.690000px;}
.y10b{bottom:969.090000px;}
.y5e{bottom:969.630000px;}
.y120{bottom:973.950000px;}
.ye8{bottom:978.450000px;}
.y10a{bottom:985.830000px;}
.y5d{bottom:987.450000px;}
.y11f{bottom:990.690000px;}
.yb{bottom:993.390000px;}
.y109{bottom:1002.570000px;}
.y5c{bottom:1005.450000px;}
.y11e{bottom:1007.430000px;}
.y108{bottom:1019.310000px;}
.ya{bottom:1021.470000px;}
.y5b{bottom:1023.270000px;}
.y11d{bottom:1024.350000px;}
.y107{bottom:1036.050000px;}
.y5a{bottom:1041.090000px;}
.y106{bottom:1052.790000px;}
.y9{bottom:1056.930000px;}
.y11c{bottom:1057.830000px;}
.y59{bottom:1058.910000px;}
.y95{bottom:1067.910000px;}
.y11b{bottom:1074.570000px;}
.y58{bottom:1076.730000px;}
.y105{bottom:1081.050000px;}
.y94{bottom:1085.730000px;}
.y8{bottom:1087.350000px;}
.y11a{bottom:1091.310000px;}
.y57{bottom:1094.550000px;}
.y93{bottom:1103.550000px;}
.y119{bottom:1108.050000px;}
.y56{bottom:1112.550000px;}
.y6{bottom:1113.270000px;}
.y92{bottom:1121.550000px;}
.y118{bottom:1124.790000px;}
.y55{bottom:1130.370000px;}
.y5{bottom:1132.530000px;}
.y91{bottom:1139.370000px;}
.y117{bottom:1141.530000px;}
.y104{bottom:1148.220000px;}
.y4{bottom:1150.920000px;}
.y54{bottom:1156.860000px;}
.y90{bottom:1157.220000px;}
.y116{bottom:1158.300000px;}
.y103{bottom:1166.040000px;}
.y3{bottom:1166.220000px;}
.y53{bottom:1174.680000px;}
.y8f{bottom:1175.040000px;}
.y2{bottom:1181.520000px;}
.y51{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h11{height:40.843828px;}
.h6{height:47.344922px;}
.hd{height:50.385000px;}
.hf{height:52.971680px;}
.h7{height:52.998047px;}
.hb{height:54.421875px;}
.h10{height:55.503491px;}
.ha{height:60.041250px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.h8{height:69.660000px;}
.h4{height:70.664062px;}
.he{height:72.562500px;}
.h9{height:84.898125px;}
.hc{height:250.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.098500px;}
.x5{left:54.000000px;}
.x8{left:72.901500px;}
.xb{left:81.000000px;}
.x6{left:89.676000px;}
.xa{left:95.256000px;}
.xc{left:108.036000px;}
.x11{left:231.690000px;}
.x1{left:285.015000px;}
.x2{left:303.555000px;}
.x4{left:332.715000px;}
.x3{left:353.055000px;}
.xf{left:473.505000px;}
.xd{left:500.505000px;}
.x10{left:514.725000px;}
.xe{left:527.505000px;}
.x12{left:822.420000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-1.600000pt;}
.ls11{letter-spacing:-0.714667pt;}
.ls16{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.303467pt;}
.ls9{letter-spacing:-0.239467pt;}
.lse{letter-spacing:-0.224000pt;}
.lsf{letter-spacing:-0.075733pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls5{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.259733pt;}
.ls14{letter-spacing:0.320000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls15{letter-spacing:22.496000pt;}
.ls13{letter-spacing:46.816000pt;}
.ls7{letter-spacing:60.896000pt;}
.ls6{letter-spacing:61.024000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws2{word-spacing:-18.416533pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-13.534613pt;}
.wse{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws7{word-spacing:-11.776000pt;}
.ws4{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws3{word-spacing:-10.400000pt;}
.wsb{word-spacing:-9.693333pt;}
.wsa{word-spacing:-9.357867pt;}
.wsc{word-spacing:-8.718933pt;}
.ws9{word-spacing:0.000000pt;}
._5{margin-left:-2.533333pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.289387pt;}
._7{width:2.974720pt;}
._a{width:4.224000pt;}
._6{width:5.797333pt;}
._4{width:7.104000pt;}
._8{width:8.064000pt;}
._9{width:8.998613pt;}
._b{width:10.368000pt;}
._10{width:13.549440pt;}
._d{width:15.024000pt;}
._e{width:15.929387pt;}
._c{width:16.901333pt;}
._14{width:17.910613pt;}
._15{width:18.809387pt;}
._16{width:19.872000pt;}
._17{width:21.408000pt;}
._1a{width:22.416000pt;}
._12{width:23.328000pt;}
._13{width:24.624000pt;}
._18{width:25.968000pt;}
._11{width:29.712000pt;}
._19{width:31.014613pt;}
._1c{width:32.022613pt;}
._1b{width:32.921387pt;}
._1d{width:34.992000pt;}
._1e{width:36.048000pt;}
._f{width:41.568000pt;}
._2{width:1444.853333pt;}
._3{width:1743.086933pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:4.960000pt;}
.y21{bottom:9.920000pt;}
.y20{bottom:25.920000pt;}
.y1d{bottom:28.800000pt;}
.y1c{bottom:44.640000pt;}
.y52{bottom:52.000000pt;}
.y1b{bottom:60.666667pt;}
.y7{bottom:68.320000pt;}
.y102{bottom:70.560000pt;}
.y8e{bottom:76.160000pt;}
.y1a{bottom:76.506667pt;}
.y39{bottom:81.280000pt;}
.yba{bottom:83.840000pt;}
.y101{bottom:86.400000pt;}
.y50{bottom:87.520000pt;}
.ye7{bottom:91.680000pt;}
.y8d{bottom:92.000000pt;}
.y19{bottom:92.346667pt;}
.y38{bottom:97.120000pt;}
.yb9{bottom:99.680000pt;}
.y100{bottom:102.240000pt;}
.y4f{bottom:103.360000pt;}
.ye6{bottom:107.520000pt;}
.y8c{bottom:107.840000pt;}
.y18{bottom:108.186667pt;}
.y37{bottom:113.120000pt;}
.yb8{bottom:115.520000pt;}
.yff{bottom:118.080000pt;}
.y4e{bottom:119.200000pt;}
.ye5{bottom:123.360000pt;}
.y8b{bottom:123.680000pt;}
.y17{bottom:124.026667pt;}
.yb7{bottom:131.360000pt;}
.yfe{bottom:134.080000pt;}
.y4d{bottom:135.200000pt;}
.y36{bottom:137.440000pt;}
.ye4{bottom:139.360000pt;}
.y8a{bottom:139.520000pt;}
.y16{bottom:139.866667pt;}
.yb6{bottom:147.360000pt;}
.yfd{bottom:149.920000pt;}
.y4c{bottom:151.040000pt;}
.ye3{bottom:155.200000pt;}
.y89{bottom:155.360000pt;}
.y15{bottom:155.866667pt;}
.y35{bottom:161.600000pt;}
.yb5{bottom:163.200000pt;}
.yfc{bottom:165.760000pt;}
.y4b{bottom:166.880000pt;}
.ye2{bottom:171.040000pt;}
.y88{bottom:171.360000pt;}
.y14{bottom:171.706667pt;}
.y34{bottom:177.440000pt;}
.yb4{bottom:179.040000pt;}
.yfb{bottom:181.600000pt;}
.y4a{bottom:182.720000pt;}
.ye1{bottom:186.906667pt;}
.y13{bottom:187.546667pt;}
.y33{bottom:193.306667pt;}
.yb3{bottom:194.906667pt;}
.y87{bottom:195.226667pt;}
.yfa{bottom:197.466667pt;}
.y49{bottom:198.586667pt;}
.y12{bottom:203.386667pt;}
.y32{bottom:209.306667pt;}
.ye0{bottom:210.426667pt;}
.y86{bottom:211.066667pt;}
.yf9{bottom:213.306667pt;}
.y48{bottom:214.586667pt;}
.yb2{bottom:218.426667pt;}
.y31{bottom:225.146667pt;}
.y85{bottom:226.906667pt;}
.y47{bottom:230.426667pt;}
.ydf{bottom:234.746667pt;}
.yf8{bottom:237.306667pt;}
.y30{bottom:240.986667pt;}
.y84{bottom:242.746667pt;}
.y46{bottom:246.266667pt;}
.yde{bottom:250.586667pt;}
.yf7{bottom:253.146667pt;}
.y2f{bottom:256.826667pt;}
.yb1{bottom:258.586667pt;}
.y83{bottom:258.746667pt;}
.y45{bottom:262.106667pt;}
.ydd{bottom:266.426667pt;}
.yf6{bottom:268.986667pt;}
.y2e{bottom:272.666667pt;}
.yb0{bottom:274.426667pt;}
.y82{bottom:274.586667pt;}
.y44{bottom:277.946667pt;}
.ydc{bottom:282.266667pt;}
.yf5{bottom:284.826667pt;}
.y2d{bottom:288.506667pt;}
.yaf{bottom:290.266667pt;}
.y81{bottom:290.426667pt;}
.ydb{bottom:298.106667pt;}
.yf4{bottom:300.666667pt;}
.y43{bottom:301.466667pt;}
.y2c{bottom:304.506667pt;}
.yae{bottom:306.106667pt;}
.y80{bottom:306.266667pt;}
.yda{bottom:313.946667pt;}
.yf3{bottom:316.666667pt;}
.y2b{bottom:320.346667pt;}
.yad{bottom:321.946667pt;}
.y7f{bottom:322.106667pt;}
.y42{bottom:325.786667pt;}
.yd9{bottom:329.946667pt;}
.yf2{bottom:332.506667pt;}
.y2a{bottom:336.186667pt;}
.y7e{bottom:337.946667pt;}
.y41{bottom:341.626667pt;}
.yd8{bottom:345.786667pt;}
.yf1{bottom:348.346667pt;}
.y29{bottom:352.026667pt;}
.yac{bottom:353.786667pt;}
.y7d{bottom:353.946667pt;}
.y40{bottom:357.466667pt;}
.yf0{bottom:364.186667pt;}
.y28{bottom:367.866667pt;}
.yd7{bottom:369.626667pt;}
.y7c{bottom:369.786667pt;}
.y3f{bottom:374.266667pt;}
.yab{bottom:377.626667pt;}
.yef{bottom:380.026667pt;}
.y27{bottom:383.866667pt;}
.yd6{bottom:385.466667pt;}
.y7b{bottom:385.626667pt;}
.y3e{bottom:390.106667pt;}
.yaa{bottom:393.506667pt;}
.y26{bottom:399.746667pt;}
.yd5{bottom:401.346667pt;}
.y7a{bottom:401.506667pt;}
.yee{bottom:405.346667pt;}
.y3d{bottom:405.986667pt;}
.ya9{bottom:409.346667pt;}
.y25{bottom:415.586667pt;}
.yd4{bottom:417.346667pt;}
.y3c{bottom:422.626667pt;}
.y79{bottom:425.026667pt;}
.ya8{bottom:425.346667pt;}
.y24{bottom:431.426667pt;}
.yd3{bottom:433.186667pt;}
.y3b{bottom:438.626667pt;}
.ya7{bottom:441.186667pt;}
.y23{bottom:447.266667pt;}
.yd2{bottom:449.026667pt;}
.y78{bottom:449.346667pt;}
.y3a{bottom:454.466667pt;}
.ya6{bottom:457.026667pt;}
.yd1{bottom:464.866667pt;}
.y77{bottom:465.186667pt;}
.y22{bottom:472.386667pt;}
.ya5{bottom:472.866667pt;}
.yd0{bottom:480.706667pt;}
.y76{bottom:481.026667pt;}
.ya4{bottom:488.706667pt;}
.y1f{bottom:496.066667pt;}
.ycf{bottom:496.546667pt;}
.y75{bottom:496.866667pt;}
.ya3{bottom:504.546667pt;}
.yce{bottom:512.546667pt;}
.y74{bottom:512.706667pt;}
.ya2{bottom:520.546667pt;}
.ycd{bottom:528.386667pt;}
.y73{bottom:528.546667pt;}
.ya1{bottom:536.386667pt;}
.y11{bottom:541.506667pt;}
.yed{bottom:544.226667pt;}
.y72{bottom:544.546667pt;}
.ya0{bottom:552.226667pt;}
.yec{bottom:560.066667pt;}
.y71{bottom:560.386667pt;}
.ycc{bottom:568.066667pt;}
.y9f{bottom:576.066667pt;}
.y70{bottom:576.226667pt;}
.ycb{bottom:583.906667pt;}
.y9e{bottom:591.906667pt;}
.y6f{bottom:592.066667pt;}
.yca{bottom:599.746667pt;}
.y9d{bottom:607.773333pt;}
.y6e{bottom:607.933333pt;}
.yc9{bottom:615.773333pt;}
.y6d{bottom:623.773333pt;}
.yc8{bottom:631.613333pt;}
.y9c{bottom:639.613333pt;}
.y6c{bottom:639.773333pt;}
.yc7{bottom:647.453333pt;}
.y9b{bottom:655.453333pt;}
.y6b{bottom:655.613333pt;}
.yc6{bottom:663.293333pt;}
.y9a{bottom:671.293333pt;}
.y6a{bottom:671.453333pt;}
.yc5{bottom:679.133333pt;}
.y99{bottom:687.133333pt;}
.y69{bottom:687.293333pt;}
.yeb{bottom:695.133333pt;}
.y12b{bottom:697.533333pt;}
.yc4{bottom:702.813333pt;}
.y68{bottom:703.133333pt;}
.yea{bottom:710.973333pt;}
.y115{bottom:712.413333pt;}
.y12a{bottom:716.893333pt;}
.y98{bottom:718.973333pt;}
.y67{bottom:719.133333pt;}
.yc3{bottom:726.973333pt;}
.y114{bottom:727.293333pt;}
.y129{bottom:731.773333pt;}
.ye9{bottom:734.493333pt;}
.y97{bottom:734.813333pt;}
.y66{bottom:734.973333pt;}
.y113{bottom:742.173333pt;}
.yc2{bottom:742.813333pt;}
.y128{bottom:746.653333pt;}
.y65{bottom:750.813333pt;}
.y112{bottom:757.053333pt;}
.y96{bottom:758.333333pt;}
.yc1{bottom:758.653333pt;}
.y127{bottom:761.533333pt;}
.y64{bottom:766.653333pt;}
.y10{bottom:769.533333pt;}
.y111{bottom:771.933333pt;}
.yc0{bottom:774.493333pt;}
.y126{bottom:776.413333pt;}
.y63{bottom:782.493333pt;}
.y110{bottom:786.973333pt;}
.ybf{bottom:790.333333pt;}
.y125{bottom:791.293333pt;}
.yf{bottom:793.373333pt;}
.y62{bottom:798.333333pt;}
.y10f{bottom:801.853333pt;}
.y124{bottom:806.173333pt;}
.ybe{bottom:806.333333pt;}
.ye{bottom:809.213333pt;}
.y61{bottom:814.373333pt;}
.y10e{bottom:816.773333pt;}
.y123{bottom:821.093333pt;}
.ybd{bottom:822.213333pt;}
.y60{bottom:830.213333pt;}
.y10d{bottom:831.653333pt;}
.yd{bottom:833.093333pt;}
.y122{bottom:835.973333pt;}
.ybc{bottom:838.053333pt;}
.y5f{bottom:846.053333pt;}
.y10c{bottom:846.533333pt;}
.y121{bottom:850.853333pt;}
.ybb{bottom:853.893333pt;}
.yc{bottom:856.613333pt;}
.y10b{bottom:861.413333pt;}
.y5e{bottom:861.893333pt;}
.y120{bottom:865.733333pt;}
.ye8{bottom:869.733333pt;}
.y10a{bottom:876.293333pt;}
.y5d{bottom:877.733333pt;}
.y11f{bottom:880.613333pt;}
.yb{bottom:883.013333pt;}
.y109{bottom:891.173333pt;}
.y5c{bottom:893.733333pt;}
.y11e{bottom:895.493333pt;}
.y108{bottom:906.053333pt;}
.ya{bottom:907.973333pt;}
.y5b{bottom:909.573333pt;}
.y11d{bottom:910.533333pt;}
.y107{bottom:920.933333pt;}
.y5a{bottom:925.413333pt;}
.y106{bottom:935.813333pt;}
.y9{bottom:939.493333pt;}
.y11c{bottom:940.293333pt;}
.y59{bottom:941.253333pt;}
.y95{bottom:949.253333pt;}
.y11b{bottom:955.173333pt;}
.y58{bottom:957.093333pt;}
.y105{bottom:960.933333pt;}
.y94{bottom:965.093333pt;}
.y8{bottom:966.533333pt;}
.y11a{bottom:970.053333pt;}
.y57{bottom:972.933333pt;}
.y93{bottom:980.933333pt;}
.y119{bottom:984.933333pt;}
.y56{bottom:988.933333pt;}
.y6{bottom:989.573333pt;}
.y92{bottom:996.933333pt;}
.y118{bottom:999.813333pt;}
.y55{bottom:1004.773333pt;}
.y5{bottom:1006.693333pt;}
.y91{bottom:1012.773333pt;}
.y117{bottom:1014.693333pt;}
.y104{bottom:1020.640000pt;}
.y4{bottom:1023.040000pt;}
.y54{bottom:1028.320000pt;}
.y90{bottom:1028.640000pt;}
.y116{bottom:1029.600000pt;}
.y103{bottom:1036.480000pt;}
.y3{bottom:1036.640000pt;}
.y53{bottom:1044.160000pt;}
.y8f{bottom:1044.480000pt;}
.y2{bottom:1050.240000pt;}
.y51{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h11{height:36.305625pt;}
.h6{height:42.084375pt;}
.hd{height:44.786667pt;}
.hf{height:47.085938pt;}
.h7{height:47.109375pt;}
.hb{height:48.375000pt;}
.h10{height:49.336436pt;}
.ha{height:53.370000pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.h8{height:61.920000pt;}
.h4{height:62.812500pt;}
.he{height:64.500000pt;}
.h9{height:75.465000pt;}
.hc{height:222.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.198667pt;}
.x5{left:48.000000pt;}
.x8{left:64.801333pt;}
.xb{left:72.000000pt;}
.x6{left:79.712000pt;}
.xa{left:84.672000pt;}
.xc{left:96.032000pt;}
.x11{left:205.946667pt;}
.x1{left:253.346667pt;}
.x2{left:269.826667pt;}
.x4{left:295.746667pt;}
.x3{left:313.826667pt;}
.xf{left:420.893333pt;}
.xd{left:444.893333pt;}
.x10{left:457.533333pt;}
.xe{left:468.893333pt;}
.x12{left:731.040000pt;}
.x7{left:739.200000pt;}
}




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