
    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_06792783f4e5ee1d4e6be8cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_acf99b4cf451b970db13110b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_53f485d27069990a00834b01.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8773b5a241fd784c8ff191e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.620000px;}
.lsb{letter-spacing:5.220000px;}
.lsa{letter-spacing:124.536000px;}
.ls4{letter-spacing:197.436000px;}
.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:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-2.695200px;}
._0{margin-left:-1.126080px;}
._1{width:1.641600px;}
._10{width:3.386880px;}
._11{width:4.704480px;}
._7{width:5.760000px;}
._12{width:6.817440px;}
._3{width:8.136000px;}
._4{width:9.158400px;}
._5{width:10.267200px;}
._6{width:11.664000px;}
._18{width:12.919680px;}
._15{width:14.152320px;}
._14{width:15.480000px;}
._d{width:16.632000px;}
._19{width:19.236480px;}
._13{width:20.278080px;}
._e{width:21.456000px;}
._f{width:23.054400px;}
._16{width:24.500160px;}
._17{width:26.449440px;}
._8{width:34.272000px;}
._9{width:35.626080px;}
._b{width:37.632000px;}
._c{width:39.003360px;}
._1b{width:51.840000px;}
._1a{width:124.536000px;}
._2{width:194.376000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.420000px;}
.y1{bottom:78.156000px;}
.y2c{bottom:111.636000px;}
.y2b{bottom:128.916000px;}
.y2a{bottom:135.756000px;}
.y29{bottom:146.196000px;}
.y28{bottom:153.030000px;}
.y51{bottom:163.290000px;}
.y27{bottom:164.190000px;}
.y50{bottom:170.130000px;}
.y93{bottom:180.570000px;}
.y4f{bottom:181.290000px;}
.y6e{bottom:184.890000px;}
.y92{bottom:187.410000px;}
.y26{bottom:187.950000px;}
.y91{bottom:198.570000px;}
.y4e{bottom:209.730000px;}
.y6d{bottom:215.850000px;}
.y24{bottom:219.090000px;}
.y25{bottom:227.370000px;}
.y90{bottom:237.090000px;}
.y4d{bottom:237.990000px;}
.y6c{bottom:246.810000px;}
.y23{bottom:250.050000px;}
.y8f{bottom:268.050000px;}
.y4c{bottom:268.950000px;}
.y6b{bottom:277.950000px;}
.y22{bottom:281.010000px;}
.y4b{bottom:300.090000px;}
.y6a{bottom:308.910000px;}
.y21{bottom:312.150000px;}
.y8e{bottom:320.250000px;}
.y4a{bottom:331.050000px;}
.y69{bottom:339.915000px;}
.y20{bottom:343.155000px;}
.y67{bottom:360.795000px;}
.y49{bottom:362.235000px;}
.y68{bottom:369.075000px;}
.y8d{bottom:372.315000px;}
.y1f{bottom:374.295000px;}
.y66{bottom:381.495000px;}
.y48{bottom:393.195000px;}
.y65{bottom:402.195000px;}
.y1e{bottom:405.255000px;}
.y8c{bottom:421.995000px;}
.y64{bottom:422.895000px;}
.y47{bottom:424.335000px;}
.y1d{bottom:436.395000px;}
.y63{bottom:443.595000px;}
.y8b{bottom:447.915000px;}
.y46{bottom:455.295000px;}
.y1c{bottom:467.355000px;}
.y8a{bottom:475.995000px;}
.y45{bottom:486.435000px;}
.y62{bottom:495.615000px;}
.y1b{bottom:498.495000px;}
.y89{bottom:507.135000px;}
.y44{bottom:517.395000px;}
.y61{bottom:526.575000px;}
.y1a{bottom:529.455000px;}
.y88{bottom:538.095000px;}
.y43{bottom:548.535000px;}
.y60{bottom:557.715000px;}
.y19{bottom:560.595000px;}
.y87{bottom:569.235000px;}
.y42{bottom:579.495000px;}
.y5f{bottom:588.675000px;}
.y18{bottom:591.555000px;}
.y85{bottom:600.195000px;}
.y86{bottom:608.505000px;}
.y41{bottom:610.665000px;}
.y17{bottom:622.725000px;}
.y84{bottom:631.365000px;}
.y5e{bottom:640.725000px;}
.y3f{bottom:641.625000px;}
.y40{bottom:649.905000px;}
.y16{bottom:653.685000px;}
.y83{bottom:662.325000px;}
.y5d{bottom:671.685000px;}
.y3e{bottom:672.765000px;}
.y14{bottom:684.825000px;}
.y15{bottom:693.105000px;}
.y82{bottom:693.465000px;}
.y3d{bottom:703.725000px;}
.y5b{bottom:713.625000px;}
.y13{bottom:715.785000px;}
.y5c{bottom:721.905000px;}
.y81{bottom:724.425000px;}
.y5a{bottom:734.325000px;}
.y3c{bottom:734.865000px;}
.y12{bottom:746.925000px;}
.y59{bottom:755.025000px;}
.y80{bottom:755.565000px;}
.y3b{bottom:765.825000px;}
.y58{bottom:775.725000px;}
.y11{bottom:777.885000px;}
.y7f{bottom:786.525000px;}
.y57{bottom:796.425000px;}
.y39{bottom:796.965000px;}
.y3a{bottom:805.245000px;}
.y10{bottom:809.025000px;}
.y56{bottom:817.125000px;}
.y7e{bottom:817.665000px;}
.y38{bottom:827.925000px;}
.yf{bottom:839.985000px;}
.y7d{bottom:848.625000px;}
.y37{bottom:859.065000px;}
.y55{bottom:868.965000px;}
.y7b{bottom:869.505000px;}
.ye{bottom:871.170000px;}
.y7c{bottom:877.830000px;}
.y36{bottom:890.070000px;}
.y7a{bottom:890.250000px;}
.y54{bottom:900.150000px;}
.yd{bottom:902.130000px;}
.y79{bottom:910.950000px;}
.y35{bottom:921.210000px;}
.y53{bottom:931.110000px;}
.y78{bottom:931.650000px;}
.yc{bottom:933.270000px;}
.y34{bottom:952.170000px;}
.y52{bottom:962.250000px;}
.y77{bottom:962.610000px;}
.yb{bottom:964.230000px;}
.y33{bottom:983.310000px;}
.y76{bottom:993.570000px;}
.ya{bottom:995.370000px;}
.y32{bottom:1014.270000px;}
.y9{bottom:1016.250000px;}
.y75{bottom:1024.710000px;}
.y8{bottom:1036.590000px;}
.y31{bottom:1045.410000px;}
.y74{bottom:1055.670000px;}
.y7{bottom:1057.290000px;}
.y30{bottom:1076.370000px;}
.y72{bottom:1076.550000px;}
.y6{bottom:1077.990000px;}
.y73{bottom:1084.830000px;}
.y71{bottom:1097.250000px;}
.y5{bottom:1098.690000px;}
.y2e{bottom:1107.510000px;}
.y2f{bottom:1115.790000px;}
.y70{bottom:1117.950000px;}
.y4{bottom:1119.390000px;}
.y2d{bottom:1138.500000px;}
.y6f{bottom:1138.680000px;}
.y3{bottom:1139.580000px;}
.h8{height:38.158594px;}
.h6{height:47.344922px;}
.h9{height:58.651172px;}
.h7{height:64.546875px;}
.h3{height:66.757500px;}
.ha{height:70.628906px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.h5{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:135.036000px;}
.x9{left:139.896000px;}
.x3{left:143.676000px;}
.x1b{left:144.756000px;}
.xf{left:169.048125px;}
.x10{left:175.170000px;}
.xe{left:188.130000px;}
.xa{left:254.053125px;}
.xb{left:260.175000px;}
.x19{left:268.093125px;}
.x1a{left:280.335000px;}
.x8{left:351.075000px;}
.x11{left:394.633125px;}
.x12{left:400.785000px;}
.x13{left:403.123125px;}
.x15{left:405.643125px;}
.x14{left:409.245000px;}
.x16{left:411.765000px;}
.x1{left:442.005000px;}
.x17{left:490.603125px;}
.x18{left:496.725000px;}
.xc{left:567.508125px;}
.xd{left:573.630000px;}
.x4{left:636.268125px;}
.x5{left:642.390000px;}
.x6{left:679.828125px;}
.x7{left:685.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls0{letter-spacing:1.440000pt;}
.lsb{letter-spacing:4.640000pt;}
.lsa{letter-spacing:110.698667pt;}
.ls4{letter-spacing:175.498667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-2.395733pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.459200pt;}
._10{width:3.010560pt;}
._11{width:4.181760pt;}
._7{width:5.120000pt;}
._12{width:6.059947pt;}
._3{width:7.232000pt;}
._4{width:8.140800pt;}
._5{width:9.126400pt;}
._6{width:10.368000pt;}
._18{width:11.484160pt;}
._15{width:12.579840pt;}
._14{width:13.760000pt;}
._d{width:14.784000pt;}
._19{width:17.099093pt;}
._13{width:18.024960pt;}
._e{width:19.072000pt;}
._f{width:20.492800pt;}
._16{width:21.777920pt;}
._17{width:23.510613pt;}
._8{width:30.464000pt;}
._9{width:31.667627pt;}
._b{width:33.450667pt;}
._c{width:34.669653pt;}
._1b{width:46.080000pt;}
._1a{width:110.698667pt;}
._2{width:172.778667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:69.472000pt;}
.y2c{bottom:99.232000pt;}
.y2b{bottom:114.592000pt;}
.y2a{bottom:120.672000pt;}
.y29{bottom:129.952000pt;}
.y28{bottom:136.026667pt;}
.y51{bottom:145.146667pt;}
.y27{bottom:145.946667pt;}
.y50{bottom:151.226667pt;}
.y93{bottom:160.506667pt;}
.y4f{bottom:161.146667pt;}
.y6e{bottom:164.346667pt;}
.y92{bottom:166.586667pt;}
.y26{bottom:167.066667pt;}
.y91{bottom:176.506667pt;}
.y4e{bottom:186.426667pt;}
.y6d{bottom:191.866667pt;}
.y24{bottom:194.746667pt;}
.y25{bottom:202.106667pt;}
.y90{bottom:210.746667pt;}
.y4d{bottom:211.546667pt;}
.y6c{bottom:219.386667pt;}
.y23{bottom:222.266667pt;}
.y8f{bottom:238.266667pt;}
.y4c{bottom:239.066667pt;}
.y6b{bottom:247.066667pt;}
.y22{bottom:249.786667pt;}
.y4b{bottom:266.746667pt;}
.y6a{bottom:274.586667pt;}
.y21{bottom:277.466667pt;}
.y8e{bottom:284.666667pt;}
.y4a{bottom:294.266667pt;}
.y69{bottom:302.146667pt;}
.y20{bottom:305.026667pt;}
.y67{bottom:320.706667pt;}
.y49{bottom:321.986667pt;}
.y68{bottom:328.066667pt;}
.y8d{bottom:330.946667pt;}
.y1f{bottom:332.706667pt;}
.y66{bottom:339.106667pt;}
.y48{bottom:349.506667pt;}
.y65{bottom:357.506667pt;}
.y1e{bottom:360.226667pt;}
.y8c{bottom:375.106667pt;}
.y64{bottom:375.906667pt;}
.y47{bottom:377.186667pt;}
.y1d{bottom:387.906667pt;}
.y63{bottom:394.306667pt;}
.y8b{bottom:398.146667pt;}
.y46{bottom:404.706667pt;}
.y1c{bottom:415.426667pt;}
.y8a{bottom:423.106667pt;}
.y45{bottom:432.386667pt;}
.y62{bottom:440.546667pt;}
.y1b{bottom:443.106667pt;}
.y89{bottom:450.786667pt;}
.y44{bottom:459.906667pt;}
.y61{bottom:468.066667pt;}
.y1a{bottom:470.626667pt;}
.y88{bottom:478.306667pt;}
.y43{bottom:487.586667pt;}
.y60{bottom:495.746667pt;}
.y19{bottom:498.306667pt;}
.y87{bottom:505.986667pt;}
.y42{bottom:515.106667pt;}
.y5f{bottom:523.266667pt;}
.y18{bottom:525.826667pt;}
.y85{bottom:533.506667pt;}
.y86{bottom:540.893333pt;}
.y41{bottom:542.813333pt;}
.y17{bottom:553.533333pt;}
.y84{bottom:561.213333pt;}
.y5e{bottom:569.533333pt;}
.y3f{bottom:570.333333pt;}
.y40{bottom:577.693333pt;}
.y16{bottom:581.053333pt;}
.y83{bottom:588.733333pt;}
.y5d{bottom:597.053333pt;}
.y3e{bottom:598.013333pt;}
.y14{bottom:608.733333pt;}
.y15{bottom:616.093333pt;}
.y82{bottom:616.413333pt;}
.y3d{bottom:625.533333pt;}
.y5b{bottom:634.333333pt;}
.y13{bottom:636.253333pt;}
.y5c{bottom:641.693333pt;}
.y81{bottom:643.933333pt;}
.y5a{bottom:652.733333pt;}
.y3c{bottom:653.213333pt;}
.y12{bottom:663.933333pt;}
.y59{bottom:671.133333pt;}
.y80{bottom:671.613333pt;}
.y3b{bottom:680.733333pt;}
.y58{bottom:689.533333pt;}
.y11{bottom:691.453333pt;}
.y7f{bottom:699.133333pt;}
.y57{bottom:707.933333pt;}
.y39{bottom:708.413333pt;}
.y3a{bottom:715.773333pt;}
.y10{bottom:719.133333pt;}
.y56{bottom:726.333333pt;}
.y7e{bottom:726.813333pt;}
.y38{bottom:735.933333pt;}
.yf{bottom:746.653333pt;}
.y7d{bottom:754.333333pt;}
.y37{bottom:763.613333pt;}
.y55{bottom:772.413333pt;}
.y7b{bottom:772.893333pt;}
.ye{bottom:774.373333pt;}
.y7c{bottom:780.293333pt;}
.y36{bottom:791.173333pt;}
.y7a{bottom:791.333333pt;}
.y54{bottom:800.133333pt;}
.yd{bottom:801.893333pt;}
.y79{bottom:809.733333pt;}
.y35{bottom:818.853333pt;}
.y53{bottom:827.653333pt;}
.y78{bottom:828.133333pt;}
.yc{bottom:829.573333pt;}
.y34{bottom:846.373333pt;}
.y52{bottom:855.333333pt;}
.y77{bottom:855.653333pt;}
.yb{bottom:857.093333pt;}
.y33{bottom:874.053333pt;}
.y76{bottom:883.173333pt;}
.ya{bottom:884.773333pt;}
.y32{bottom:901.573333pt;}
.y9{bottom:903.333333pt;}
.y75{bottom:910.853333pt;}
.y8{bottom:921.413333pt;}
.y31{bottom:929.253333pt;}
.y74{bottom:938.373333pt;}
.y7{bottom:939.813333pt;}
.y30{bottom:956.773333pt;}
.y72{bottom:956.933333pt;}
.y6{bottom:958.213333pt;}
.y73{bottom:964.293333pt;}
.y71{bottom:975.333333pt;}
.y5{bottom:976.613333pt;}
.y2e{bottom:984.453333pt;}
.y2f{bottom:991.813333pt;}
.y70{bottom:993.733333pt;}
.y4{bottom:995.013333pt;}
.y2d{bottom:1012.000000pt;}
.y6f{bottom:1012.160000pt;}
.y3{bottom:1012.960000pt;}
.h8{height:33.918750pt;}
.h6{height:42.084375pt;}
.h9{height:52.134375pt;}
.h7{height:57.375000pt;}
.h3{height:59.340000pt;}
.ha{height:62.781250pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.h5{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:120.032000pt;}
.x9{left:124.352000pt;}
.x3{left:127.712000pt;}
.x1b{left:128.672000pt;}
.xf{left:150.265000pt;}
.x10{left:155.706667pt;}
.xe{left:167.226667pt;}
.xa{left:225.825000pt;}
.xb{left:231.266667pt;}
.x19{left:238.305000pt;}
.x1a{left:249.186667pt;}
.x8{left:312.066667pt;}
.x11{left:350.785000pt;}
.x12{left:356.253333pt;}
.x13{left:358.331667pt;}
.x15{left:360.571667pt;}
.x14{left:363.773333pt;}
.x16{left:366.013333pt;}
.x1{left:392.893333pt;}
.x17{left:436.091667pt;}
.x18{left:441.533333pt;}
.xc{left:504.451667pt;}
.xd{left:509.893333pt;}
.x4{left:565.571667pt;}
.x5{left:571.013333pt;}
.x6{left:604.291667pt;}
.x7{left:609.733333pt;}
}




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