
    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_277dbcd6d38875449d120599.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_f8936b4b4e82c724377c3007.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_b0b45cef88442c88b07ea088.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_bbac9016bfbb0672c991f52f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3d{word-spacing:-55.944000px;}
.ws36{word-spacing:-38.865300px;}
.ws8a{word-spacing:-38.668200px;}
.wsa1{word-spacing:-38.661000px;}
.ws8d{word-spacing:-38.660400px;}
.ws48{word-spacing:-38.658600px;}
.ws6{word-spacing:-38.657700px;}
.wsb2{word-spacing:-38.656500px;}
.ws90{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.wsb3{word-spacing:-38.646900px;}
.ws1b{word-spacing:-38.640600px;}
.ws1d{word-spacing:-38.640000px;}
.ws2c{word-spacing:-38.633400px;}
.ws6f{word-spacing:-38.439000px;}
.ws3{word-spacing:-38.374200px;}
.ws42{word-spacing:-38.346600px;}
.ws41{word-spacing:-38.298300px;}
.wsb1{word-spacing:-38.160000px;}
.ws8e{word-spacing:-38.159100px;}
.ws99{word-spacing:-38.158200px;}
.ws9d{word-spacing:-38.157000px;}
.ws1c{word-spacing:-38.151900px;}
.wsac{word-spacing:-38.150400px;}
.ws2d{word-spacing:-38.148300px;}
.ws5e{word-spacing:-38.143500px;}
.ws9{word-spacing:-38.140200px;}
.wsaa{word-spacing:-38.075100px;}
.wse{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws28{word-spacing:-37.936200px;}
.wsa{word-spacing:-37.935900px;}
.ws2e{word-spacing:-37.935000px;}
.wsc{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws38{word-spacing:-37.924200px;}
.ws12{word-spacing:-37.726200px;}
.wsb0{word-spacing:-37.722300px;}
.wsb{word-spacing:-37.720800px;}
.wsa5{word-spacing:-37.714500px;}
.wsa7{word-spacing:-37.713600px;}
.ws89{word-spacing:-37.707300px;}
.ws31{word-spacing:-37.444200px;}
.wsd{word-spacing:-37.440000px;}
.ws15{word-spacing:-37.431000px;}
.ws5a{word-spacing:-37.430100px;}
.ws17{word-spacing:-37.429200px;}
.ws87{word-spacing:-37.191600px;}
.ws91{word-spacing:-36.702000px;}
.ws63{word-spacing:-36.286800px;}
.ws9b{word-spacing:-36.272400px;}
.ws23{word-spacing:-35.996400px;}
.ws55{word-spacing:-35.989200px;}
.ws8f{word-spacing:-35.787300px;}
.ws7e{word-spacing:-35.780400px;}
.ws93{word-spacing:-35.775900px;}
.wsf{word-spacing:-35.555400px;}
.wsa8{word-spacing:-35.274600px;}
.ws6b{word-spacing:-35.058600px;}
.ws27{word-spacing:-34.566000px;}
.ws7d{word-spacing:-34.560000px;}
.ws51{word-spacing:-33.842400px;}
.ws29{word-spacing:-33.840000px;}
.ws57{word-spacing:-33.834600px;}
.ws24{word-spacing:-33.621900px;}
.wsa4{word-spacing:-33.621000px;}
.ws8{word-spacing:-33.547800px;}
.ws7c{word-spacing:-33.393000px;}
.ws69{word-spacing:-33.120000px;}
.ws54{word-spacing:-33.102000px;}
.ws1a{word-spacing:-32.895000px;}
.ws18{word-spacing:-32.887800px;}
.ws84{word-spacing:-32.186400px;}
.wsab{word-spacing:-32.182200px;}
.ws7a{word-spacing:-32.170200px;}
.ws4c{word-spacing:-32.166000px;}
.ws32{word-spacing:-31.824000px;}
.ws2b{word-spacing:-31.676400px;}
.ws79{word-spacing:-31.470000px;}
.ws81{word-spacing:-31.466400px;}
.ws94{word-spacing:-31.462200px;}
.ws10{word-spacing:-31.460400px;}
.ws61{word-spacing:-30.954600px;}
.ws59{word-spacing:-30.945000px;}
.ws16{word-spacing:-30.741300px;}
.ws72{word-spacing:-30.513600px;}
.ws5c{word-spacing:-30.508200px;}
.ws7f{word-spacing:-30.239100px;}
.ws83{word-spacing:-30.225600px;}
.ws6c{word-spacing:-30.216000px;}
.ws22{word-spacing:-30.022200px;}
.ws56{word-spacing:-30.013200px;}
.ws1f{word-spacing:-30.004200px;}
.ws88{word-spacing:-29.805000px;}
.ws1e{word-spacing:-29.520000px;}
.ws34{word-spacing:-29.518200px;}
.ws58{word-spacing:-29.304600px;}
.ws5f{word-spacing:-29.300400px;}
.ws85{word-spacing:-29.293200px;}
.ws98{word-spacing:-29.067600px;}
.ws4a{word-spacing:-28.779600px;}
.wsa3{word-spacing:-28.575000px;}
.ws9f{word-spacing:-28.348200px;}
.ws86{word-spacing:-28.346400px;}
.ws64{word-spacing:-27.142800px;}
.ws9c{word-spacing:-27.135000px;}
.wsa2{word-spacing:-26.620800px;}
.ws5d{word-spacing:-26.418600px;}
.ws50{word-spacing:-26.203200px;}
.ws3f{word-spacing:-25.902000px;}
.ws65{word-spacing:-25.710000px;}
.ws33{word-spacing:-25.704000px;}
.wsa6{word-spacing:-25.695000px;}
.wsa0{word-spacing:-24.981300px;}
.ws70{word-spacing:-24.476400px;}
.ws82{word-spacing:-24.253200px;}
.wsaf{word-spacing:-24.243300px;}
.ws20{word-spacing:-23.757000px;}
.ws97{word-spacing:-23.542200px;}
.ws47{word-spacing:-23.535000px;}
.ws73{word-spacing:-22.821000px;}
.ws80{word-spacing:-22.326000px;}
.ws4b{word-spacing:-22.096800px;}
.ws52{word-spacing:-21.377400px;}
.ws6e{word-spacing:-21.375000px;}
.ws2a{word-spacing:-21.369600px;}
.ws45{word-spacing:-20.874600px;}
.ws46{word-spacing:-20.653200px;}
.ws25{word-spacing:-19.940400px;}
.ws95{word-spacing:-19.717200px;}
.ws66{word-spacing:-18.502200px;}
.ws4f{word-spacing:-18.493200px;}
.ws14{word-spacing:-18.486000px;}
.ws7{word-spacing:-18.472500px;}
.ws6a{word-spacing:-18.280800px;}
.ws68{word-spacing:-18.279000px;}
.ws3c{word-spacing:-18.144000px;}
.ws96{word-spacing:-17.278200px;}
.ws40{word-spacing:-16.556100px;}
.ws71{word-spacing:-16.346400px;}
.ws37{word-spacing:-16.344000px;}
.ws62{word-spacing:-16.327800px;}
.ws21{word-spacing:-16.269000px;}
.ws5b{word-spacing:-15.630000px;}
.ws19{word-spacing:-15.401400px;}
.ws8b{word-spacing:-14.671800px;}
.ws74{word-spacing:-14.400000px;}
.ws67{word-spacing:-14.181000px;}
.ws30{word-spacing:-12.375600px;}
.ws2f{word-spacing:-12.240000px;}
.ws4e{word-spacing:-12.012300px;}
.ws78{word-spacing:-10.789200px;}
.ws13{word-spacing:-10.580400px;}
.ws26{word-spacing:-10.578600px;}
.ws75{word-spacing:-10.575000px;}
.ws3e{word-spacing:-8.136000px;}
.ws53{word-spacing:-6.981000px;}
.ws6d{word-spacing:-6.971400px;}
.ws8c{word-spacing:-6.473100px;}
.ws76{word-spacing:-5.523300px;}
.ws60{word-spacing:-5.039100px;}
.ws11{word-spacing:-3.589200px;}
.ws9e{word-spacing:-3.585600px;}
.ws44{word-spacing:-3.384000px;}
.ws7b{word-spacing:-3.165000px;}
.ws3a{word-spacing:-3.077400px;}
.ws43{word-spacing:-2.874000px;}
.wsae{word-spacing:-1.220400px;}
.ws9a{word-spacing:-0.502200px;}
.ws39{word-spacing:0.085500px;}
.ws4d{word-spacing:0.225000px;}
.ws92{word-spacing:1.683900px;}
.wsa9{word-spacing:2.169000px;}
.wsad{word-spacing:5.983200px;}
.ws49{word-spacing:8.374200px;}
.wsb6{word-spacing:17.782500px;}
.ws77{word-spacing:23.491800px;}
.ws3b{word-spacing:36.738600px;}
.ws35{word-spacing:41.256000px;}
.wsb4{word-spacing:108.001800px;}
.wsb5{word-spacing:113.989500px;}
.ws1{word-spacing:455.092800px;}
._25{margin-left:-2.363400px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._28{width:2.135400px;}
._4{width:18.775800px;}
._b{width:20.007000px;}
._5{width:21.725400px;}
._14{width:22.770600px;}
._e{width:24.120600px;}
._7{width:25.484400px;}
._c{width:26.649600px;}
._17{width:28.006200px;}
._24{width:29.092800px;}
._1f{width:30.382800px;}
._16{width:31.402800px;}
._11{width:33.202800px;}
._23{width:34.911600px;}
._1{width:36.000000px;}
._13{width:37.017600px;}
._12{width:38.505000px;}
._a{width:39.868800px;}
._20{width:40.941600px;}
._f{width:42.041400px;}
._6{width:43.356000px;}
._15{width:44.648400px;}
._9{width:46.576800px;}
._d{width:48.643200px;}
._1c{width:49.725600px;}
._26{width:50.796600px;}
._1e{width:51.983100px;}
._1a{width:54.269400px;}
._2a{width:55.944000px;}
._19{width:57.082500px;}
._27{width:58.984200px;}
._29{width:60.366600px;}
._1d{width:65.347800px;}
._2d{width:75.313500px;}
._22{width:80.646000px;}
._21{width:81.838200px;}
._10{width:82.895400px;}
._1b{width:94.011600px;}
._18{width:98.856000px;}
._8{width:105.338400px;}
._2b{width:165.880800px;}
._2c{width:171.219300px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2c{bottom:99.975000px;}
.y98{bottom:100.696500px;}
.y57{bottom:102.315000px;}
.y2b{bottom:120.675000px;}
.y97{bottom:121.396500px;}
.y56{bottom:122.836500px;}
.y7c{bottom:123.915000px;}
.y96{bottom:142.096500px;}
.y55{bottom:143.536500px;}
.y7b{bottom:144.615000px;}
.y2a{bottom:162.436500px;}
.y54{bottom:164.236500px;}
.y7a{bottom:165.315000px;}
.y95{bottom:183.675000px;}
.y53{bottom:184.936500px;}
.y79{bottom:185.836500px;}
.y29{bottom:204.196500px;}
.y94{bottom:204.375000px;}
.y52{bottom:205.636500px;}
.y78{bottom:206.536500px;}
.y28{bottom:224.896500px;}
.y93{bottom:225.075000px;}
.y51{bottom:226.336500px;}
.y77{bottom:227.236500px;}
.y27{bottom:245.596500px;}
.y92{bottom:245.775000px;}
.y50{bottom:247.036500px;}
.y76{bottom:247.936500px;}
.y26{bottom:266.295000px;}
.y4f{bottom:267.736500px;}
.y75{bottom:268.636500px;}
.y91{bottom:287.536500px;}
.y4e{bottom:288.436500px;}
.y74{bottom:289.336500px;}
.y25{bottom:307.875000px;}
.y90{bottom:308.236500px;}
.y4d{bottom:309.136500px;}
.y73{bottom:310.036500px;}
.ya7{bottom:327.496500px;}
.y24{bottom:328.575000px;}
.y8f{bottom:328.936500px;}
.y4c{bottom:329.836500px;}
.y72{bottom:330.736500px;}
.ya6{bottom:348.196500px;}
.y23{bottom:349.275000px;}
.y8e{bottom:349.636500px;}
.y4b{bottom:350.536500px;}
.y71{bottom:351.436500px;}
.y22{bottom:369.975000px;}
.y8d{bottom:370.336500px;}
.y4a{bottom:371.236500px;}
.y70{bottom:372.136500px;}
.ya5{bottom:389.775000px;}
.y21{bottom:390.675000px;}
.y49{bottom:391.936500px;}
.y6f{bottom:392.836500px;}
.ya4{bottom:410.475000px;}
.y8c{bottom:412.096500px;}
.y48{bottom:412.636500px;}
.y6e{bottom:413.536500px;}
.y20{bottom:432.436500px;}
.y8b{bottom:432.795000px;}
.y47{bottom:433.336500px;}
.y6d{bottom:434.236500px;}
.ya3{bottom:452.236500px;}
.y1f{bottom:453.136500px;}
.y8a{bottom:453.496500px;}
.y46{bottom:454.036500px;}
.y6c{bottom:454.936500px;}
.ya2{bottom:472.936500px;}
.y1e{bottom:473.836500px;}
.y89{bottom:474.196500px;}
.y45{bottom:474.736500px;}
.y6b{bottom:475.636500px;}
.y1d{bottom:494.536500px;}
.y88{bottom:494.896500px;}
.y44{bottom:495.436500px;}
.y6a{bottom:496.336500px;}
.ya1{bottom:514.695000px;}
.y1c{bottom:515.236500px;}
.y87{bottom:515.596500px;}
.y43{bottom:516.136500px;}
.y69{bottom:517.036500px;}
.y1b{bottom:535.936500px;}
.y68{bottom:537.736500px;}
.ya0{bottom:556.275000px;}
.y86{bottom:557.175000px;}
.y42{bottom:557.896500px;}
.y67{bottom:558.436500px;}
.y1a{bottom:577.695000px;}
.y85{bottom:577.875000px;}
.y41{bottom:578.596500px;}
.y66{bottom:579.136500px;}
.y9f{bottom:598.036500px;}
.y84{bottom:598.575000px;}
.y40{bottom:599.295000px;}
.y65{bottom:599.836500px;}
.y19{bottom:619.275000px;}
.y3f{bottom:619.996500px;}
.y64{bottom:620.536500px;}
.y9e{bottom:639.795000px;}
.y18{bottom:639.975000px;}
.y63{bottom:641.236500px;}
.y17{bottom:660.675000px;}
.y3e{bottom:661.575000px;}
.y62{bottom:661.936500px;}
.y16{bottom:681.375000px;}
.y3d{bottom:682.275000px;}
.y83{bottom:702.075000px;}
.y61{bottom:703.695000px;}
.y82{bottom:722.775000px;}
.y15{bottom:723.136500px;}
.y3c{bottom:724.036500px;}
.y60{bottom:724.396500px;}
.y14{bottom:743.836500px;}
.y3b{bottom:744.736500px;}
.y5f{bottom:745.096500px;}
.y13{bottom:764.536500px;}
.y3a{bottom:765.436500px;}
.y5e{bottom:765.795000px;}
.y12{bottom:785.236500px;}
.y9d{bottom:785.596500px;}
.y39{bottom:786.136500px;}
.y5d{bottom:786.496500px;}
.y11{bottom:805.936500px;}
.y9c{bottom:806.295000px;}
.y38{bottom:806.836500px;}
.y5c{bottom:807.195000px;}
.y9b{bottom:826.996500px;}
.y5b{bottom:827.895000px;}
.y10{bottom:847.695000px;}
.y37{bottom:848.596500px;}
.yf{bottom:868.395000px;}
.y9a{bottom:868.575000px;}
.y36{bottom:869.295000px;}
.ye{bottom:889.095000px;}
.y81{bottom:889.275000px;}
.y35{bottom:889.995000px;}
.yd{bottom:909.795000px;}
.y80{bottom:909.975000px;}
.y34{bottom:910.695000px;}
.yc{bottom:930.495000px;}
.y7f{bottom:930.675000px;}
.y33{bottom:931.395000px;}
.y99{bottom:951.736500px;}
.y32{bottom:952.095000px;}
.yb{bottom:972.075000px;}
.y7e{bottom:972.436500px;}
.y31{bottom:972.795000px;}
.y7d{bottom:993.136500px;}
.y5a{bottom:993.495000px;}
.ya{bottom:1013.836500px;}
.y59{bottom:1014.195000px;}
.y30{bottom:1014.375000px;}
.y58{bottom:1034.895000px;}
.y2f{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y2e{bottom:1055.775000px;}
.y2d{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x5{left:408.780000px;}
.x3{left:465.825000px;}
.x4{left:586.620000px;}
.x6{left:622.260000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3d{word-spacing:-49.728000pt;}
.ws36{word-spacing:-34.546933pt;}
.ws8a{word-spacing:-34.371733pt;}
.wsa1{word-spacing:-34.365333pt;}
.ws8d{word-spacing:-34.364800pt;}
.ws48{word-spacing:-34.363200pt;}
.ws6{word-spacing:-34.362400pt;}
.wsb2{word-spacing:-34.361333pt;}
.ws90{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.wsb3{word-spacing:-34.352800pt;}
.ws1b{word-spacing:-34.347200pt;}
.ws1d{word-spacing:-34.346667pt;}
.ws2c{word-spacing:-34.340800pt;}
.ws6f{word-spacing:-34.168000pt;}
.ws3{word-spacing:-34.110400pt;}
.ws42{word-spacing:-34.085867pt;}
.ws41{word-spacing:-34.042933pt;}
.wsb1{word-spacing:-33.920000pt;}
.ws8e{word-spacing:-33.919200pt;}
.ws99{word-spacing:-33.918400pt;}
.ws9d{word-spacing:-33.917333pt;}
.ws1c{word-spacing:-33.912800pt;}
.wsac{word-spacing:-33.911467pt;}
.ws2d{word-spacing:-33.909600pt;}
.ws5e{word-spacing:-33.905333pt;}
.ws9{word-spacing:-33.902400pt;}
.wsaa{word-spacing:-33.844533pt;}
.wse{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws28{word-spacing:-33.721067pt;}
.wsa{word-spacing:-33.720800pt;}
.ws2e{word-spacing:-33.720000pt;}
.wsc{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws38{word-spacing:-33.710400pt;}
.ws12{word-spacing:-33.534400pt;}
.wsb0{word-spacing:-33.530933pt;}
.wsb{word-spacing:-33.529600pt;}
.wsa5{word-spacing:-33.524000pt;}
.wsa7{word-spacing:-33.523200pt;}
.ws89{word-spacing:-33.517600pt;}
.ws31{word-spacing:-33.283733pt;}
.wsd{word-spacing:-33.280000pt;}
.ws15{word-spacing:-33.272000pt;}
.ws5a{word-spacing:-33.271200pt;}
.ws17{word-spacing:-33.270400pt;}
.ws87{word-spacing:-33.059200pt;}
.ws91{word-spacing:-32.624000pt;}
.ws63{word-spacing:-32.254933pt;}
.ws9b{word-spacing:-32.242133pt;}
.ws23{word-spacing:-31.996800pt;}
.ws55{word-spacing:-31.990400pt;}
.ws8f{word-spacing:-31.810933pt;}
.ws7e{word-spacing:-31.804800pt;}
.ws93{word-spacing:-31.800800pt;}
.wsf{word-spacing:-31.604800pt;}
.wsa8{word-spacing:-31.355200pt;}
.ws6b{word-spacing:-31.163200pt;}
.ws27{word-spacing:-30.725333pt;}
.ws7d{word-spacing:-30.720000pt;}
.ws51{word-spacing:-30.082133pt;}
.ws29{word-spacing:-30.080000pt;}
.ws57{word-spacing:-30.075200pt;}
.ws24{word-spacing:-29.886133pt;}
.wsa4{word-spacing:-29.885333pt;}
.ws8{word-spacing:-29.820267pt;}
.ws7c{word-spacing:-29.682667pt;}
.ws69{word-spacing:-29.440000pt;}
.ws54{word-spacing:-29.424000pt;}
.ws1a{word-spacing:-29.240000pt;}
.ws18{word-spacing:-29.233600pt;}
.ws84{word-spacing:-28.610133pt;}
.wsab{word-spacing:-28.606400pt;}
.ws7a{word-spacing:-28.595733pt;}
.ws4c{word-spacing:-28.592000pt;}
.ws32{word-spacing:-28.288000pt;}
.ws2b{word-spacing:-28.156800pt;}
.ws79{word-spacing:-27.973333pt;}
.ws81{word-spacing:-27.970133pt;}
.ws94{word-spacing:-27.966400pt;}
.ws10{word-spacing:-27.964800pt;}
.ws61{word-spacing:-27.515200pt;}
.ws59{word-spacing:-27.506667pt;}
.ws16{word-spacing:-27.325600pt;}
.ws72{word-spacing:-27.123200pt;}
.ws5c{word-spacing:-27.118400pt;}
.ws7f{word-spacing:-26.879200pt;}
.ws83{word-spacing:-26.867200pt;}
.ws6c{word-spacing:-26.858667pt;}
.ws22{word-spacing:-26.686400pt;}
.ws56{word-spacing:-26.678400pt;}
.ws1f{word-spacing:-26.670400pt;}
.ws88{word-spacing:-26.493333pt;}
.ws1e{word-spacing:-26.240000pt;}
.ws34{word-spacing:-26.238400pt;}
.ws58{word-spacing:-26.048533pt;}
.ws5f{word-spacing:-26.044800pt;}
.ws85{word-spacing:-26.038400pt;}
.ws98{word-spacing:-25.837867pt;}
.ws4a{word-spacing:-25.581867pt;}
.wsa3{word-spacing:-25.400000pt;}
.ws9f{word-spacing:-25.198400pt;}
.ws86{word-spacing:-25.196800pt;}
.ws64{word-spacing:-24.126933pt;}
.ws9c{word-spacing:-24.120000pt;}
.wsa2{word-spacing:-23.662933pt;}
.ws5d{word-spacing:-23.483200pt;}
.ws50{word-spacing:-23.291733pt;}
.ws3f{word-spacing:-23.024000pt;}
.ws65{word-spacing:-22.853333pt;}
.ws33{word-spacing:-22.848000pt;}
.wsa6{word-spacing:-22.840000pt;}
.wsa0{word-spacing:-22.205600pt;}
.ws70{word-spacing:-21.756800pt;}
.ws82{word-spacing:-21.558400pt;}
.wsaf{word-spacing:-21.549600pt;}
.ws20{word-spacing:-21.117333pt;}
.ws97{word-spacing:-20.926400pt;}
.ws47{word-spacing:-20.920000pt;}
.ws73{word-spacing:-20.285333pt;}
.ws80{word-spacing:-19.845333pt;}
.ws4b{word-spacing:-19.641600pt;}
.ws52{word-spacing:-19.002133pt;}
.ws6e{word-spacing:-19.000000pt;}
.ws2a{word-spacing:-18.995200pt;}
.ws45{word-spacing:-18.555200pt;}
.ws46{word-spacing:-18.358400pt;}
.ws25{word-spacing:-17.724800pt;}
.ws95{word-spacing:-17.526400pt;}
.ws66{word-spacing:-16.446400pt;}
.ws4f{word-spacing:-16.438400pt;}
.ws14{word-spacing:-16.432000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws6a{word-spacing:-16.249600pt;}
.ws68{word-spacing:-16.248000pt;}
.ws3c{word-spacing:-16.128000pt;}
.ws96{word-spacing:-15.358400pt;}
.ws40{word-spacing:-14.716533pt;}
.ws71{word-spacing:-14.530133pt;}
.ws37{word-spacing:-14.528000pt;}
.ws62{word-spacing:-14.513600pt;}
.ws21{word-spacing:-14.461333pt;}
.ws5b{word-spacing:-13.893333pt;}
.ws19{word-spacing:-13.690133pt;}
.ws8b{word-spacing:-13.041600pt;}
.ws74{word-spacing:-12.800000pt;}
.ws67{word-spacing:-12.605333pt;}
.ws30{word-spacing:-11.000533pt;}
.ws2f{word-spacing:-10.880000pt;}
.ws4e{word-spacing:-10.677600pt;}
.ws78{word-spacing:-9.590400pt;}
.ws13{word-spacing:-9.404800pt;}
.ws26{word-spacing:-9.403200pt;}
.ws75{word-spacing:-9.400000pt;}
.ws3e{word-spacing:-7.232000pt;}
.ws53{word-spacing:-6.205333pt;}
.ws6d{word-spacing:-6.196800pt;}
.ws8c{word-spacing:-5.753867pt;}
.ws76{word-spacing:-4.909600pt;}
.ws60{word-spacing:-4.479200pt;}
.ws11{word-spacing:-3.190400pt;}
.ws9e{word-spacing:-3.187200pt;}
.ws44{word-spacing:-3.008000pt;}
.ws7b{word-spacing:-2.813333pt;}
.ws3a{word-spacing:-2.735467pt;}
.ws43{word-spacing:-2.554667pt;}
.wsae{word-spacing:-1.084800pt;}
.ws9a{word-spacing:-0.446400pt;}
.ws39{word-spacing:0.076000pt;}
.ws4d{word-spacing:0.200000pt;}
.ws92{word-spacing:1.496800pt;}
.wsa9{word-spacing:1.928000pt;}
.wsad{word-spacing:5.318400pt;}
.ws49{word-spacing:7.443733pt;}
.wsb6{word-spacing:15.806667pt;}
.ws77{word-spacing:20.881600pt;}
.ws3b{word-spacing:32.656533pt;}
.ws35{word-spacing:36.672000pt;}
.wsb4{word-spacing:96.001600pt;}
.wsb5{word-spacing:101.324000pt;}
.ws1{word-spacing:404.526933pt;}
._25{margin-left:-2.100800pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._28{width:1.898133pt;}
._4{width:16.689600pt;}
._b{width:17.784000pt;}
._5{width:19.311467pt;}
._14{width:20.240533pt;}
._e{width:21.440533pt;}
._7{width:22.652800pt;}
._c{width:23.688533pt;}
._17{width:24.894400pt;}
._24{width:25.860267pt;}
._1f{width:27.006933pt;}
._16{width:27.913600pt;}
._11{width:29.513600pt;}
._23{width:31.032533pt;}
._1{width:32.000000pt;}
._13{width:32.904533pt;}
._12{width:34.226667pt;}
._a{width:35.438933pt;}
._20{width:36.392533pt;}
._f{width:37.370133pt;}
._6{width:38.538667pt;}
._15{width:39.687467pt;}
._9{width:41.401600pt;}
._d{width:43.238400pt;}
._1c{width:44.200533pt;}
._26{width:45.152533pt;}
._1e{width:46.207200pt;}
._1a{width:48.239467pt;}
._2a{width:49.728000pt;}
._19{width:50.740000pt;}
._27{width:52.430400pt;}
._29{width:53.659200pt;}
._1d{width:58.086933pt;}
._2d{width:66.945333pt;}
._22{width:71.685333pt;}
._21{width:72.745067pt;}
._10{width:73.684800pt;}
._1b{width:83.565867pt;}
._18{width:87.872000pt;}
._8{width:93.634133pt;}
._2b{width:147.449600pt;}
._2c{width:152.194933pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2c{bottom:88.866667pt;}
.y98{bottom:89.508000pt;}
.y57{bottom:90.946667pt;}
.y2b{bottom:107.266667pt;}
.y97{bottom:107.908000pt;}
.y56{bottom:109.188000pt;}
.y7c{bottom:110.146667pt;}
.y96{bottom:126.308000pt;}
.y55{bottom:127.588000pt;}
.y7b{bottom:128.546667pt;}
.y2a{bottom:144.388000pt;}
.y54{bottom:145.988000pt;}
.y7a{bottom:146.946667pt;}
.y95{bottom:163.266667pt;}
.y53{bottom:164.388000pt;}
.y79{bottom:165.188000pt;}
.y29{bottom:181.508000pt;}
.y94{bottom:181.666667pt;}
.y52{bottom:182.788000pt;}
.y78{bottom:183.588000pt;}
.y28{bottom:199.908000pt;}
.y93{bottom:200.066667pt;}
.y51{bottom:201.188000pt;}
.y77{bottom:201.988000pt;}
.y27{bottom:218.308000pt;}
.y92{bottom:218.466667pt;}
.y50{bottom:219.588000pt;}
.y76{bottom:220.388000pt;}
.y26{bottom:236.706667pt;}
.y4f{bottom:237.988000pt;}
.y75{bottom:238.788000pt;}
.y91{bottom:255.588000pt;}
.y4e{bottom:256.388000pt;}
.y74{bottom:257.188000pt;}
.y25{bottom:273.666667pt;}
.y90{bottom:273.988000pt;}
.y4d{bottom:274.788000pt;}
.y73{bottom:275.588000pt;}
.ya7{bottom:291.108000pt;}
.y24{bottom:292.066667pt;}
.y8f{bottom:292.388000pt;}
.y4c{bottom:293.188000pt;}
.y72{bottom:293.988000pt;}
.ya6{bottom:309.508000pt;}
.y23{bottom:310.466667pt;}
.y8e{bottom:310.788000pt;}
.y4b{bottom:311.588000pt;}
.y71{bottom:312.388000pt;}
.y22{bottom:328.866667pt;}
.y8d{bottom:329.188000pt;}
.y4a{bottom:329.988000pt;}
.y70{bottom:330.788000pt;}
.ya5{bottom:346.466667pt;}
.y21{bottom:347.266667pt;}
.y49{bottom:348.388000pt;}
.y6f{bottom:349.188000pt;}
.ya4{bottom:364.866667pt;}
.y8c{bottom:366.308000pt;}
.y48{bottom:366.788000pt;}
.y6e{bottom:367.588000pt;}
.y20{bottom:384.388000pt;}
.y8b{bottom:384.706667pt;}
.y47{bottom:385.188000pt;}
.y6d{bottom:385.988000pt;}
.ya3{bottom:401.988000pt;}
.y1f{bottom:402.788000pt;}
.y8a{bottom:403.108000pt;}
.y46{bottom:403.588000pt;}
.y6c{bottom:404.388000pt;}
.ya2{bottom:420.388000pt;}
.y1e{bottom:421.188000pt;}
.y89{bottom:421.508000pt;}
.y45{bottom:421.988000pt;}
.y6b{bottom:422.788000pt;}
.y1d{bottom:439.588000pt;}
.y88{bottom:439.908000pt;}
.y44{bottom:440.388000pt;}
.y6a{bottom:441.188000pt;}
.ya1{bottom:457.506667pt;}
.y1c{bottom:457.988000pt;}
.y87{bottom:458.308000pt;}
.y43{bottom:458.788000pt;}
.y69{bottom:459.588000pt;}
.y1b{bottom:476.388000pt;}
.y68{bottom:477.988000pt;}
.ya0{bottom:494.466667pt;}
.y86{bottom:495.266667pt;}
.y42{bottom:495.908000pt;}
.y67{bottom:496.388000pt;}
.y1a{bottom:513.506667pt;}
.y85{bottom:513.666667pt;}
.y41{bottom:514.308000pt;}
.y66{bottom:514.788000pt;}
.y9f{bottom:531.588000pt;}
.y84{bottom:532.066667pt;}
.y40{bottom:532.706667pt;}
.y65{bottom:533.188000pt;}
.y19{bottom:550.466667pt;}
.y3f{bottom:551.108000pt;}
.y64{bottom:551.588000pt;}
.y9e{bottom:568.706667pt;}
.y18{bottom:568.866667pt;}
.y63{bottom:569.988000pt;}
.y17{bottom:587.266667pt;}
.y3e{bottom:588.066667pt;}
.y62{bottom:588.388000pt;}
.y16{bottom:605.666667pt;}
.y3d{bottom:606.466667pt;}
.y83{bottom:624.066667pt;}
.y61{bottom:625.506667pt;}
.y82{bottom:642.466667pt;}
.y15{bottom:642.788000pt;}
.y3c{bottom:643.588000pt;}
.y60{bottom:643.908000pt;}
.y14{bottom:661.188000pt;}
.y3b{bottom:661.988000pt;}
.y5f{bottom:662.308000pt;}
.y13{bottom:679.588000pt;}
.y3a{bottom:680.388000pt;}
.y5e{bottom:680.706667pt;}
.y12{bottom:697.988000pt;}
.y9d{bottom:698.308000pt;}
.y39{bottom:698.788000pt;}
.y5d{bottom:699.108000pt;}
.y11{bottom:716.388000pt;}
.y9c{bottom:716.706667pt;}
.y38{bottom:717.188000pt;}
.y5c{bottom:717.506667pt;}
.y9b{bottom:735.108000pt;}
.y5b{bottom:735.906667pt;}
.y10{bottom:753.506667pt;}
.y37{bottom:754.308000pt;}
.yf{bottom:771.906667pt;}
.y9a{bottom:772.066667pt;}
.y36{bottom:772.706667pt;}
.ye{bottom:790.306667pt;}
.y81{bottom:790.466667pt;}
.y35{bottom:791.106667pt;}
.yd{bottom:808.706667pt;}
.y80{bottom:808.866667pt;}
.y34{bottom:809.506667pt;}
.yc{bottom:827.106667pt;}
.y7f{bottom:827.266667pt;}
.y33{bottom:827.906667pt;}
.y99{bottom:845.988000pt;}
.y32{bottom:846.306667pt;}
.yb{bottom:864.066667pt;}
.y7e{bottom:864.388000pt;}
.y31{bottom:864.706667pt;}
.y7d{bottom:882.788000pt;}
.y5a{bottom:883.106667pt;}
.ya{bottom:901.188000pt;}
.y59{bottom:901.506667pt;}
.y30{bottom:901.666667pt;}
.y58{bottom:919.906667pt;}
.y2f{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y2e{bottom:938.466667pt;}
.y2d{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x5{left:363.360000pt;}
.x3{left:414.066667pt;}
.x4{left:521.440000pt;}
.x6{left:553.120000pt;}
.x2{left:649.920000pt;}
}




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