
    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_e25b5a3d77c7415803c226c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972656;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_0893a75e94926b86473930c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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;}
}
.ws0{word-spacing:-59.700000px;}
.ws1{word-spacing:-44.502600px;}
.ws2{word-spacing:-38.387100px;}
.ws4{word-spacing:-24.158100px;}
.wsc{word-spacing:-24.136800px;}
.ws8{word-spacing:-24.088500px;}
.wsb{word-spacing:-23.792400px;}
.ws9{word-spacing:-23.762100px;}
.ws3{word-spacing:-23.756100px;}
.ws6{word-spacing:-23.515800px;}
.ws7{word-spacing:-23.509500px;}
.ws5{word-spacing:-23.440800px;}
.wsa{word-spacing:-23.431800px;}
.wsd{word-spacing:-23.297700px;}
._0{width:1.098000px;}
._1{width:16.208100px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.700000px;}
.y0{bottom:0.000000px;}
.ya{bottom:6.375000px;}
.yc{bottom:6.405000px;}
.y2{bottom:6.436500px;}
.y4{bottom:6.465000px;}
.y82{bottom:6.480000px;}
.y6{bottom:6.495000px;}
.y16{bottom:6.496500px;}
.y8{bottom:6.525000px;}
.y59{bottom:6.571500px;}
.y34{bottom:6.600000px;}
.yaf{bottom:7.350000px;}
.y9b{bottom:18.075000px;}
.y36{bottom:18.105000px;}
.y61{bottom:18.136500px;}
.y22{bottom:18.165000px;}
.y5b{bottom:18.195000px;}
.y26{bottom:18.196500px;}
.y72{bottom:18.225000px;}
.y9c{bottom:29.775000px;}
.y37{bottom:29.805000px;}
.y62{bottom:29.836500px;}
.y23{bottom:29.865000px;}
.y5c{bottom:29.895000px;}
.y25{bottom:29.896500px;}
.y73{bottom:29.925000px;}
.y33{bottom:118.575000px;}
.y58{bottom:119.325000px;}
.y81{bottom:121.575000px;}
.y32{bottom:142.800000px;}
.y57{bottom:143.550000px;}
.y80{bottom:145.800000px;}
.y56{bottom:167.700000px;}
.y7f{bottom:169.950000px;}
.y31{bottom:190.350000px;}
.y55{bottom:191.850000px;}
.ya9{bottom:193.350000px;}
.y7e{bottom:194.100000px;}
.y30{bottom:214.500000px;}
.y54{bottom:216.000000px;}
.ya8{bottom:217.500000px;}
.y7d{bottom:218.250000px;}
.y2f{bottom:238.650000px;}
.y53{bottom:240.150000px;}
.ya7{bottom:241.650000px;}
.y7c{bottom:242.400000px;}
.yae{bottom:262.725000px;}
.y2e{bottom:262.800000px;}
.y52{bottom:264.300000px;}
.y7b{bottom:266.550000px;}
.y2d{bottom:286.950000px;}
.yad{bottom:287.700000px;}
.y51{bottom:288.450000px;}
.ya6{bottom:289.200000px;}
.y7a{bottom:290.700000px;}
.y2c{bottom:311.100000px;}
.yac{bottom:311.850000px;}
.y9e{bottom:312.600000px;}
.ya5{bottom:313.350000px;}
.y79{bottom:314.850000px;}
.y2b{bottom:335.250000px;}
.y50{bottom:336.000000px;}
.y9d{bottom:336.750000px;}
.ya4{bottom:337.500000px;}
.y91{bottom:339.000000px;}
.y2a{bottom:359.400000px;}
.y4f{bottom:360.150000px;}
.y9a{bottom:360.900000px;}
.ya3{bottom:361.650000px;}
.y78{bottom:362.400000px;}
.y29{bottom:383.550000px;}
.y4e{bottom:384.300000px;}
.ya2{bottom:385.800000px;}
.y77{bottom:386.550000px;}
.y28{bottom:407.700000px;}
.y4d{bottom:408.450000px;}
.ya1{bottom:409.950000px;}
.y76{bottom:410.700000px;}
.y27{bottom:431.850000px;}
.y4c{bottom:432.600000px;}
.y90{bottom:434.100000px;}
.y75{bottom:434.850000px;}
.y24{bottom:456.000000px;}
.y4b{bottom:456.750000px;}
.y8f{bottom:458.250000px;}
.y74{bottom:459.000000px;}
.yab{bottom:480.150000px;}
.y4a{bottom:480.900000px;}
.y8e{bottom:482.400000px;}
.y71{bottom:483.150000px;}
.y21{bottom:503.550000px;}
.yaa{bottom:504.300000px;}
.y49{bottom:505.050000px;}
.ya0{bottom:505.800000px;}
.y8d{bottom:506.550000px;}
.y99{bottom:528.450000px;}
.y70{bottom:530.700000px;}
.y20{bottom:551.100000px;}
.y48{bottom:552.600000px;}
.y9f{bottom:553.350000px;}
.y8c{bottom:554.100000px;}
.y6f{bottom:554.850000px;}
.y1f{bottom:575.250000px;}
.y47{bottom:576.750000px;}
.y6e{bottom:579.000000px;}
.y1e{bottom:599.400000px;}
.y46{bottom:600.900000px;}
.y8b{bottom:601.650000px;}
.y6d{bottom:603.150000px;}
.y1d{bottom:623.550000px;}
.y45{bottom:625.050000px;}
.y8a{bottom:625.800000px;}
.y1c{bottom:647.700000px;}
.y98{bottom:648.450000px;}
.y44{bottom:649.200000px;}
.y89{bottom:649.950000px;}
.y6c{bottom:650.700000px;}
.y1b{bottom:671.850000px;}
.y97{bottom:672.600000px;}
.y43{bottom:673.350000px;}
.y88{bottom:674.100000px;}
.y6b{bottom:674.850000px;}
.y1a{bottom:696.000000px;}
.y96{bottom:696.750000px;}
.y42{bottom:697.500000px;}
.y87{bottom:698.250000px;}
.y6a{bottom:699.000000px;}
.y19{bottom:720.150000px;}
.y95{bottom:720.900000px;}
.y41{bottom:721.650000px;}
.y69{bottom:723.150000px;}
.y18{bottom:744.300000px;}
.y94{bottom:745.050000px;}
.y40{bottom:745.800000px;}
.y17{bottom:768.450000px;}
.y93{bottom:769.200000px;}
.y3f{bottom:769.950000px;}
.y68{bottom:770.700000px;}
.y15{bottom:792.600000px;}
.y92{bottom:793.350000px;}
.y86{bottom:794.100000px;}
.y67{bottom:794.850000px;}
.y14{bottom:816.750000px;}
.y3e{bottom:817.500000px;}
.y85{bottom:818.250000px;}
.y66{bottom:819.000000px;}
.y13{bottom:840.900000px;}
.y3d{bottom:841.650000px;}
.y84{bottom:842.400000px;}
.y65{bottom:843.150000px;}
.y12{bottom:865.050000px;}
.y3c{bottom:865.800000px;}
.y83{bottom:866.550000px;}
.y64{bottom:867.300000px;}
.y11{bottom:889.200000px;}
.y3b{bottom:889.950000px;}
.y63{bottom:891.450000px;}
.y10{bottom:913.350000px;}
.y3a{bottom:914.100000px;}
.y60{bottom:915.600000px;}
.yf{bottom:937.500000px;}
.y39{bottom:938.250000px;}
.ye{bottom:961.650000px;}
.y38{bottom:962.400000px;}
.y5f{bottom:963.150000px;}
.yd{bottom:985.800000px;}
.y35{bottom:986.550000px;}
.yb{bottom:1009.950000px;}
.y5e{bottom:1010.700000px;}
.y9{bottom:1034.100000px;}
.y5d{bottom:1034.850000px;}
.y7{bottom:1058.250000px;}
.y5a{bottom:1059.000000px;}
.y5{bottom:1082.400000px;}
.y3{bottom:1106.550000px;}
.y1{bottom:1130.700000px;}
.h2{height:24.150000px;}
.h6{height:24.225000px;}
.h7{height:24.975000px;}
.h3{height:45.124805px;}
.h4{height:45.153955px;}
.h5{height:47.550000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:149.850000px;}
.w3{width:489.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x2{left:46.080000px;}
.x4{left:125.805000px;}
.x1{left:126.900000px;}
.x3{left:276.675000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-53.066667pt;}
.ws1{word-spacing:-39.557867pt;}
.ws2{word-spacing:-34.121867pt;}
.ws4{word-spacing:-21.473867pt;}
.wsc{word-spacing:-21.454933pt;}
.ws8{word-spacing:-21.412000pt;}
.wsb{word-spacing:-21.148800pt;}
.ws9{word-spacing:-21.121867pt;}
.ws3{word-spacing:-21.116533pt;}
.ws6{word-spacing:-20.902933pt;}
.ws7{word-spacing:-20.897333pt;}
.ws5{word-spacing:-20.836267pt;}
.wsa{word-spacing:-20.828267pt;}
.wsd{word-spacing:-20.709067pt;}
._0{width:0.976000pt;}
._1{width:14.407200pt;}
.fs0{font-size:53.066667pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:5.666667pt;}
.yc{bottom:5.693333pt;}
.y2{bottom:5.721333pt;}
.y4{bottom:5.746667pt;}
.y82{bottom:5.760000pt;}
.y6{bottom:5.773333pt;}
.y16{bottom:5.774667pt;}
.y8{bottom:5.800000pt;}
.y59{bottom:5.841333pt;}
.y34{bottom:5.866667pt;}
.yaf{bottom:6.533333pt;}
.y9b{bottom:16.066667pt;}
.y36{bottom:16.093333pt;}
.y61{bottom:16.121333pt;}
.y22{bottom:16.146667pt;}
.y5b{bottom:16.173333pt;}
.y26{bottom:16.174667pt;}
.y72{bottom:16.200000pt;}
.y9c{bottom:26.466667pt;}
.y37{bottom:26.493333pt;}
.y62{bottom:26.521333pt;}
.y23{bottom:26.546667pt;}
.y5c{bottom:26.573333pt;}
.y25{bottom:26.574667pt;}
.y73{bottom:26.600000pt;}
.y33{bottom:105.400000pt;}
.y58{bottom:106.066667pt;}
.y81{bottom:108.066667pt;}
.y32{bottom:126.933333pt;}
.y57{bottom:127.600000pt;}
.y80{bottom:129.600000pt;}
.y56{bottom:149.066667pt;}
.y7f{bottom:151.066667pt;}
.y31{bottom:169.200000pt;}
.y55{bottom:170.533333pt;}
.ya9{bottom:171.866667pt;}
.y7e{bottom:172.533333pt;}
.y30{bottom:190.666667pt;}
.y54{bottom:192.000000pt;}
.ya8{bottom:193.333333pt;}
.y7d{bottom:194.000000pt;}
.y2f{bottom:212.133333pt;}
.y53{bottom:213.466667pt;}
.ya7{bottom:214.800000pt;}
.y7c{bottom:215.466667pt;}
.yae{bottom:233.533333pt;}
.y2e{bottom:233.600000pt;}
.y52{bottom:234.933333pt;}
.y7b{bottom:236.933333pt;}
.y2d{bottom:255.066667pt;}
.yad{bottom:255.733333pt;}
.y51{bottom:256.400000pt;}
.ya6{bottom:257.066667pt;}
.y7a{bottom:258.400000pt;}
.y2c{bottom:276.533333pt;}
.yac{bottom:277.200000pt;}
.y9e{bottom:277.866667pt;}
.ya5{bottom:278.533333pt;}
.y79{bottom:279.866667pt;}
.y2b{bottom:298.000000pt;}
.y50{bottom:298.666667pt;}
.y9d{bottom:299.333333pt;}
.ya4{bottom:300.000000pt;}
.y91{bottom:301.333333pt;}
.y2a{bottom:319.466667pt;}
.y4f{bottom:320.133333pt;}
.y9a{bottom:320.800000pt;}
.ya3{bottom:321.466667pt;}
.y78{bottom:322.133333pt;}
.y29{bottom:340.933333pt;}
.y4e{bottom:341.600000pt;}
.ya2{bottom:342.933333pt;}
.y77{bottom:343.600000pt;}
.y28{bottom:362.400000pt;}
.y4d{bottom:363.066667pt;}
.ya1{bottom:364.400000pt;}
.y76{bottom:365.066667pt;}
.y27{bottom:383.866667pt;}
.y4c{bottom:384.533333pt;}
.y90{bottom:385.866667pt;}
.y75{bottom:386.533333pt;}
.y24{bottom:405.333333pt;}
.y4b{bottom:406.000000pt;}
.y8f{bottom:407.333333pt;}
.y74{bottom:408.000000pt;}
.yab{bottom:426.800000pt;}
.y4a{bottom:427.466667pt;}
.y8e{bottom:428.800000pt;}
.y71{bottom:429.466667pt;}
.y21{bottom:447.600000pt;}
.yaa{bottom:448.266667pt;}
.y49{bottom:448.933333pt;}
.ya0{bottom:449.600000pt;}
.y8d{bottom:450.266667pt;}
.y99{bottom:469.733333pt;}
.y70{bottom:471.733333pt;}
.y20{bottom:489.866667pt;}
.y48{bottom:491.200000pt;}
.y9f{bottom:491.866667pt;}
.y8c{bottom:492.533333pt;}
.y6f{bottom:493.200000pt;}
.y1f{bottom:511.333333pt;}
.y47{bottom:512.666667pt;}
.y6e{bottom:514.666667pt;}
.y1e{bottom:532.800000pt;}
.y46{bottom:534.133333pt;}
.y8b{bottom:534.800000pt;}
.y6d{bottom:536.133333pt;}
.y1d{bottom:554.266667pt;}
.y45{bottom:555.600000pt;}
.y8a{bottom:556.266667pt;}
.y1c{bottom:575.733333pt;}
.y98{bottom:576.400000pt;}
.y44{bottom:577.066667pt;}
.y89{bottom:577.733333pt;}
.y6c{bottom:578.400000pt;}
.y1b{bottom:597.200000pt;}
.y97{bottom:597.866667pt;}
.y43{bottom:598.533333pt;}
.y88{bottom:599.200000pt;}
.y6b{bottom:599.866667pt;}
.y1a{bottom:618.666667pt;}
.y96{bottom:619.333333pt;}
.y42{bottom:620.000000pt;}
.y87{bottom:620.666667pt;}
.y6a{bottom:621.333333pt;}
.y19{bottom:640.133333pt;}
.y95{bottom:640.800000pt;}
.y41{bottom:641.466667pt;}
.y69{bottom:642.800000pt;}
.y18{bottom:661.600000pt;}
.y94{bottom:662.266667pt;}
.y40{bottom:662.933333pt;}
.y17{bottom:683.066667pt;}
.y93{bottom:683.733333pt;}
.y3f{bottom:684.400000pt;}
.y68{bottom:685.066667pt;}
.y15{bottom:704.533333pt;}
.y92{bottom:705.200000pt;}
.y86{bottom:705.866667pt;}
.y67{bottom:706.533333pt;}
.y14{bottom:726.000000pt;}
.y3e{bottom:726.666667pt;}
.y85{bottom:727.333333pt;}
.y66{bottom:728.000000pt;}
.y13{bottom:747.466667pt;}
.y3d{bottom:748.133333pt;}
.y84{bottom:748.800000pt;}
.y65{bottom:749.466667pt;}
.y12{bottom:768.933333pt;}
.y3c{bottom:769.600000pt;}
.y83{bottom:770.266667pt;}
.y64{bottom:770.933333pt;}
.y11{bottom:790.400000pt;}
.y3b{bottom:791.066667pt;}
.y63{bottom:792.400000pt;}
.y10{bottom:811.866667pt;}
.y3a{bottom:812.533333pt;}
.y60{bottom:813.866667pt;}
.yf{bottom:833.333333pt;}
.y39{bottom:834.000000pt;}
.ye{bottom:854.800000pt;}
.y38{bottom:855.466667pt;}
.y5f{bottom:856.133333pt;}
.yd{bottom:876.266667pt;}
.y35{bottom:876.933333pt;}
.yb{bottom:897.733333pt;}
.y5e{bottom:898.400000pt;}
.y9{bottom:919.200000pt;}
.y5d{bottom:919.866667pt;}
.y7{bottom:940.666667pt;}
.y5a{bottom:941.333333pt;}
.y5{bottom:962.133333pt;}
.y3{bottom:983.600000pt;}
.y1{bottom:1005.066667pt;}
.h2{height:21.466667pt;}
.h6{height:21.533333pt;}
.h7{height:22.200000pt;}
.h3{height:40.110938pt;}
.h4{height:40.136849pt;}
.h5{height:42.266667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:133.200000pt;}
.w3{width:435.066667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x2{left:40.960000pt;}
.x4{left:111.826667pt;}
.x1{left:112.800000pt;}
.x3{left:245.933333pt;}
}




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