
    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_04c313da516cb9323f34705f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.147000;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_726348ca36812a73a3b992eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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;}
.ls3{letter-spacing:-0.027000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.234000px;}
.ls2{letter-spacing:0.423000px;}
.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:-14.661000px;}
.ws2{word-spacing:-14.526000px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-4.221000px;}
._f{margin-left:-3.213000px;}
._4{margin-left:-2.016000px;}
._c{margin-left:-1.008000px;}
._0{width:1.638000px;}
._3{width:3.276000px;}
._b{width:4.725000px;}
._d{width:5.859000px;}
._e{width:7.245000px;}
._a{width:8.253000px;}
._10{width:9.261000px;}
._7{width:10.458000px;}
._8{width:11.529000px;}
._9{width:12.537000px;}
._12{width:16.515000px;}
._13{width:17.676000px;}
._11{width:18.711000px;}
._1{width:19.908000px;}
._2{width:20.916000px;}
._5{width:22.365000px;}
._6{width:23.499000px;}
._15{width:24.687000px;}
._18{width:29.574000px;}
._16{width:30.681000px;}
._17{width:34.650000px;}
._19{width:36.018000px;}
._1a{width:39.924000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,51);}
.fs0{font-size:63.000000px;}
.fs1{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y56{bottom:115.740000px;}
.y74{bottom:126.990000px;}
.y2d{bottom:142.650000px;}
.y55{bottom:145.080000px;}
.y8c{bottom:149.490000px;}
.y73{bottom:156.330000px;}
.y8b{bottom:167.580000px;}
.y2c{bottom:171.990000px;}
.y54{bottom:174.420000px;}
.y8a{bottom:185.670000px;}
.y2b{bottom:190.080000px;}
.y72{bottom:192.510000px;}
.y53{bottom:203.760000px;}
.y71{bottom:210.600000px;}
.y2a{bottom:219.420000px;}
.y52{bottom:221.850000px;}
.y70{bottom:228.720000px;}
.y51{bottom:239.970000px;}
.y6f{bottom:246.810000px;}
.y29{bottom:248.790000px;}
.y89{bottom:251.220000px;}
.y50{bottom:258.060000px;}
.y6e{bottom:264.900000px;}
.y28{bottom:266.880000px;}
.y88{bottom:269.310000px;}
.y4f{bottom:276.150000px;}
.y6d{bottom:282.990000px;}
.y4e{bottom:294.240000px;}
.y27{bottom:296.220000px;}
.y87{bottom:298.650000px;}
.y6c{bottom:301.170000px;}
.y26{bottom:314.310000px;}
.y4d{bottom:323.670000px;}
.y86{bottom:327.990000px;}
.y6b{bottom:330.510000px;}
.y25{bottom:332.400000px;}
.y4c{bottom:341.760000px;}
.y24{bottom:350.490000px;}
.y85{bottom:357.420000px;}
.y4b{bottom:359.850000px;}
.y84{bottom:375.510000px;}
.y6a{bottom:377.940000px;}
.y23{bottom:379.920000px;}
.y4a{bottom:389.190000px;}
.y69{bottom:396.030000px;}
.y83{bottom:404.850000px;}
.y49{bottom:407.280000px;}
.y22{bottom:409.260000px;}
.y48{bottom:425.370000px;}
.y21{bottom:427.350000px;}
.y82{bottom:434.190000px;}
.y99{bottom:435.990000px;}
.y47{bottom:454.710000px;}
.y20{bottom:456.690000px;}
.y81{bottom:463.530000px;}
.y98{bottom:465.960000px;}
.y68{bottom:472.800000px;}
.y46{bottom:484.050000px;}
.y1f{bottom:486.030000px;}
.y67{bottom:490.890000px;}
.y80{bottom:492.870000px;}
.y97{bottom:495.300000px;}
.y66{bottom:508.980000px;}
.y45{bottom:513.390000px;}
.y1e{bottom:515.370000px;}
.y7f{bottom:522.210000px;}
.y65{bottom:538.320000px;}
.y7e{bottom:540.300000px;}
.y44{bottom:542.730000px;}
.y1d{bottom:544.710000px;}
.y7d{bottom:558.390000px;}
.y43{bottom:560.820000px;}
.y64{bottom:567.660000px;}
.y1c{bottom:574.050000px;}
.y42{bottom:578.910000px;}
.y7c{bottom:587.730000px;}
.y96{bottom:590.160000px;}
.y1b{bottom:592.140000px;}
.y41{bottom:597.000000px;}
.y95{bottom:608.250000px;}
.y1a{bottom:610.230000px;}
.y7b{bottom:617.070000px;}
.y40{bottom:626.430000px;}
.y19{bottom:628.320000px;}
.y94{bottom:644.520000px;}
.y18{bottom:646.440000px;}
.y3f{bottom:655.800000px;}
.y17{bottom:664.530000px;}
.y3e{bottom:673.890000px;}
.y7a{bottom:675.780000px;}
.y63{bottom:685.140000px;}
.y16{bottom:693.960000px;}
.y3d{bottom:703.230000px;}
.y15{bottom:712.050000px;}
.y62{bottom:714.480000px;}
.y3c{bottom:721.320000px;}
.y14{bottom:730.140000px;}
.y93{bottom:732.570000px;}
.y3b{bottom:739.410000px;}
.y61{bottom:743.820000px;}
.y13{bottom:748.230000px;}
.y92{bottom:761.910000px;}
.y12{bottom:766.320000px;}
.y3a{bottom:768.750000px;}
.y60{bottom:773.160000px;}
.y39{bottom:786.840000px;}
.y5f{bottom:791.250000px;}
.y11{bottom:795.660000px;}
.y38{bottom:804.930000px;}
.y5e{bottom:809.340000px;}
.y10{bottom:813.750000px;}
.y91{bottom:820.590000px;}
.y79{bottom:831.840000px;}
.y37{bottom:834.270000px;}
.y5d{bottom:838.680000px;}
.yf{bottom:843.090000px;}
.y78{bottom:849.930000px;}
.y90{bottom:856.770000px;}
.ye{bottom:861.180000px;}
.y36{bottom:863.610000px;}
.y5c{bottom:868.020000px;}
.yd{bottom:879.270000px;}
.y35{bottom:881.700000px;}
.y8f{bottom:886.110000px;}
.yc{bottom:897.360000px;}
.y34{bottom:899.790000px;}
.y8e{bottom:904.200000px;}
.y5b{bottom:915.450000px;}
.y8d{bottom:922.290000px;}
.yb{bottom:926.700000px;}
.y33{bottom:929.220000px;}
.y5a{bottom:933.540000px;}
.ya{bottom:944.790000px;}
.y59{bottom:951.720000px;}
.y32{bottom:958.560000px;}
.y9{bottom:962.970000px;}
.y8{bottom:981.060000px;}
.y31{bottom:987.900000px;}
.y58{bottom:999.150000px;}
.y30{bottom:1005.990000px;}
.y7{bottom:1010.400000px;}
.y57{bottom:1017.240000px;}
.y2f{bottom:1035.330000px;}
.y6{bottom:1039.740000px;}
.y5{bottom:1057.830000px;}
.y2e{bottom:1064.670000px;}
.y77{bottom:1069.110000px;}
.y4{bottom:1075.950000px;}
.y76{bottom:1087.200000px;}
.y3{bottom:1094.040000px;}
.y75{bottom:1105.290000px;}
.y2{bottom:1123.380000px;}
.y1{bottom:1141.470000px;}
.h3{height:58.716000px;}
.h2{height:60.417000px;}
.h4{height:65.526152px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.024000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.208000pt;}
.ls2{letter-spacing:0.376000pt;}
.ws0{word-spacing:-13.032000pt;}
.ws2{word-spacing:-12.912000pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-3.752000pt;}
._f{margin-left:-2.856000pt;}
._4{margin-left:-1.792000pt;}
._c{margin-left:-0.896000pt;}
._0{width:1.456000pt;}
._3{width:2.912000pt;}
._b{width:4.200000pt;}
._d{width:5.208000pt;}
._e{width:6.440000pt;}
._a{width:7.336000pt;}
._10{width:8.232000pt;}
._7{width:9.296000pt;}
._8{width:10.248000pt;}
._9{width:11.144000pt;}
._12{width:14.680000pt;}
._13{width:15.712000pt;}
._11{width:16.632000pt;}
._1{width:17.696000pt;}
._2{width:18.592000pt;}
._5{width:19.880000pt;}
._6{width:20.888000pt;}
._15{width:21.944000pt;}
._18{width:26.288000pt;}
._16{width:27.272000pt;}
._17{width:30.800000pt;}
._19{width:32.016000pt;}
._1a{width:35.488000pt;}
.fs0{font-size:56.000000pt;}
.fs1{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:102.880000pt;}
.y74{bottom:112.880000pt;}
.y2d{bottom:126.800000pt;}
.y55{bottom:128.960000pt;}
.y8c{bottom:132.880000pt;}
.y73{bottom:138.960000pt;}
.y8b{bottom:148.960000pt;}
.y2c{bottom:152.880000pt;}
.y54{bottom:155.040000pt;}
.y8a{bottom:165.040000pt;}
.y2b{bottom:168.960000pt;}
.y72{bottom:171.120000pt;}
.y53{bottom:181.120000pt;}
.y71{bottom:187.200000pt;}
.y2a{bottom:195.040000pt;}
.y52{bottom:197.200000pt;}
.y70{bottom:203.306667pt;}
.y51{bottom:213.306667pt;}
.y6f{bottom:219.386667pt;}
.y29{bottom:221.146667pt;}
.y89{bottom:223.306667pt;}
.y50{bottom:229.386667pt;}
.y6e{bottom:235.466667pt;}
.y28{bottom:237.226667pt;}
.y88{bottom:239.386667pt;}
.y4f{bottom:245.466667pt;}
.y6d{bottom:251.546667pt;}
.y4e{bottom:261.546667pt;}
.y27{bottom:263.306667pt;}
.y87{bottom:265.466667pt;}
.y6c{bottom:267.706667pt;}
.y26{bottom:279.386667pt;}
.y4d{bottom:287.706667pt;}
.y86{bottom:291.546667pt;}
.y6b{bottom:293.786667pt;}
.y25{bottom:295.466667pt;}
.y4c{bottom:303.786667pt;}
.y24{bottom:311.546667pt;}
.y85{bottom:317.706667pt;}
.y4b{bottom:319.866667pt;}
.y84{bottom:333.786667pt;}
.y6a{bottom:335.946667pt;}
.y23{bottom:337.706667pt;}
.y4a{bottom:345.946667pt;}
.y69{bottom:352.026667pt;}
.y83{bottom:359.866667pt;}
.y49{bottom:362.026667pt;}
.y22{bottom:363.786667pt;}
.y48{bottom:378.106667pt;}
.y21{bottom:379.866667pt;}
.y82{bottom:385.946667pt;}
.y99{bottom:387.546667pt;}
.y47{bottom:404.186667pt;}
.y20{bottom:405.946667pt;}
.y81{bottom:412.026667pt;}
.y98{bottom:414.186667pt;}
.y68{bottom:420.266667pt;}
.y46{bottom:430.266667pt;}
.y1f{bottom:432.026667pt;}
.y67{bottom:436.346667pt;}
.y80{bottom:438.106667pt;}
.y97{bottom:440.266667pt;}
.y66{bottom:452.426667pt;}
.y45{bottom:456.346667pt;}
.y1e{bottom:458.106667pt;}
.y7f{bottom:464.186667pt;}
.y65{bottom:478.506667pt;}
.y7e{bottom:480.266667pt;}
.y44{bottom:482.426667pt;}
.y1d{bottom:484.186667pt;}
.y7d{bottom:496.346667pt;}
.y43{bottom:498.506667pt;}
.y64{bottom:504.586667pt;}
.y1c{bottom:510.266667pt;}
.y42{bottom:514.586667pt;}
.y7c{bottom:522.426667pt;}
.y96{bottom:524.586667pt;}
.y1b{bottom:526.346667pt;}
.y41{bottom:530.666667pt;}
.y95{bottom:540.666667pt;}
.y1a{bottom:542.426667pt;}
.y7b{bottom:548.506667pt;}
.y40{bottom:556.826667pt;}
.y19{bottom:558.506667pt;}
.y94{bottom:572.906667pt;}
.y18{bottom:574.613333pt;}
.y3f{bottom:582.933333pt;}
.y17{bottom:590.693333pt;}
.y3e{bottom:599.013333pt;}
.y7a{bottom:600.693333pt;}
.y63{bottom:609.013333pt;}
.y16{bottom:616.853333pt;}
.y3d{bottom:625.093333pt;}
.y15{bottom:632.933333pt;}
.y62{bottom:635.093333pt;}
.y3c{bottom:641.173333pt;}
.y14{bottom:649.013333pt;}
.y93{bottom:651.173333pt;}
.y3b{bottom:657.253333pt;}
.y61{bottom:661.173333pt;}
.y13{bottom:665.093333pt;}
.y92{bottom:677.253333pt;}
.y12{bottom:681.173333pt;}
.y3a{bottom:683.333333pt;}
.y60{bottom:687.253333pt;}
.y39{bottom:699.413333pt;}
.y5f{bottom:703.333333pt;}
.y11{bottom:707.253333pt;}
.y38{bottom:715.493333pt;}
.y5e{bottom:719.413333pt;}
.y10{bottom:723.333333pt;}
.y91{bottom:729.413333pt;}
.y79{bottom:739.413333pt;}
.y37{bottom:741.573333pt;}
.y5d{bottom:745.493333pt;}
.yf{bottom:749.413333pt;}
.y78{bottom:755.493333pt;}
.y90{bottom:761.573333pt;}
.ye{bottom:765.493333pt;}
.y36{bottom:767.653333pt;}
.y5c{bottom:771.573333pt;}
.yd{bottom:781.573333pt;}
.y35{bottom:783.733333pt;}
.y8f{bottom:787.653333pt;}
.yc{bottom:797.653333pt;}
.y34{bottom:799.813333pt;}
.y8e{bottom:803.733333pt;}
.y5b{bottom:813.733333pt;}
.y8d{bottom:819.813333pt;}
.yb{bottom:823.733333pt;}
.y33{bottom:825.973333pt;}
.y5a{bottom:829.813333pt;}
.ya{bottom:839.813333pt;}
.y59{bottom:845.973333pt;}
.y32{bottom:852.053333pt;}
.y9{bottom:855.973333pt;}
.y8{bottom:872.053333pt;}
.y31{bottom:878.133333pt;}
.y58{bottom:888.133333pt;}
.y30{bottom:894.213333pt;}
.y7{bottom:898.133333pt;}
.y57{bottom:904.213333pt;}
.y2f{bottom:920.293333pt;}
.y6{bottom:924.213333pt;}
.y5{bottom:940.293333pt;}
.y2e{bottom:946.373333pt;}
.y77{bottom:950.320000pt;}
.y4{bottom:956.400000pt;}
.y76{bottom:966.400000pt;}
.y3{bottom:972.480000pt;}
.y75{bottom:982.480000pt;}
.y2{bottom:998.560000pt;}
.y1{bottom:1014.640000pt;}
.h3{height:52.192000pt;}
.h2{height:53.704000pt;}
.h4{height:58.245469pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.466655pt;}
}




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