
    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_fbb38dbf1e5ed188375d0912.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027832;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_1f5242a50dd4af250c573e02.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_e5d9c04fa91e2ceba925821f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.988281;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_25a7163e90f08553a263ed32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_8eb40df1504aa4581708e6d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.737305;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_a19d48b24d3f35e975f44796.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956543;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_32f0bc9457486d2d5a182739.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.848145;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_6a5725748a5ff635af4af5c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_e6eb558974fed79cb5a169fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979980;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_eb55d0bf3f53cfb74c606747.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.979980;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);}
.v2{vertical-align:-20.116800px;}
.v3{vertical-align:-18.105600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.116800px;}
.ls20{letter-spacing:-2.766000px;}
.ls1b{letter-spacing:-0.246000px;}
.ls1a{letter-spacing:-0.025200px;}
.ls2{letter-spacing:-0.021600px;}
.ls8{letter-spacing:-0.019200px;}
.ls14{letter-spacing:-0.018000px;}
.lsf{letter-spacing:-0.016800px;}
.ls5{letter-spacing:-0.014400px;}
.ls9{letter-spacing:-0.012000px;}
.ls3{letter-spacing:-0.007200px;}
.lsa{letter-spacing:-0.006000px;}
.ls1d{letter-spacing:-0.005400px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls18{letter-spacing:0.007140px;}
.lsc{letter-spacing:0.008400px;}
.ls6{letter-spacing:0.009600px;}
.ls0{letter-spacing:0.010140px;}
.lsb{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.014400px;}
.ls1c{letter-spacing:0.672000px;}
.ls16{letter-spacing:1.839999px;}
.ls13{letter-spacing:2.562000px;}
.ls1e{letter-spacing:2.694000px;}
.ls19{letter-spacing:4.056000px;}
.ls12{letter-spacing:5.748000px;}
.ls1f{letter-spacing:6.249600px;}
.lse{letter-spacing:7.322400px;}
.ls17{letter-spacing:7.839999px;}
.ls10{letter-spacing:8.508000px;}
.ls11{letter-spacing:9.108000px;}
.ls15{letter-spacing:10.786200px;}
.lsd{letter-spacing:65.687400px;}
.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;}
}
.wsb{word-spacing:-26.880000px;}
.wsd{word-spacing:-23.494800px;}
.ws14{word-spacing:-20.016000px;}
.ws0{word-spacing:-19.944000px;}
.ws8{word-spacing:-16.806000px;}
.wse{word-spacing:-16.800000px;}
.ws7{word-spacing:-16.794000px;}
.ws10{word-spacing:-16.788000px;}
.wsa{word-spacing:-16.626000px;}
.ws4{word-spacing:-16.620000px;}
.ws3{word-spacing:-16.608000px;}
.ws15{word-spacing:-16.602000px;}
.wsf{word-spacing:-16.374000px;}
.ws17{word-spacing:-14.958000px;}
.ws16{word-spacing:-13.854000px;}
.ws11{word-spacing:-11.080001px;}
.wsc{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.086400px;}
.ws6{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:5.396580px;}
.ws2{word-spacing:11.506380px;}
.ws9{word-spacing:35.531400px;}
._14{margin-left:-699.164100px;}
._10{margin-left:-16.179600px;}
._13{margin-left:-13.765200px;}
._12{margin-left:-9.296400px;}
._11{margin-left:-8.221200px;}
._d{margin-left:-6.552000px;}
._8{margin-left:-4.674000px;}
._3{margin-left:-3.492000px;}
._1{margin-left:-2.160000px;}
._6{margin-left:-1.003200px;}
._1a{width:1.000800px;}
._0{width:2.001600px;}
._5{width:3.216000px;}
._4{width:4.392000px;}
._7{width:5.490000px;}
._2{width:6.582000px;}
._c{width:8.421600px;}
._9{width:9.822000px;}
._a{width:11.730000px;}
._b{width:13.124400px;}
._f{width:14.232000px;}
._18{width:15.384000px;}
._1d{width:16.648800px;}
._15{width:18.036000px;}
._19{width:19.628400px;}
._16{width:20.724000px;}
._17{width:28.924980px;}
._1c{width:30.540000px;}
._1b{width:31.908000px;}
._e{width:65.687400px;}
.fc4{color:rgb(0,21,129);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,31,103);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.000002px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.ye1{bottom:-5.250000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.000000px;}
.y4{bottom:12.000000px;}
.yde{bottom:13.500000px;}
.y69{bottom:21.050250px;}
.y65{bottom:21.410550px;}
.ydf{bottom:24.000000px;}
.y62{bottom:31.510050px;}
.y3{bottom:34.500000px;}
.y68{bottom:43.550250px;}
.y64{bottom:43.910550px;}
.y67{bottom:46.475400px;}
.ye4{bottom:54.000000px;}
.y2a{bottom:55.500000px;}
.y4f{bottom:162.000000px;}
.yb6{bottom:166.500000px;}
.yf3{bottom:172.500000px;}
.yc7{bottom:174.900150px;}
.y4e{bottom:180.000000px;}
.y8e{bottom:183.026400px;}
.yb5{bottom:184.500000px;}
.yf2{bottom:189.000000px;}
.yc6{bottom:192.900150px;}
.yef{bottom:193.500000px;}
.yb4{bottom:202.500000px;}
.yf1{bottom:205.500000px;}
.y4d{bottom:207.000000px;}
.yc5{bottom:210.900150px;}
.yee{bottom:211.500000px;}
.y8d{bottom:214.526400px;}
.ydc{bottom:219.000000px;}
.yf0{bottom:222.000000px;}
.y4c{bottom:225.000000px;}
.yc4{bottom:228.900150px;}
.yb3{bottom:229.500000px;}
.y29{bottom:234.000000px;}
.ydb{bottom:237.000000px;}
.yc3{bottom:246.900150px;}
.yed{bottom:247.500000px;}
.y28{bottom:252.000000px;}
.y6{bottom:253.500000px;}
.yda{bottom:255.000000px;}
.yb2{bottom:256.500000px;}
.yec{bottom:265.500000px;}
.y27{bottom:270.000000px;}
.yd9{bottom:273.000000px;}
.yb1{bottom:274.500000px;}
.y4b{bottom:280.500000px;}
.y26{bottom:288.000000px;}
.y8c{bottom:291.000000px;}
.yb0{bottom:292.500000px;}
.y5d{bottom:297.000000px;}
.yd8{bottom:300.000000px;}
.y25{bottom:306.000000px;}
.y8b{bottom:309.000000px;}
.yaf{bottom:310.500000px;}
.y5{bottom:315.000000px;}
.yd7{bottom:318.000000px;}
.y24{bottom:324.000000px;}
.y8a{bottom:327.000000px;}
.yae{bottom:328.500000px;}
.y4a{bottom:331.500000px;}
.y5c{bottom:333.000000px;}
.yd6{bottom:336.000000px;}
.y89{bottom:345.000000px;}
.yad{bottom:346.500000px;}
.y49{bottom:349.500000px;}
.y5b{bottom:351.000000px;}
.y2{bottom:354.000000px;}
.y88{bottom:363.000000px;}
.yac{bottom:364.500000px;}
.y5a{bottom:369.000000px;}
.yd5{bottom:372.000000px;}
.y48{bottom:376.500000px;}
.y87{bottom:381.000000px;}
.yd4{bottom:390.000000px;}
.yab{bottom:391.500000px;}
.y47{bottom:394.500000px;}
.y59{bottom:399.000000px;}
.yd3{bottom:408.000000px;}
.yaa{bottom:409.500000px;}
.y23{bottom:417.000000px;}
.y46{bottom:421.500000px;}
.yd2{bottom:426.000000px;}
.ya9{bottom:427.500000px;}
.y22{bottom:435.000000px;}
.y45{bottom:439.500000px;}
.ya8{bottom:445.500000px;}
.yeb{bottom:450.000000px;}
.y86{bottom:453.000000px;}
.y44{bottom:457.500000px;}
.y21{bottom:462.000000px;}
.ya7{bottom:463.500000px;}
.y85{bottom:471.000000px;}
.y20{bottom:480.000000px;}
.ya6{bottom:481.500000px;}
.y43{bottom:484.500000px;}
.y84{bottom:498.000000px;}
.ya5{bottom:499.500000px;}
.y42{bottom:502.500000px;}
.y1f{bottom:507.000000px;}
.yea{bottom:510.000000px;}
.y83{bottom:516.000000px;}
.y41{bottom:520.500000px;}
.y1e{bottom:525.000000px;}
.ya4{bottom:526.500000px;}
.y82{bottom:534.000000px;}
.y66{bottom:535.500000px;}
.ye9{bottom:537.000000px;}
.y40{bottom:538.500000px;}
.ya3{bottom:544.500000px;}
.y1d{bottom:552.000000px;}
.y3f{bottom:556.500000px;}
.ya2{bottom:562.500000px;}
.y3e{bottom:574.500000px;}
.y1c{bottom:579.000000px;}
.ya1{bottom:580.500000px;}
.y3d{bottom:592.500000px;}
.ye7{bottom:596.250000px;}
.ye8{bottom:597.000000px;}
.ya0{bottom:598.500000px;}
.y1b{bottom:606.000000px;}
.y3c{bottom:610.500000px;}
.y9f{bottom:616.500000px;}
.yd1{bottom:624.000000px;}
.y3b{bottom:628.500000px;}
.y1a{bottom:633.000000px;}
.y6b{bottom:639.073950px;}
.y9e{bottom:643.500000px;}
.yd0{bottom:645.000000px;}
.y3a{bottom:646.500000px;}
.yb8{bottom:649.500000px;}
.y81{bottom:651.000000px;}
.ye6{bottom:657.000000px;}
.y9d{bottom:661.500000px;}
.y19{bottom:663.000000px;}
.y39{bottom:664.500000px;}
.y63{bottom:666.000000px;}
.yb7{bottom:667.500000px;}
.y80{bottom:669.000000px;}
.yc2{bottom:673.500000px;}
.y9c{bottom:679.500000px;}
.y7f{bottom:687.000000px;}
.y38{bottom:691.500000px;}
.y9b{bottom:697.500000px;}
.ycf{bottom:708.000000px;}
.y37{bottom:709.500000px;}
.y6a{bottom:711.046800px;}
.y7e{bottom:715.500000px;}
.ye5{bottom:717.000000px;}
.y1{bottom:724.500000px;}
.y18{bottom:726.000000px;}
.y36{bottom:727.500000px;}
.yce{bottom:729.000000px;}
.y9a{bottom:733.500000px;}
.y17{bottom:744.000000px;}
.yc1{bottom:745.500000px;}
.ycd{bottom:750.000000px;}
.y99{bottom:751.500000px;}
.y35{bottom:754.500000px;}
.y16{bottom:762.000000px;}
.yc0{bottom:763.500000px;}
.y5e{bottom:765.026250px;}
.y7d{bottom:766.500000px;}
.y34{bottom:772.500000px;}
.ye3{bottom:777.000000px;}
.y98{bottom:778.500000px;}
.y15{bottom:780.000000px;}
.y7c{bottom:784.500000px;}
.y61{bottom:786.000000px;}
.y33{bottom:790.500000px;}
.ycc{bottom:792.000000px;}
.y60{bottom:796.521150px;}
.y7b{bottom:802.500000px;}
.y97{bottom:805.500000px;}
.y14{bottom:807.000000px;}
.ycb{bottom:813.000000px;}
.y32{bottom:817.500000px;}
.y7a{bottom:820.500000px;}
.y96{bottom:823.500000px;}
.y13{bottom:825.000000px;}
.yca{bottom:834.000000px;}
.y31{bottom:835.500000px;}
.ye0{bottom:836.250000px;}
.ye2{bottom:837.000000px;}
.y79{bottom:838.500000px;}
.y95{bottom:841.500000px;}
.y12{bottom:843.000000px;}
.y30{bottom:853.500000px;}
.ybf{bottom:855.000000px;}
.y6c{bottom:859.500000px;}
.y78{bottom:865.500000px;}
.y11{bottom:870.000000px;}
.yc9{bottom:873.000000px;}
.ybe{bottom:876.000000px;}
.y94{bottom:877.500000px;}
.y2f{bottom:880.500000px;}
.y77{bottom:883.500000px;}
.y10{bottom:888.000000px;}
.yc8{bottom:891.000000px;}
.y93{bottom:895.500000px;}
.ybd{bottom:897.000000px;}
.y2e{bottom:898.500000px;}
.y76{bottom:901.500000px;}
.yf{bottom:906.000000px;}
.y58{bottom:909.000000px;}
.y2d{bottom:916.500000px;}
.y75{bottom:919.500000px;}
.y92{bottom:922.500000px;}
.y57{bottom:927.000000px;}
.ye{bottom:933.000000px;}
.ybc{bottom:936.000000px;}
.y74{bottom:937.500000px;}
.y2c{bottom:945.000000px;}
.yd{bottom:951.000000px;}
.y56{bottom:954.000000px;}
.y73{bottom:955.500000px;}
.ydd{bottom:957.000000px;}
.y91{bottom:960.000000px;}
.yc{bottom:969.000000px;}
.y55{bottom:972.000000px;}
.y72{bottom:973.500000px;}
.yb{bottom:987.000000px;}
.ybb{bottom:990.000000px;}
.y71{bottom:991.500000px;}
.y2b{bottom:996.000000px;}
.y54{bottom:999.000000px;}
.yba{bottom:1008.000000px;}
.y70{bottom:1009.500000px;}
.ya{bottom:1014.000000px;}
.y53{bottom:1017.000000px;}
.yb9{bottom:1026.000000px;}
.y9{bottom:1032.000000px;}
.y90{bottom:1035.000000px;}
.y6f{bottom:1036.500000px;}
.y52{bottom:1044.000000px;}
.y8{bottom:1050.000000px;}
.y8f{bottom:1053.000000px;}
.y6e{bottom:1054.500000px;}
.y51{bottom:1071.000000px;}
.y7{bottom:1080.000000px;}
.y6d{bottom:1083.000000px;}
.y50{bottom:1089.000000px;}
.hf{height:27.000000px;}
.h11{height:28.089844px;}
.h16{height:36.000000px;}
.h5{height:37.500000px;}
.h12{height:42.134766px;}
.h9{height:43.037109px;}
.hb{height:43.500000px;}
.h15{height:44.912109px;}
.h7{height:46.816406px;}
.h8{height:49.189453px;}
.h10{height:51.327739px;}
.h13{height:51.328339px;}
.h14{height:54.000000px;}
.h4{height:56.179688px;}
.h17{height:58.500000px;}
.h3{height:59.027344px;}
.h18{height:59.250000px;}
.h2{height:60.000000px;}
.ha{height:68.865234px;}
.hc{height:76.148438px;}
.hd{height:78.000000px;}
.h6{height:78.703125px;}
.he{height:85.500000px;}
.h1{height:118.054688px;}
.h0{height:1263.000000px;}
.w9{width:105.300015px;}
.w7{width:130.650015px;}
.w3{width:157.500000px;}
.w4{width:178.500000px;}
.w6{width:184.500000px;}
.w5{width:186.000000px;}
.w8{width:189.300000px;}
.w1{width:211.050000px;}
.w2{width:419.700450px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:7.500000px;}
.x8{left:22.955205px;}
.x15{left:33.066255px;}
.x7{left:45.472785px;}
.x1a{left:46.842840px;}
.x18{left:47.893020px;}
.x13{left:53.942715px;}
.x1b{left:60.357285px;}
.x5{left:101.221800px;}
.x6{left:108.701295px;}
.x12{left:112.500000px;}
.x28{left:126.000000px;}
.xa{left:127.559055px;}
.x2{left:129.000000px;}
.xb{left:148.818900px;}
.x9{left:168.787650px;}
.xc{left:174.330750px;}
.x23{left:179.279004px;}
.xe{left:180.703200px;}
.x22{left:185.336130px;}
.x1f{left:188.915550px;}
.x27{left:244.859550px;}
.x25{left:261.150000px;}
.x1e{left:284.560050px;}
.x10{left:288.930000px;}
.x1{left:326.367150px;}
.x16{left:333.000000px;}
.x4{left:341.550000px;}
.x14{left:343.500000px;}
.x24{left:363.061950px;}
.xd{left:442.078800px;}
.x1c{left:470.901600px;}
.x20{left:513.442383px;}
.x21{left:530.094000px;}
.x17{left:571.500000px;}
.x19{left:574.500000px;}
.x11{left:593.063301px;}
.x26{left:598.350000px;}
.xf{left:648.710400px;}
.x1d{left:731.756700px;}
@media print{
.v2{vertical-align:-17.881600pt;}
.v3{vertical-align:-16.093867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.881600pt;}
.ls20{letter-spacing:-2.458667pt;}
.ls1b{letter-spacing:-0.218667pt;}
.ls1a{letter-spacing:-0.022400pt;}
.ls2{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:-0.017067pt;}
.ls14{letter-spacing:-0.016000pt;}
.lsf{letter-spacing:-0.014933pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls3{letter-spacing:-0.006400pt;}
.lsa{letter-spacing:-0.005333pt;}
.ls1d{letter-spacing:-0.004800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls18{letter-spacing:0.006347pt;}
.lsc{letter-spacing:0.007467pt;}
.ls6{letter-spacing:0.008533pt;}
.ls0{letter-spacing:0.009013pt;}
.lsb{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.012800pt;}
.ls1c{letter-spacing:0.597333pt;}
.ls16{letter-spacing:1.635555pt;}
.ls13{letter-spacing:2.277333pt;}
.ls1e{letter-spacing:2.394667pt;}
.ls19{letter-spacing:3.605333pt;}
.ls12{letter-spacing:5.109333pt;}
.ls1f{letter-spacing:5.555200pt;}
.lse{letter-spacing:6.508800pt;}
.ls17{letter-spacing:6.968888pt;}
.ls10{letter-spacing:7.562667pt;}
.ls11{letter-spacing:8.096000pt;}
.ls15{letter-spacing:9.587733pt;}
.lsd{letter-spacing:58.388800pt;}
.wsb{word-spacing:-23.893333pt;}
.wsd{word-spacing:-20.884267pt;}
.ws14{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.728000pt;}
.ws8{word-spacing:-14.938667pt;}
.wse{word-spacing:-14.933333pt;}
.ws7{word-spacing:-14.928000pt;}
.ws10{word-spacing:-14.922667pt;}
.wsa{word-spacing:-14.778667pt;}
.ws4{word-spacing:-14.773333pt;}
.ws3{word-spacing:-14.762667pt;}
.ws15{word-spacing:-14.757333pt;}
.wsf{word-spacing:-14.554667pt;}
.ws17{word-spacing:-13.296000pt;}
.ws16{word-spacing:-12.314667pt;}
.ws11{word-spacing:-9.848889pt;}
.wsc{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.076800pt;}
.ws6{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:4.796960pt;}
.ws2{word-spacing:10.227893pt;}
.ws9{word-spacing:31.583467pt;}
._14{margin-left:-621.479200pt;}
._10{margin-left:-14.381867pt;}
._13{margin-left:-12.235733pt;}
._12{margin-left:-8.263467pt;}
._11{margin-left:-7.307733pt;}
._d{margin-left:-5.824000pt;}
._8{margin-left:-4.154667pt;}
._3{margin-left:-3.104000pt;}
._1{margin-left:-1.920000pt;}
._6{margin-left:-0.891733pt;}
._1a{width:0.889600pt;}
._0{width:1.779200pt;}
._5{width:2.858667pt;}
._4{width:3.904000pt;}
._7{width:4.880000pt;}
._2{width:5.850667pt;}
._c{width:7.485867pt;}
._9{width:8.730667pt;}
._a{width:10.426667pt;}
._b{width:11.666133pt;}
._f{width:12.650667pt;}
._18{width:13.674667pt;}
._1d{width:14.798933pt;}
._15{width:16.032000pt;}
._19{width:17.447467pt;}
._16{width:18.421333pt;}
._17{width:25.711093pt;}
._1c{width:27.146667pt;}
._1b{width:28.362667pt;}
._e{width:58.388800pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:35.555557pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.ye1{bottom:-4.666667pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.666667pt;}
.y4{bottom:10.666667pt;}
.yde{bottom:12.000000pt;}
.y69{bottom:18.711333pt;}
.y65{bottom:19.031600pt;}
.ydf{bottom:21.333333pt;}
.y62{bottom:28.008933pt;}
.y3{bottom:30.666667pt;}
.y68{bottom:38.711333pt;}
.y64{bottom:39.031600pt;}
.y67{bottom:41.311467pt;}
.ye4{bottom:48.000000pt;}
.y2a{bottom:49.333333pt;}
.y4f{bottom:144.000000pt;}
.yb6{bottom:148.000000pt;}
.yf3{bottom:153.333333pt;}
.yc7{bottom:155.466800pt;}
.y4e{bottom:160.000000pt;}
.y8e{bottom:162.690133pt;}
.yb5{bottom:164.000000pt;}
.yf2{bottom:168.000000pt;}
.yc6{bottom:171.466800pt;}
.yef{bottom:172.000000pt;}
.yb4{bottom:180.000000pt;}
.yf1{bottom:182.666667pt;}
.y4d{bottom:184.000000pt;}
.yc5{bottom:187.466800pt;}
.yee{bottom:188.000000pt;}
.y8d{bottom:190.690133pt;}
.ydc{bottom:194.666667pt;}
.yf0{bottom:197.333333pt;}
.y4c{bottom:200.000000pt;}
.yc4{bottom:203.466800pt;}
.yb3{bottom:204.000000pt;}
.y29{bottom:208.000000pt;}
.ydb{bottom:210.666667pt;}
.yc3{bottom:219.466800pt;}
.yed{bottom:220.000000pt;}
.y28{bottom:224.000000pt;}
.y6{bottom:225.333333pt;}
.yda{bottom:226.666667pt;}
.yb2{bottom:228.000000pt;}
.yec{bottom:236.000000pt;}
.y27{bottom:240.000000pt;}
.yd9{bottom:242.666667pt;}
.yb1{bottom:244.000000pt;}
.y4b{bottom:249.333333pt;}
.y26{bottom:256.000000pt;}
.y8c{bottom:258.666667pt;}
.yb0{bottom:260.000000pt;}
.y5d{bottom:264.000000pt;}
.yd8{bottom:266.666667pt;}
.y25{bottom:272.000000pt;}
.y8b{bottom:274.666667pt;}
.yaf{bottom:276.000000pt;}
.y5{bottom:280.000000pt;}
.yd7{bottom:282.666667pt;}
.y24{bottom:288.000000pt;}
.y8a{bottom:290.666667pt;}
.yae{bottom:292.000000pt;}
.y4a{bottom:294.666667pt;}
.y5c{bottom:296.000000pt;}
.yd6{bottom:298.666667pt;}
.y89{bottom:306.666667pt;}
.yad{bottom:308.000000pt;}
.y49{bottom:310.666667pt;}
.y5b{bottom:312.000000pt;}
.y2{bottom:314.666667pt;}
.y88{bottom:322.666667pt;}
.yac{bottom:324.000000pt;}
.y5a{bottom:328.000000pt;}
.yd5{bottom:330.666667pt;}
.y48{bottom:334.666667pt;}
.y87{bottom:338.666667pt;}
.yd4{bottom:346.666667pt;}
.yab{bottom:348.000000pt;}
.y47{bottom:350.666667pt;}
.y59{bottom:354.666667pt;}
.yd3{bottom:362.666667pt;}
.yaa{bottom:364.000000pt;}
.y23{bottom:370.666667pt;}
.y46{bottom:374.666667pt;}
.yd2{bottom:378.666667pt;}
.ya9{bottom:380.000000pt;}
.y22{bottom:386.666667pt;}
.y45{bottom:390.666667pt;}
.ya8{bottom:396.000000pt;}
.yeb{bottom:400.000000pt;}
.y86{bottom:402.666667pt;}
.y44{bottom:406.666667pt;}
.y21{bottom:410.666667pt;}
.ya7{bottom:412.000000pt;}
.y85{bottom:418.666667pt;}
.y20{bottom:426.666667pt;}
.ya6{bottom:428.000000pt;}
.y43{bottom:430.666667pt;}
.y84{bottom:442.666667pt;}
.ya5{bottom:444.000000pt;}
.y42{bottom:446.666667pt;}
.y1f{bottom:450.666667pt;}
.yea{bottom:453.333333pt;}
.y83{bottom:458.666667pt;}
.y41{bottom:462.666667pt;}
.y1e{bottom:466.666667pt;}
.ya4{bottom:468.000000pt;}
.y82{bottom:474.666667pt;}
.y66{bottom:476.000000pt;}
.ye9{bottom:477.333333pt;}
.y40{bottom:478.666667pt;}
.ya3{bottom:484.000000pt;}
.y1d{bottom:490.666667pt;}
.y3f{bottom:494.666667pt;}
.ya2{bottom:500.000000pt;}
.y3e{bottom:510.666667pt;}
.y1c{bottom:514.666667pt;}
.ya1{bottom:516.000000pt;}
.y3d{bottom:526.666667pt;}
.ye7{bottom:530.000000pt;}
.ye8{bottom:530.666667pt;}
.ya0{bottom:532.000000pt;}
.y1b{bottom:538.666667pt;}
.y3c{bottom:542.666667pt;}
.y9f{bottom:548.000000pt;}
.yd1{bottom:554.666667pt;}
.y3b{bottom:558.666667pt;}
.y1a{bottom:562.666667pt;}
.y6b{bottom:568.065733pt;}
.y9e{bottom:572.000000pt;}
.yd0{bottom:573.333333pt;}
.y3a{bottom:574.666667pt;}
.yb8{bottom:577.333333pt;}
.y81{bottom:578.666667pt;}
.ye6{bottom:584.000000pt;}
.y9d{bottom:588.000000pt;}
.y19{bottom:589.333333pt;}
.y39{bottom:590.666667pt;}
.y63{bottom:592.000000pt;}
.yb7{bottom:593.333333pt;}
.y80{bottom:594.666667pt;}
.yc2{bottom:598.666667pt;}
.y9c{bottom:604.000000pt;}
.y7f{bottom:610.666667pt;}
.y38{bottom:614.666667pt;}
.y9b{bottom:620.000000pt;}
.ycf{bottom:629.333333pt;}
.y37{bottom:630.666667pt;}
.y6a{bottom:632.041600pt;}
.y7e{bottom:636.000000pt;}
.ye5{bottom:637.333333pt;}
.y1{bottom:644.000000pt;}
.y18{bottom:645.333333pt;}
.y36{bottom:646.666667pt;}
.yce{bottom:648.000000pt;}
.y9a{bottom:652.000000pt;}
.y17{bottom:661.333333pt;}
.yc1{bottom:662.666667pt;}
.ycd{bottom:666.666667pt;}
.y99{bottom:668.000000pt;}
.y35{bottom:670.666667pt;}
.y16{bottom:677.333333pt;}
.yc0{bottom:678.666667pt;}
.y5e{bottom:680.023333pt;}
.y7d{bottom:681.333333pt;}
.y34{bottom:686.666667pt;}
.ye3{bottom:690.666667pt;}
.y98{bottom:692.000000pt;}
.y15{bottom:693.333333pt;}
.y7c{bottom:697.333333pt;}
.y61{bottom:698.666667pt;}
.y33{bottom:702.666667pt;}
.ycc{bottom:704.000000pt;}
.y60{bottom:708.018800pt;}
.y7b{bottom:713.333333pt;}
.y97{bottom:716.000000pt;}
.y14{bottom:717.333333pt;}
.ycb{bottom:722.666667pt;}
.y32{bottom:726.666667pt;}
.y7a{bottom:729.333333pt;}
.y96{bottom:732.000000pt;}
.y13{bottom:733.333333pt;}
.yca{bottom:741.333333pt;}
.y31{bottom:742.666667pt;}
.ye0{bottom:743.333333pt;}
.ye2{bottom:744.000000pt;}
.y79{bottom:745.333333pt;}
.y95{bottom:748.000000pt;}
.y12{bottom:749.333333pt;}
.y30{bottom:758.666667pt;}
.ybf{bottom:760.000000pt;}
.y6c{bottom:764.000000pt;}
.y78{bottom:769.333333pt;}
.y11{bottom:773.333333pt;}
.yc9{bottom:776.000000pt;}
.ybe{bottom:778.666667pt;}
.y94{bottom:780.000000pt;}
.y2f{bottom:782.666667pt;}
.y77{bottom:785.333333pt;}
.y10{bottom:789.333333pt;}
.yc8{bottom:792.000000pt;}
.y93{bottom:796.000000pt;}
.ybd{bottom:797.333333pt;}
.y2e{bottom:798.666667pt;}
.y76{bottom:801.333333pt;}
.yf{bottom:805.333333pt;}
.y58{bottom:808.000000pt;}
.y2d{bottom:814.666667pt;}
.y75{bottom:817.333333pt;}
.y92{bottom:820.000000pt;}
.y57{bottom:824.000000pt;}
.ye{bottom:829.333333pt;}
.ybc{bottom:832.000000pt;}
.y74{bottom:833.333333pt;}
.y2c{bottom:840.000000pt;}
.yd{bottom:845.333333pt;}
.y56{bottom:848.000000pt;}
.y73{bottom:849.333333pt;}
.ydd{bottom:850.666667pt;}
.y91{bottom:853.333333pt;}
.yc{bottom:861.333333pt;}
.y55{bottom:864.000000pt;}
.y72{bottom:865.333333pt;}
.yb{bottom:877.333333pt;}
.ybb{bottom:880.000000pt;}
.y71{bottom:881.333333pt;}
.y2b{bottom:885.333333pt;}
.y54{bottom:888.000000pt;}
.yba{bottom:896.000000pt;}
.y70{bottom:897.333333pt;}
.ya{bottom:901.333333pt;}
.y53{bottom:904.000000pt;}
.yb9{bottom:912.000000pt;}
.y9{bottom:917.333333pt;}
.y90{bottom:920.000000pt;}
.y6f{bottom:921.333333pt;}
.y52{bottom:928.000000pt;}
.y8{bottom:933.333333pt;}
.y8f{bottom:936.000000pt;}
.y6e{bottom:937.333333pt;}
.y51{bottom:952.000000pt;}
.y7{bottom:960.000000pt;}
.y6d{bottom:962.666667pt;}
.y50{bottom:968.000000pt;}
.hf{height:24.000000pt;}
.h11{height:24.968750pt;}
.h16{height:32.000000pt;}
.h5{height:33.333333pt;}
.h12{height:37.453125pt;}
.h9{height:38.255208pt;}
.hb{height:38.666667pt;}
.h15{height:39.921875pt;}
.h7{height:41.614583pt;}
.h8{height:43.723958pt;}
.h10{height:45.624657pt;}
.h13{height:45.625190pt;}
.h14{height:48.000000pt;}
.h4{height:49.937500pt;}
.h17{height:52.000000pt;}
.h3{height:52.468750pt;}
.h18{height:52.666667pt;}
.h2{height:53.333333pt;}
.ha{height:61.213542pt;}
.hc{height:67.687500pt;}
.hd{height:69.333333pt;}
.h6{height:69.958333pt;}
.he{height:76.000000pt;}
.h1{height:104.937500pt;}
.h0{height:1122.666667pt;}
.w9{width:93.600013pt;}
.w7{width:116.133347pt;}
.w3{width:140.000000pt;}
.w4{width:158.666667pt;}
.w6{width:164.000000pt;}
.w5{width:165.333333pt;}
.w8{width:168.266667pt;}
.w1{width:187.600000pt;}
.w2{width:373.067067pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:6.666667pt;}
.x8{left:20.404627pt;}
.x15{left:29.392227pt;}
.x7{left:40.420253pt;}
.x1a{left:41.638080pt;}
.x18{left:42.571573pt;}
.x13{left:47.949080pt;}
.x1b{left:53.650920pt;}
.x5{left:89.974933pt;}
.x6{left:96.623373pt;}
.x12{left:100.000000pt;}
.x28{left:112.000000pt;}
.xa{left:113.385827pt;}
.x2{left:114.666667pt;}
.xb{left:132.283467pt;}
.x9{left:150.033467pt;}
.xc{left:154.960667pt;}
.x23{left:159.359115pt;}
.xe{left:160.625067pt;}
.x22{left:164.743227pt;}
.x1f{left:167.924933pt;}
.x27{left:217.652933pt;}
.x25{left:232.133333pt;}
.x1e{left:252.942267pt;}
.x10{left:256.826667pt;}
.x1{left:290.104133pt;}
.x16{left:296.000000pt;}
.x4{left:303.600000pt;}
.x14{left:305.333333pt;}
.x24{left:322.721733pt;}
.xd{left:392.958933pt;}
.x1c{left:418.579200pt;}
.x20{left:456.393229pt;}
.x21{left:471.194667pt;}
.x17{left:508.000000pt;}
.x19{left:510.666667pt;}
.x11{left:527.167379pt;}
.x26{left:531.866667pt;}
.xf{left:576.631467pt;}
.x1d{left:650.450400pt;}
}




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