
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_302ba14754c057037f04bc33.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_c95de5d72a4ccd8f3ba83aa3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_d50d78a49711075076b8f0a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_3b899a10f1c28405e3f65c96.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.956055;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_b76b9d422edf60e1b3982160.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls6{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.024000px;}
.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:-22.500000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.513200px;}
.ws5{word-spacing:-16.506600px;}
.ws1{word-spacing:-16.500000px;}
.wsa{word-spacing:-15.012000px;}
.ws8{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:4.276245px;}
.ws7{word-spacing:5.874000px;}
._0{margin-left:-9.120000px;}
._18{margin-left:-3.966600px;}
._15{margin-left:-2.072400px;}
._17{margin-left:-1.012800px;}
._14{width:1.821600px;}
._4{width:3.676200px;}
._3{width:4.824600px;}
._13{width:6.494400px;}
._7{width:8.010600px;}
._1{width:9.188400px;}
._8{width:10.896600px;}
._e{width:12.025200px;}
._1a{width:13.246200px;}
._2{width:14.751000px;}
._20{width:16.333200px;}
._5{width:17.740800px;}
._11{width:19.734000px;}
._12{width:20.750400px;}
._9{width:22.671000px;}
._a{width:24.202200px;}
._b{width:25.489200px;}
._19{width:27.231600px;}
._d{width:28.485600px;}
._6{width:30.115800px;}
._1f{width:33.376200px;}
._1d{width:36.069000px;}
._1b{width:37.481400px;}
._c{width:39.501000px;}
._16{width:41.434800px;}
._10{width:43.527000px;}
._1e{width:44.767800px;}
._1c{width:53.552400px;}
._f{width:57.525600px;}
.fc4{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:42.857160px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:44.125350px;}
.y18{bottom:56.834700px;}
.y6d{bottom:60.295200px;}
.y19{bottom:60.325350px;}
.y4c{bottom:110.182950px;}
.yf4{bottom:111.334800px;}
.y87{bottom:120.252150px;}
.y6c{bottom:125.603550px;}
.y12b{bottom:129.019200px;}
.y4b{bottom:129.982950px;}
.yf3{bottom:131.134800px;}
.y10d{bottom:138.203100px;}
.y86{bottom:140.052150px;}
.y6b{bottom:145.403550px;}
.y12a{bottom:147.019200px;}
.y4a{bottom:149.782950px;}
.yf2{bottom:150.934500px;}
.y10c{bottom:158.002500px;}
.y85{bottom:159.852000px;}
.y129{bottom:165.019500px;}
.y6a{bottom:165.204000px;}
.ya1{bottom:165.580500px;}
.y49{bottom:169.582500px;}
.yf1{bottom:170.734500px;}
.y10b{bottom:177.802500px;}
.y84{bottom:179.652000px;}
.y128{bottom:183.019500px;}
.y69{bottom:185.004000px;}
.ya0{bottom:185.380500px;}
.y48{bottom:189.382500px;}
.yf0{bottom:190.534500px;}
.y15c{bottom:192.090000px;}
.y10a{bottom:197.602500px;}
.y83{bottom:199.452000px;}
.y127{bottom:201.019500px;}
.y68{bottom:204.804000px;}
.y9f{bottom:205.180500px;}
.y15b{bottom:210.090000px;}
.yef{bottom:210.334500px;}
.y109{bottom:217.402500px;}
.y126{bottom:219.019500px;}
.y82{bottom:219.252000px;}
.y47{bottom:221.938500px;}
.y9e{bottom:224.980500px;}
.y15a{bottom:228.090000px;}
.yee{bottom:230.134500px;}
.y108{bottom:237.202500px;}
.y67{bottom:237.360000px;}
.y81{bottom:239.052000px;}
.y46{bottom:241.738500px;}
.y9d{bottom:244.780500px;}
.y125{bottom:245.523000px;}
.y159{bottom:246.090000px;}
.yed{bottom:249.934500px;}
.y107{bottom:257.002500px;}
.y66{bottom:257.160000px;}
.y80{bottom:258.852000px;}
.y45{bottom:261.538500px;}
.y124{bottom:263.523000px;}
.y158{bottom:264.090000px;}
.y9c{bottom:264.580500px;}
.y65{bottom:276.960000px;}
.y7f{bottom:278.652000px;}
.y44{bottom:281.338500px;}
.y123{bottom:281.523000px;}
.y157{bottom:282.090000px;}
.yec{bottom:282.490500px;}
.y9b{bottom:284.380500px;}
.y106{bottom:289.558500px;}
.y64{bottom:296.760000px;}
.y7e{bottom:298.452000px;}
.y156{bottom:300.090000px;}
.y43{bottom:301.138500px;}
.yeb{bottom:302.290500px;}
.y9a{bottom:304.180500px;}
.y122{bottom:308.026500px;}
.y105{bottom:309.358500px;}
.y63{bottom:316.560000px;}
.y155{bottom:318.090000px;}
.y7d{bottom:318.252000px;}
.y42{bottom:320.938500px;}
.yea{bottom:322.090500px;}
.y121{bottom:326.026500px;}
.y104{bottom:329.158500px;}
.y154{bottom:336.090000px;}
.y62{bottom:336.360000px;}
.y99{bottom:336.736500px;}
.y7c{bottom:338.052000px;}
.ye9{bottom:341.890500px;}
.y120{bottom:344.026500px;}
.y153{bottom:354.090000px;}
.y61{bottom:356.160000px;}
.y98{bottom:356.536500px;}
.ye8{bottom:361.690500px;}
.y11f{bottom:362.026500px;}
.y7b{bottom:370.608000px;}
.y152{bottom:372.090000px;}
.y97{bottom:376.336500px;}
.ye7{bottom:381.490500px;}
.y41{bottom:386.050500px;}
.y11e{bottom:388.531500px;}
.y60{bottom:388.716000px;}
.y151{bottom:390.090000px;}
.y7a{bottom:390.408000px;}
.y103{bottom:394.270500px;}
.y96{bottom:396.136500px;}
.ye6{bottom:401.290500px;}
.y40{bottom:405.850500px;}
.y11d{bottom:406.531500px;}
.y150{bottom:408.090000px;}
.y5f{bottom:408.516000px;}
.y79{bottom:410.208000px;}
.y102{bottom:414.070500px;}
.y95{bottom:415.936500px;}
.ye5{bottom:421.090500px;}
.y11c{bottom:424.531500px;}
.y3f{bottom:425.650500px;}
.y14f{bottom:426.090000px;}
.y5e{bottom:428.316000px;}
.y78{bottom:430.008000px;}
.y101{bottom:433.870500px;}
.y94{bottom:435.736500px;}
.ye4{bottom:440.890500px;}
.y11b{bottom:442.531500px;}
.y14e{bottom:444.090000px;}
.y3e{bottom:445.450500px;}
.y77{bottom:449.808000px;}
.y100{bottom:453.670500px;}
.y93{bottom:455.536500px;}
.ye3{bottom:460.690500px;}
.y3d{bottom:465.250500px;}
.y76{bottom:469.608000px;}
.yff{bottom:473.470500px;}
.y14d{bottom:474.846000px;}
.y92{bottom:475.336500px;}
.y11a{bottom:477.538500px;}
.ye2{bottom:480.490500px;}
.y3c{bottom:485.050500px;}
.y75{bottom:489.408000px;}
.y14c{bottom:492.846000px;}
.yfe{bottom:493.270500px;}
.ye1{bottom:500.290500px;}
.y3b{bottom:504.850500px;}
.y91{bottom:507.892500px;}
.y74{bottom:509.208000px;}
.y14b{bottom:510.846000px;}
.yfd{bottom:513.070500px;}
.ye0{bottom:520.090500px;}
.y3a{bottom:524.650500px;}
.y90{bottom:527.692500px;}
.y14a{bottom:528.846000px;}
.yfc{bottom:532.870500px;}
.y13{bottom:536.470500px;}
.ydf{bottom:539.890500px;}
.y73{bottom:541.764000px;}
.y17{bottom:543.516000px;}
.y39{bottom:544.450500px;}
.y149{bottom:546.846000px;}
.y8f{bottom:547.492500px;}
.yfb{bottom:552.670500px;}
.y12{bottom:556.270500px;}
.y119{bottom:557.206500px;}
.yde{bottom:559.690500px;}
.y72{bottom:561.564000px;}
.y16{bottom:563.316000px;}
.y38{bottom:564.250500px;}
.y148{bottom:564.846000px;}
.y8e{bottom:567.292500px;}
.yfa{bottom:572.470500px;}
.y11{bottom:576.070500px;}
.ybc{bottom:576.982500px;}
.y118{bottom:577.006500px;}
.y71{bottom:581.364000px;}
.yd8{bottom:582.735000px;}
.y147{bottom:582.846000px;}
.y8d{bottom:587.092500px;}
.ydd{bottom:592.246500px;}
.yf9{bottom:592.270500px;}
.y10{bottom:595.870500px;}
.ybb{bottom:596.782500px;}
.y37{bottom:596.806500px;}
.y146{bottom:600.846000px;}
.yd7{bottom:602.535000px;}
.y8c{bottom:606.892500px;}
.ydc{bottom:612.046500px;}
.yf8{bottom:612.070500px;}
.yf{bottom:615.670500px;}
.yba{bottom:616.582500px;}
.y36{bottom:616.606500px;}
.y145{bottom:618.846000px;}
.yd6{bottom:622.335000px;}
.y8b{bottom:626.692500px;}
.ydb{bottom:631.846500px;}
.yf7{bottom:631.870500px;}
.ye{bottom:635.470500px;}
.yb9{bottom:636.382500px;}
.y35{bottom:636.406500px;}
.y144{bottom:636.846000px;}
.yd5{bottom:642.135000px;}
.y70{bottom:646.476000px;}
.y8a{bottom:646.492500px;}
.yda{bottom:651.646500px;}
.yf6{bottom:651.670500px;}
.y143{bottom:654.846000px;}
.yd{bottom:655.270500px;}
.yb8{bottom:656.182500px;}
.y34{bottom:656.206500px;}
.yd4{bottom:661.935000px;}
.y6f{bottom:666.276000px;}
.y89{bottom:666.292500px;}
.yd9{bottom:671.446500px;}
.yf5{bottom:671.470500px;}
.y142{bottom:672.846000px;}
.yc{bottom:675.070500px;}
.yb7{bottom:675.982500px;}
.y33{bottom:676.006500px;}
.yd3{bottom:681.735000px;}
.y6e{bottom:686.076000px;}
.y88{bottom:686.092500px;}
.y141{bottom:690.846000px;}
.yb{bottom:694.870500px;}
.y32{bottom:695.806500px;}
.yd2{bottom:701.535000px;}
.y140{bottom:708.846000px;}
.ya{bottom:714.670500px;}
.y31{bottom:715.606500px;}
.y5d{bottom:721.318500px;}
.yd1{bottom:721.335000px;}
.y13f{bottom:726.846000px;}
.y117{bottom:728.362500px;}
.y9{bottom:734.470500px;}
.yb6{bottom:741.094500px;}
.y5c{bottom:741.118500px;}
.yd0{bottom:741.135000px;}
.y13e{bottom:744.846000px;}
.y30{bottom:748.162500px;}
.y15{bottom:754.270500px;}
.yb5{bottom:760.894500px;}
.y5b{bottom:760.918500px;}
.ycf{bottom:760.935000px;}
.y13d{bottom:762.846000px;}
.y8{bottom:767.026500px;}
.y2f{bottom:767.962500px;}
.y14{bottom:774.070500px;}
.yb4{bottom:780.694500px;}
.y5a{bottom:780.718500px;}
.yce{bottom:780.735000px;}
.y13c{bottom:780.846000px;}
.y7{bottom:786.826500px;}
.y2e{bottom:787.762500px;}
.y13b{bottom:798.846000px;}
.yb3{bottom:800.494500px;}
.y59{bottom:800.518500px;}
.y6{bottom:806.626500px;}
.y2d{bottom:807.562500px;}
.ycd{bottom:813.291000px;}
.y13a{bottom:816.846000px;}
.yb2{bottom:820.294500px;}
.y58{bottom:820.318500px;}
.y5{bottom:826.426500px;}
.y2c{bottom:827.362500px;}
.ycc{bottom:833.091000px;}
.yb1{bottom:840.094500px;}
.y4{bottom:846.226500px;}
.y2b{bottom:847.162500px;}
.y139{bottom:847.602000px;}
.y57{bottom:852.874500px;}
.ycb{bottom:852.891000px;}
.y116{bottom:859.918500px;}
.y3{bottom:866.026500px;}
.y2a{bottom:866.962500px;}
.yb0{bottom:872.650500px;}
.y56{bottom:872.674500px;}
.yca{bottom:872.691000px;}
.y115{bottom:879.718500px;}
.y29{bottom:886.762500px;}
.yaf{bottom:892.450500px;}
.y55{bottom:892.474500px;}
.yc9{bottom:892.491000px;}
.y114{bottom:899.518500px;}
.y138{bottom:902.409000px;}
.y28{bottom:906.562500px;}
.yae{bottom:912.250500px;}
.y54{bottom:912.274500px;}
.yc8{bottom:912.291000px;}
.y137{bottom:920.409000px;}
.y27{bottom:926.362500px;}
.yad{bottom:932.050500px;}
.y53{bottom:932.074500px;}
.yc7{bottom:932.091000px;}
.y136{bottom:938.409000px;}
.y1d{bottom:949.635000px;}
.yac{bottom:951.850500px;}
.y52{bottom:951.874500px;}
.y135{bottom:956.409000px;}
.y26{bottom:958.918500px;}
.y113{bottom:964.630500px;}
.yc6{bottom:964.647000px;}
.yab{bottom:971.650500px;}
.y51{bottom:971.674500px;}
.y25{bottom:978.718500px;}
.y134{bottom:982.914000px;}
.y112{bottom:984.430500px;}
.yc5{bottom:984.447000px;}
.yaa{bottom:991.450500px;}
.y50{bottom:991.474500px;}
.y1c{bottom:992.835000px;}
.y24{bottom:998.518500px;}
.y133{bottom:1000.914000px;}
.y111{bottom:1004.230500px;}
.yc4{bottom:1004.247000px;}
.ya9{bottom:1011.250500px;}
.y4f{bottom:1011.274500px;}
.y23{bottom:1018.318500px;}
.y132{bottom:1018.914000px;}
.y110{bottom:1024.030500px;}
.yc3{bottom:1024.047000px;}
.y1b{bottom:1028.835000px;}
.y4e{bottom:1031.074500px;}
.y131{bottom:1036.914000px;}
.ya8{bottom:1043.806500px;}
.y10f{bottom:1043.830500px;}
.yc2{bottom:1043.847000px;}
.y4d{bottom:1050.874500px;}
.y130{bottom:1063.417500px;}
.ya7{bottom:1063.606500px;}
.y10e{bottom:1063.630500px;}
.yc1{bottom:1063.647000px;}
.y12f{bottom:1081.417500px;}
.ya6{bottom:1083.406500px;}
.y22{bottom:1083.430500px;}
.yc0{bottom:1083.447000px;}
.y2{bottom:1100.785500px;}
.ya5{bottom:1103.206500px;}
.y21{bottom:1103.230500px;}
.ybf{bottom:1103.247000px;}
.y12e{bottom:1107.921000px;}
.ya4{bottom:1123.006500px;}
.y20{bottom:1123.030500px;}
.ybe{bottom:1123.047000px;}
.y12d{bottom:1125.921000px;}
.ya3{bottom:1142.806500px;}
.y1f{bottom:1142.830500px;}
.ybd{bottom:1142.847000px;}
.y12c{bottom:1143.921000px;}
.y1{bottom:1159.671000px;}
.ya2{bottom:1203.561000px;}
.y1e{bottom:1203.604500px;}
.h7{height:39.313477px;}
.h6{height:39.366211px;}
.hf{height:43.681641px;}
.he{height:43.740234px;}
.hc{height:47.888672px;}
.h4{height:48.049805px;}
.h5{height:48.114258px;}
.hd{height:49.042969px;}
.ha{height:52.417969px;}
.hb{height:52.488281px;}
.h3{height:65.610352px;}
.h9{height:87.480469px;}
.h2{height:171.000000px;}
.h8{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:44.645700px;}
.xc{left:46.771650px;}
.x4{left:108.000000px;}
.xf{left:125.007900px;}
.x1{left:127.657350px;}
.x3{left:129.259800px;}
.x2{left:131.834700px;}
.x9{left:162.636000px;}
.xb{left:276.850500px;}
.xa{left:279.025500px;}
.x5{left:467.716500px;}
.x10{left:484.725000px;}
.x6{left:488.976000px;}
.xe{left:730.617000px;}
.x8{left:833.893500px;}
.x7{left:836.019000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls6{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.021333pt;}
.ws0{word-spacing:-20.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.678400pt;}
.ws5{word-spacing:-14.672533pt;}
.ws1{word-spacing:-14.666667pt;}
.wsa{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:3.801107pt;}
.ws7{word-spacing:5.221333pt;}
._0{margin-left:-8.106667pt;}
._18{margin-left:-3.525867pt;}
._15{margin-left:-1.842133pt;}
._17{margin-left:-0.900267pt;}
._14{width:1.619200pt;}
._4{width:3.267733pt;}
._3{width:4.288533pt;}
._13{width:5.772800pt;}
._7{width:7.120533pt;}
._1{width:8.167467pt;}
._8{width:9.685867pt;}
._e{width:10.689067pt;}
._1a{width:11.774400pt;}
._2{width:13.112000pt;}
._20{width:14.518400pt;}
._5{width:15.769600pt;}
._11{width:17.541333pt;}
._12{width:18.444800pt;}
._9{width:20.152000pt;}
._a{width:21.513067pt;}
._b{width:22.657067pt;}
._19{width:24.205867pt;}
._d{width:25.320533pt;}
._6{width:26.769600pt;}
._1f{width:29.667733pt;}
._1d{width:32.061333pt;}
._1b{width:33.316800pt;}
._c{width:35.112000pt;}
._16{width:36.830933pt;}
._10{width:38.690667pt;}
._1e{width:39.793600pt;}
._1c{width:47.602133pt;}
._f{width:51.133867pt;}
.fs7{font-size:38.095253pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:39.222533pt;}
.y18{bottom:50.519733pt;}
.y6d{bottom:53.595733pt;}
.y19{bottom:53.622533pt;}
.y4c{bottom:97.940400pt;}
.yf4{bottom:98.964267pt;}
.y87{bottom:106.890800pt;}
.y6c{bottom:111.647600pt;}
.y12b{bottom:114.683733pt;}
.y4b{bottom:115.540400pt;}
.yf3{bottom:116.564267pt;}
.y10d{bottom:122.847200pt;}
.y86{bottom:124.490800pt;}
.y6b{bottom:129.247600pt;}
.y12a{bottom:130.683733pt;}
.y4a{bottom:133.140400pt;}
.yf2{bottom:134.164000pt;}
.y10c{bottom:140.446667pt;}
.y85{bottom:142.090667pt;}
.y129{bottom:146.684000pt;}
.y6a{bottom:146.848000pt;}
.ya1{bottom:147.182667pt;}
.y49{bottom:150.740000pt;}
.yf1{bottom:151.764000pt;}
.y10b{bottom:158.046667pt;}
.y84{bottom:159.690667pt;}
.y128{bottom:162.684000pt;}
.y69{bottom:164.448000pt;}
.ya0{bottom:164.782667pt;}
.y48{bottom:168.340000pt;}
.yf0{bottom:169.364000pt;}
.y15c{bottom:170.746667pt;}
.y10a{bottom:175.646667pt;}
.y83{bottom:177.290667pt;}
.y127{bottom:178.684000pt;}
.y68{bottom:182.048000pt;}
.y9f{bottom:182.382667pt;}
.y15b{bottom:186.746667pt;}
.yef{bottom:186.964000pt;}
.y109{bottom:193.246667pt;}
.y126{bottom:194.684000pt;}
.y82{bottom:194.890667pt;}
.y47{bottom:197.278667pt;}
.y9e{bottom:199.982667pt;}
.y15a{bottom:202.746667pt;}
.yee{bottom:204.564000pt;}
.y108{bottom:210.846667pt;}
.y67{bottom:210.986667pt;}
.y81{bottom:212.490667pt;}
.y46{bottom:214.878667pt;}
.y9d{bottom:217.582667pt;}
.y125{bottom:218.242667pt;}
.y159{bottom:218.746667pt;}
.yed{bottom:222.164000pt;}
.y107{bottom:228.446667pt;}
.y66{bottom:228.586667pt;}
.y80{bottom:230.090667pt;}
.y45{bottom:232.478667pt;}
.y124{bottom:234.242667pt;}
.y158{bottom:234.746667pt;}
.y9c{bottom:235.182667pt;}
.y65{bottom:246.186667pt;}
.y7f{bottom:247.690667pt;}
.y44{bottom:250.078667pt;}
.y123{bottom:250.242667pt;}
.y157{bottom:250.746667pt;}
.yec{bottom:251.102667pt;}
.y9b{bottom:252.782667pt;}
.y106{bottom:257.385333pt;}
.y64{bottom:263.786667pt;}
.y7e{bottom:265.290667pt;}
.y156{bottom:266.746667pt;}
.y43{bottom:267.678667pt;}
.yeb{bottom:268.702667pt;}
.y9a{bottom:270.382667pt;}
.y122{bottom:273.801333pt;}
.y105{bottom:274.985333pt;}
.y63{bottom:281.386667pt;}
.y155{bottom:282.746667pt;}
.y7d{bottom:282.890667pt;}
.y42{bottom:285.278667pt;}
.yea{bottom:286.302667pt;}
.y121{bottom:289.801333pt;}
.y104{bottom:292.585333pt;}
.y154{bottom:298.746667pt;}
.y62{bottom:298.986667pt;}
.y99{bottom:299.321333pt;}
.y7c{bottom:300.490667pt;}
.ye9{bottom:303.902667pt;}
.y120{bottom:305.801333pt;}
.y153{bottom:314.746667pt;}
.y61{bottom:316.586667pt;}
.y98{bottom:316.921333pt;}
.ye8{bottom:321.502667pt;}
.y11f{bottom:321.801333pt;}
.y7b{bottom:329.429333pt;}
.y152{bottom:330.746667pt;}
.y97{bottom:334.521333pt;}
.ye7{bottom:339.102667pt;}
.y41{bottom:343.156000pt;}
.y11e{bottom:345.361333pt;}
.y60{bottom:345.525333pt;}
.y151{bottom:346.746667pt;}
.y7a{bottom:347.029333pt;}
.y103{bottom:350.462667pt;}
.y96{bottom:352.121333pt;}
.ye6{bottom:356.702667pt;}
.y40{bottom:360.756000pt;}
.y11d{bottom:361.361333pt;}
.y150{bottom:362.746667pt;}
.y5f{bottom:363.125333pt;}
.y79{bottom:364.629333pt;}
.y102{bottom:368.062667pt;}
.y95{bottom:369.721333pt;}
.ye5{bottom:374.302667pt;}
.y11c{bottom:377.361333pt;}
.y3f{bottom:378.356000pt;}
.y14f{bottom:378.746667pt;}
.y5e{bottom:380.725333pt;}
.y78{bottom:382.229333pt;}
.y101{bottom:385.662667pt;}
.y94{bottom:387.321333pt;}
.ye4{bottom:391.902667pt;}
.y11b{bottom:393.361333pt;}
.y14e{bottom:394.746667pt;}
.y3e{bottom:395.956000pt;}
.y77{bottom:399.829333pt;}
.y100{bottom:403.262667pt;}
.y93{bottom:404.921333pt;}
.ye3{bottom:409.502667pt;}
.y3d{bottom:413.556000pt;}
.y76{bottom:417.429333pt;}
.yff{bottom:420.862667pt;}
.y14d{bottom:422.085333pt;}
.y92{bottom:422.521333pt;}
.y11a{bottom:424.478667pt;}
.ye2{bottom:427.102667pt;}
.y3c{bottom:431.156000pt;}
.y75{bottom:435.029333pt;}
.y14c{bottom:438.085333pt;}
.yfe{bottom:438.462667pt;}
.ye1{bottom:444.702667pt;}
.y3b{bottom:448.756000pt;}
.y91{bottom:451.460000pt;}
.y74{bottom:452.629333pt;}
.y14b{bottom:454.085333pt;}
.yfd{bottom:456.062667pt;}
.ye0{bottom:462.302667pt;}
.y3a{bottom:466.356000pt;}
.y90{bottom:469.060000pt;}
.y14a{bottom:470.085333pt;}
.yfc{bottom:473.662667pt;}
.y13{bottom:476.862667pt;}
.ydf{bottom:479.902667pt;}
.y73{bottom:481.568000pt;}
.y17{bottom:483.125333pt;}
.y39{bottom:483.956000pt;}
.y149{bottom:486.085333pt;}
.y8f{bottom:486.660000pt;}
.yfb{bottom:491.262667pt;}
.y12{bottom:494.462667pt;}
.y119{bottom:495.294667pt;}
.yde{bottom:497.502667pt;}
.y72{bottom:499.168000pt;}
.y16{bottom:500.725333pt;}
.y38{bottom:501.556000pt;}
.y148{bottom:502.085333pt;}
.y8e{bottom:504.260000pt;}
.yfa{bottom:508.862667pt;}
.y11{bottom:512.062667pt;}
.ybc{bottom:512.873333pt;}
.y118{bottom:512.894667pt;}
.y71{bottom:516.768000pt;}
.yd8{bottom:517.986667pt;}
.y147{bottom:518.085333pt;}
.y8d{bottom:521.860000pt;}
.ydd{bottom:526.441333pt;}
.yf9{bottom:526.462667pt;}
.y10{bottom:529.662667pt;}
.ybb{bottom:530.473333pt;}
.y37{bottom:530.494667pt;}
.y146{bottom:534.085333pt;}
.yd7{bottom:535.586667pt;}
.y8c{bottom:539.460000pt;}
.ydc{bottom:544.041333pt;}
.yf8{bottom:544.062667pt;}
.yf{bottom:547.262667pt;}
.yba{bottom:548.073333pt;}
.y36{bottom:548.094667pt;}
.y145{bottom:550.085333pt;}
.yd6{bottom:553.186667pt;}
.y8b{bottom:557.060000pt;}
.ydb{bottom:561.641333pt;}
.yf7{bottom:561.662667pt;}
.ye{bottom:564.862667pt;}
.yb9{bottom:565.673333pt;}
.y35{bottom:565.694667pt;}
.y144{bottom:566.085333pt;}
.yd5{bottom:570.786667pt;}
.y70{bottom:574.645333pt;}
.y8a{bottom:574.660000pt;}
.yda{bottom:579.241333pt;}
.yf6{bottom:579.262667pt;}
.y143{bottom:582.085333pt;}
.yd{bottom:582.462667pt;}
.yb8{bottom:583.273333pt;}
.y34{bottom:583.294667pt;}
.yd4{bottom:588.386667pt;}
.y6f{bottom:592.245333pt;}
.y89{bottom:592.260000pt;}
.yd9{bottom:596.841333pt;}
.yf5{bottom:596.862667pt;}
.y142{bottom:598.085333pt;}
.yc{bottom:600.062667pt;}
.yb7{bottom:600.873333pt;}
.y33{bottom:600.894667pt;}
.yd3{bottom:605.986667pt;}
.y6e{bottom:609.845333pt;}
.y88{bottom:609.860000pt;}
.y141{bottom:614.085333pt;}
.yb{bottom:617.662667pt;}
.y32{bottom:618.494667pt;}
.yd2{bottom:623.586667pt;}
.y140{bottom:630.085333pt;}
.ya{bottom:635.262667pt;}
.y31{bottom:636.094667pt;}
.y5d{bottom:641.172000pt;}
.yd1{bottom:641.186667pt;}
.y13f{bottom:646.085333pt;}
.y117{bottom:647.433333pt;}
.y9{bottom:652.862667pt;}
.yb6{bottom:658.750667pt;}
.y5c{bottom:658.772000pt;}
.yd0{bottom:658.786667pt;}
.y13e{bottom:662.085333pt;}
.y30{bottom:665.033333pt;}
.y15{bottom:670.462667pt;}
.yb5{bottom:676.350667pt;}
.y5b{bottom:676.372000pt;}
.ycf{bottom:676.386667pt;}
.y13d{bottom:678.085333pt;}
.y8{bottom:681.801333pt;}
.y2f{bottom:682.633333pt;}
.y14{bottom:688.062667pt;}
.yb4{bottom:693.950667pt;}
.y5a{bottom:693.972000pt;}
.yce{bottom:693.986667pt;}
.y13c{bottom:694.085333pt;}
.y7{bottom:699.401333pt;}
.y2e{bottom:700.233333pt;}
.y13b{bottom:710.085333pt;}
.yb3{bottom:711.550667pt;}
.y59{bottom:711.572000pt;}
.y6{bottom:717.001333pt;}
.y2d{bottom:717.833333pt;}
.ycd{bottom:722.925333pt;}
.y13a{bottom:726.085333pt;}
.yb2{bottom:729.150667pt;}
.y58{bottom:729.172000pt;}
.y5{bottom:734.601333pt;}
.y2c{bottom:735.433333pt;}
.ycc{bottom:740.525333pt;}
.yb1{bottom:746.750667pt;}
.y4{bottom:752.201333pt;}
.y2b{bottom:753.033333pt;}
.y139{bottom:753.424000pt;}
.y57{bottom:758.110667pt;}
.ycb{bottom:758.125333pt;}
.y116{bottom:764.372000pt;}
.y3{bottom:769.801333pt;}
.y2a{bottom:770.633333pt;}
.yb0{bottom:775.689333pt;}
.y56{bottom:775.710667pt;}
.yca{bottom:775.725333pt;}
.y115{bottom:781.972000pt;}
.y29{bottom:788.233333pt;}
.yaf{bottom:793.289333pt;}
.y55{bottom:793.310667pt;}
.yc9{bottom:793.325333pt;}
.y114{bottom:799.572000pt;}
.y138{bottom:802.141333pt;}
.y28{bottom:805.833333pt;}
.yae{bottom:810.889333pt;}
.y54{bottom:810.910667pt;}
.yc8{bottom:810.925333pt;}
.y137{bottom:818.141333pt;}
.y27{bottom:823.433333pt;}
.yad{bottom:828.489333pt;}
.y53{bottom:828.510667pt;}
.yc7{bottom:828.525333pt;}
.y136{bottom:834.141333pt;}
.y1d{bottom:844.120000pt;}
.yac{bottom:846.089333pt;}
.y52{bottom:846.110667pt;}
.y135{bottom:850.141333pt;}
.y26{bottom:852.372000pt;}
.y113{bottom:857.449333pt;}
.yc6{bottom:857.464000pt;}
.yab{bottom:863.689333pt;}
.y51{bottom:863.710667pt;}
.y25{bottom:869.972000pt;}
.y134{bottom:873.701333pt;}
.y112{bottom:875.049333pt;}
.yc5{bottom:875.064000pt;}
.yaa{bottom:881.289333pt;}
.y50{bottom:881.310667pt;}
.y1c{bottom:882.520000pt;}
.y24{bottom:887.572000pt;}
.y133{bottom:889.701333pt;}
.y111{bottom:892.649333pt;}
.yc4{bottom:892.664000pt;}
.ya9{bottom:898.889333pt;}
.y4f{bottom:898.910667pt;}
.y23{bottom:905.172000pt;}
.y132{bottom:905.701333pt;}
.y110{bottom:910.249333pt;}
.yc3{bottom:910.264000pt;}
.y1b{bottom:914.520000pt;}
.y4e{bottom:916.510667pt;}
.y131{bottom:921.701333pt;}
.ya8{bottom:927.828000pt;}
.y10f{bottom:927.849333pt;}
.yc2{bottom:927.864000pt;}
.y4d{bottom:934.110667pt;}
.y130{bottom:945.260000pt;}
.ya7{bottom:945.428000pt;}
.y10e{bottom:945.449333pt;}
.yc1{bottom:945.464000pt;}
.y12f{bottom:961.260000pt;}
.ya6{bottom:963.028000pt;}
.y22{bottom:963.049333pt;}
.yc0{bottom:963.064000pt;}
.y2{bottom:978.476000pt;}
.ya5{bottom:980.628000pt;}
.y21{bottom:980.649333pt;}
.ybf{bottom:980.664000pt;}
.y12e{bottom:984.818667pt;}
.ya4{bottom:998.228000pt;}
.y20{bottom:998.249333pt;}
.ybe{bottom:998.264000pt;}
.y12d{bottom:1000.818667pt;}
.ya3{bottom:1015.828000pt;}
.y1f{bottom:1015.849333pt;}
.ybd{bottom:1015.864000pt;}
.y12c{bottom:1016.818667pt;}
.y1{bottom:1030.818667pt;}
.ya2{bottom:1069.832000pt;}
.y1e{bottom:1069.870667pt;}
.h7{height:34.945312pt;}
.h6{height:34.992188pt;}
.hf{height:38.828125pt;}
.he{height:38.880208pt;}
.hc{height:42.567708pt;}
.h4{height:42.710938pt;}
.h5{height:42.768229pt;}
.hd{height:43.593750pt;}
.ha{height:46.593750pt;}
.hb{height:46.656250pt;}
.h3{height:58.320312pt;}
.h9{height:77.760417pt;}
.h2{height:152.000000pt;}
.h8{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:39.685067pt;}
.xc{left:41.574800pt;}
.x4{left:96.000000pt;}
.xf{left:111.118133pt;}
.x1{left:113.473200pt;}
.x3{left:114.897600pt;}
.x2{left:117.186400pt;}
.x9{left:144.565333pt;}
.xb{left:246.089333pt;}
.xa{left:248.022667pt;}
.x5{left:415.748000pt;}
.x10{left:430.866667pt;}
.x6{left:434.645333pt;}
.xe{left:649.437333pt;}
.x8{left:741.238667pt;}
.x7{left:743.128000pt;}
}




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