
    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_8ca6eab3b618ec53f4004483.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_f359718658343b7603f73dee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_eb55ae5703652864d60e827f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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);}
.v2{vertical-align:-25.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.042000px;}
.ls6{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.642000px;}
.ls7{letter-spacing:0.714000px;}
.ls8{letter-spacing:0.972000px;}
.ls0{letter-spacing:2.700000px;}
.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;}
}
.ws2{word-spacing:-16.500000px;}
.ws9{word-spacing:-16.002000px;}
.ws8{word-spacing:-15.750000px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.950000px;}
.ws0{word-spacing:-10.500000px;}
.ws7{word-spacing:-10.350000px;}
.ws4{word-spacing:-9.600000px;}
.ws5{word-spacing:-8.850000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-3.204000px;}
._0{margin-left:-1.764000px;}
._4{width:1.008000px;}
._5{width:2.490000px;}
._6{width:3.498000px;}
._8{width:5.112000px;}
._c{width:6.150000px;}
._7{width:7.158000px;}
._a{width:8.502000px;}
._9{width:9.702000px;}
._10{width:11.118000px;}
._f{width:12.741000px;}
._e{width:13.848000px;}
._b{width:15.405600px;}
._11{width:17.277600px;}
._2{width:308.166000px;}
._1{width:436.302000px;}
._3{width:819.690000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.400000px;}
.fs4{font-size:38.400000px;}
.fs8{font-size:41.400000px;}
.fs0{font-size:42.000000px;}
.fs3{font-size:43.800000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:199.650000px;}
.y61{bottom:226.350000px;}
.y4e{bottom:229.500000px;}
.y25{bottom:229.800000px;}
.y89{bottom:234.300000px;}
.y60{bottom:241.350000px;}
.y9e{bottom:247.800000px;}
.y4d{bottom:249.300000px;}
.y24{bottom:249.600000px;}
.y88{bottom:254.100000px;}
.y5f{bottom:256.350000px;}
.y9d{bottom:259.350000px;}
.y4c{bottom:269.100000px;}
.y23{bottom:269.400000px;}
.y97{bottom:271.350000px;}
.y87{bottom:273.900000px;}
.y9c{bottom:274.350000px;}
.y5e{bottom:277.800000px;}
.y96{bottom:286.350000px;}
.y4b{bottom:288.900000px;}
.y22{bottom:289.200000px;}
.y86{bottom:293.550000px;}
.y9b{bottom:295.800000px;}
.y95{bottom:301.350000px;}
.y4a{bottom:308.850000px;}
.y21{bottom:309.000000px;}
.y5d{bottom:311.100000px;}
.y85{bottom:312.750000px;}
.y94{bottom:316.350000px;}
.y20{bottom:328.800000px;}
.y5c{bottom:330.900000px;}
.y93{bottom:331.350000px;}
.y84{bottom:331.950000px;}
.y9a{bottom:333.750000px;}
.y92{bottom:346.350000px;}
.y1f{bottom:348.600000px;}
.y49{bottom:348.750000px;}
.y5b{bottom:350.700000px;}
.y83{bottom:351.150000px;}
.y99{bottom:352.500000px;}
.y91{bottom:361.350000px;}
.y1e{bottom:368.400000px;}
.y48{bottom:368.700000px;}
.y82{bottom:370.350000px;}
.y5a{bottom:370.500000px;}
.y98{bottom:371.250000px;}
.y90{bottom:376.350000px;}
.y1d{bottom:388.200000px;}
.y47{bottom:388.650000px;}
.y81{bottom:389.550000px;}
.y59{bottom:390.300000px;}
.y8f{bottom:391.350000px;}
.y8e{bottom:406.350000px;}
.y1c{bottom:408.000000px;}
.y46{bottom:408.600000px;}
.y80{bottom:408.750000px;}
.y58{bottom:410.100000px;}
.y8d{bottom:421.350000px;}
.y1b{bottom:427.800000px;}
.y7f{bottom:427.950000px;}
.y45{bottom:428.550000px;}
.y57{bottom:429.900000px;}
.y8c{bottom:436.350000px;}
.y7e{bottom:447.150000px;}
.y1a{bottom:447.600000px;}
.y44{bottom:448.500000px;}
.y56{bottom:449.700000px;}
.y8b{bottom:451.350000px;}
.y7d{bottom:466.350000px;}
.y19{bottom:467.400000px;}
.y43{bottom:468.450000px;}
.y55{bottom:469.500000px;}
.y7c{bottom:485.550000px;}
.y18{bottom:487.200000px;}
.y8a{bottom:487.800000px;}
.y42{bottom:488.400000px;}
.y54{bottom:489.300000px;}
.y7b{bottom:504.750000px;}
.y17{bottom:507.000000px;}
.y41{bottom:508.350000px;}
.y53{bottom:509.100000px;}
.y7a{bottom:523.950000px;}
.y16{bottom:526.800000px;}
.y40{bottom:528.300000px;}
.y52{bottom:528.900000px;}
.y79{bottom:543.150000px;}
.y15{bottom:546.600000px;}
.y3f{bottom:548.250000px;}
.y51{bottom:548.700000px;}
.y78{bottom:562.350000px;}
.y14{bottom:566.400000px;}
.y3e{bottom:568.200000px;}
.y50{bottom:568.500000px;}
.y77{bottom:581.550000px;}
.y13{bottom:586.200000px;}
.y3d{bottom:588.150000px;}
.y4f{bottom:588.300000px;}
.y76{bottom:600.750000px;}
.y12{bottom:606.000000px;}
.y3c{bottom:608.100000px;}
.y75{bottom:619.950000px;}
.y11{bottom:625.800000px;}
.y3b{bottom:627.900000px;}
.y74{bottom:639.150000px;}
.y10{bottom:645.600000px;}
.y3a{bottom:647.700000px;}
.yb3{bottom:649.650000px;}
.y73{bottom:658.350000px;}
.yf{bottom:665.400000px;}
.y39{bottom:667.500000px;}
.yb2{bottom:668.400000px;}
.y72{bottom:677.550000px;}
.ye{bottom:685.200000px;}
.yb1{bottom:687.150000px;}
.y38{bottom:687.300000px;}
.y71{bottom:696.750000px;}
.yd{bottom:705.000000px;}
.yb0{bottom:705.900000px;}
.y37{bottom:707.100000px;}
.y70{bottom:715.950000px;}
.yaf{bottom:724.650000px;}
.yc{bottom:724.800000px;}
.y36{bottom:726.900000px;}
.y6f{bottom:735.150000px;}
.yae{bottom:743.400000px;}
.yb{bottom:744.600000px;}
.y35{bottom:746.700000px;}
.y6e{bottom:754.350000px;}
.yad{bottom:762.150000px;}
.ya{bottom:764.400000px;}
.y34{bottom:766.500000px;}
.y6d{bottom:773.550000px;}
.yac{bottom:780.900000px;}
.y9{bottom:784.200000px;}
.y33{bottom:786.300000px;}
.y6c{bottom:792.750000px;}
.yab{bottom:799.650000px;}
.y8{bottom:804.000000px;}
.y32{bottom:806.100000px;}
.y6b{bottom:811.950000px;}
.yaa{bottom:818.400000px;}
.y7{bottom:823.800000px;}
.y31{bottom:825.900000px;}
.y6a{bottom:831.150000px;}
.ya9{bottom:837.150000px;}
.y6{bottom:843.600000px;}
.y30{bottom:845.700000px;}
.y69{bottom:850.350000px;}
.ya8{bottom:855.900000px;}
.y2f{bottom:865.500000px;}
.y68{bottom:869.550000px;}
.ya7{bottom:874.650000px;}
.y2e{bottom:885.300000px;}
.y67{bottom:888.750000px;}
.ya6{bottom:893.400000px;}
.y2d{bottom:905.100000px;}
.y5{bottom:905.550000px;}
.y66{bottom:907.950000px;}
.ya5{bottom:912.150000px;}
.y2c{bottom:924.900000px;}
.y65{bottom:927.150000px;}
.ya4{bottom:930.900000px;}
.y2b{bottom:944.700000px;}
.y64{bottom:946.350000px;}
.ya3{bottom:949.650000px;}
.y2a{bottom:964.500000px;}
.y63{bottom:965.550000px;}
.ya2{bottom:968.400000px;}
.y29{bottom:984.300000px;}
.y62{bottom:984.750000px;}
.ya1{bottom:987.150000px;}
.y4{bottom:990.000000px;}
.y3{bottom:1002.450000px;}
.y28{bottom:1004.100000px;}
.ya0{bottom:1005.900000px;}
.y2{bottom:1014.900000px;}
.y27{bottom:1023.900000px;}
.y9f{bottom:1024.650000px;}
.y1{bottom:1027.350000px;}
.h6{height:33.693750px;}
.h1{height:37.303711px;}
.h7{height:47.381836px;}
.ha{height:55.278809px;}
.h9{height:55.432617px;}
.h3{height:57.911133px;}
.h4{height:58.072266px;}
.h8{height:58.620117px;}
.h5{height:58.893750px;}
.h2{height:69.278320px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:178.800000px;}
.x3{left:194.100000px;}
.x6{left:200.100000px;}
.x5{left:207.000000px;}
.x1{left:238.650000px;}
.x2{left:248.100000px;}
.x4{left:282.450000px;}
.xa{left:413.400000px;}
.x9{left:652.500000px;}
.x8{left:697.950000px;}
@media print{
.v2{vertical-align:-22.933333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.400000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.037333pt;}
.ls6{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.570667pt;}
.ls7{letter-spacing:0.634667pt;}
.ls8{letter-spacing:0.864000pt;}
.ls0{letter-spacing:2.400000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws9{word-spacing:-14.224000pt;}
.ws8{word-spacing:-14.000000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.733333pt;}
.ws0{word-spacing:-9.333333pt;}
.ws7{word-spacing:-9.200000pt;}
.ws4{word-spacing:-8.533333pt;}
.ws5{word-spacing:-7.866667pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-2.848000pt;}
._0{margin-left:-1.568000pt;}
._4{width:0.896000pt;}
._5{width:2.213333pt;}
._6{width:3.109333pt;}
._8{width:4.544000pt;}
._c{width:5.466667pt;}
._7{width:6.362667pt;}
._a{width:7.557333pt;}
._9{width:8.624000pt;}
._10{width:9.882667pt;}
._f{width:11.325333pt;}
._e{width:12.309333pt;}
._b{width:13.693867pt;}
._11{width:15.357867pt;}
._2{width:273.925333pt;}
._1{width:387.824000pt;}
._3{width:728.613333pt;}
.fs6{font-size:31.466667pt;}
.fs4{font-size:34.133333pt;}
.fs8{font-size:36.800000pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:38.933333pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:177.466667pt;}
.y61{bottom:201.200000pt;}
.y4e{bottom:204.000000pt;}
.y25{bottom:204.266667pt;}
.y89{bottom:208.266667pt;}
.y60{bottom:214.533333pt;}
.y9e{bottom:220.266667pt;}
.y4d{bottom:221.600000pt;}
.y24{bottom:221.866667pt;}
.y88{bottom:225.866667pt;}
.y5f{bottom:227.866667pt;}
.y9d{bottom:230.533333pt;}
.y4c{bottom:239.200000pt;}
.y23{bottom:239.466667pt;}
.y97{bottom:241.200000pt;}
.y87{bottom:243.466667pt;}
.y9c{bottom:243.866667pt;}
.y5e{bottom:246.933333pt;}
.y96{bottom:254.533333pt;}
.y4b{bottom:256.800000pt;}
.y22{bottom:257.066667pt;}
.y86{bottom:260.933333pt;}
.y9b{bottom:262.933333pt;}
.y95{bottom:267.866667pt;}
.y4a{bottom:274.533333pt;}
.y21{bottom:274.666667pt;}
.y5d{bottom:276.533333pt;}
.y85{bottom:278.000000pt;}
.y94{bottom:281.200000pt;}
.y20{bottom:292.266667pt;}
.y5c{bottom:294.133333pt;}
.y93{bottom:294.533333pt;}
.y84{bottom:295.066667pt;}
.y9a{bottom:296.666667pt;}
.y92{bottom:307.866667pt;}
.y1f{bottom:309.866667pt;}
.y49{bottom:310.000000pt;}
.y5b{bottom:311.733333pt;}
.y83{bottom:312.133333pt;}
.y99{bottom:313.333333pt;}
.y91{bottom:321.200000pt;}
.y1e{bottom:327.466667pt;}
.y48{bottom:327.733333pt;}
.y82{bottom:329.200000pt;}
.y5a{bottom:329.333333pt;}
.y98{bottom:330.000000pt;}
.y90{bottom:334.533333pt;}
.y1d{bottom:345.066667pt;}
.y47{bottom:345.466667pt;}
.y81{bottom:346.266667pt;}
.y59{bottom:346.933333pt;}
.y8f{bottom:347.866667pt;}
.y8e{bottom:361.200000pt;}
.y1c{bottom:362.666667pt;}
.y46{bottom:363.200000pt;}
.y80{bottom:363.333333pt;}
.y58{bottom:364.533333pt;}
.y8d{bottom:374.533333pt;}
.y1b{bottom:380.266667pt;}
.y7f{bottom:380.400000pt;}
.y45{bottom:380.933333pt;}
.y57{bottom:382.133333pt;}
.y8c{bottom:387.866667pt;}
.y7e{bottom:397.466667pt;}
.y1a{bottom:397.866667pt;}
.y44{bottom:398.666667pt;}
.y56{bottom:399.733333pt;}
.y8b{bottom:401.200000pt;}
.y7d{bottom:414.533333pt;}
.y19{bottom:415.466667pt;}
.y43{bottom:416.400000pt;}
.y55{bottom:417.333333pt;}
.y7c{bottom:431.600000pt;}
.y18{bottom:433.066667pt;}
.y8a{bottom:433.600000pt;}
.y42{bottom:434.133333pt;}
.y54{bottom:434.933333pt;}
.y7b{bottom:448.666667pt;}
.y17{bottom:450.666667pt;}
.y41{bottom:451.866667pt;}
.y53{bottom:452.533333pt;}
.y7a{bottom:465.733333pt;}
.y16{bottom:468.266667pt;}
.y40{bottom:469.600000pt;}
.y52{bottom:470.133333pt;}
.y79{bottom:482.800000pt;}
.y15{bottom:485.866667pt;}
.y3f{bottom:487.333333pt;}
.y51{bottom:487.733333pt;}
.y78{bottom:499.866667pt;}
.y14{bottom:503.466667pt;}
.y3e{bottom:505.066667pt;}
.y50{bottom:505.333333pt;}
.y77{bottom:516.933333pt;}
.y13{bottom:521.066667pt;}
.y3d{bottom:522.800000pt;}
.y4f{bottom:522.933333pt;}
.y76{bottom:534.000000pt;}
.y12{bottom:538.666667pt;}
.y3c{bottom:540.533333pt;}
.y75{bottom:551.066667pt;}
.y11{bottom:556.266667pt;}
.y3b{bottom:558.133333pt;}
.y74{bottom:568.133333pt;}
.y10{bottom:573.866667pt;}
.y3a{bottom:575.733333pt;}
.yb3{bottom:577.466667pt;}
.y73{bottom:585.200000pt;}
.yf{bottom:591.466667pt;}
.y39{bottom:593.333333pt;}
.yb2{bottom:594.133333pt;}
.y72{bottom:602.266667pt;}
.ye{bottom:609.066667pt;}
.yb1{bottom:610.800000pt;}
.y38{bottom:610.933333pt;}
.y71{bottom:619.333333pt;}
.yd{bottom:626.666667pt;}
.yb0{bottom:627.466667pt;}
.y37{bottom:628.533333pt;}
.y70{bottom:636.400000pt;}
.yaf{bottom:644.133333pt;}
.yc{bottom:644.266667pt;}
.y36{bottom:646.133333pt;}
.y6f{bottom:653.466667pt;}
.yae{bottom:660.800000pt;}
.yb{bottom:661.866667pt;}
.y35{bottom:663.733333pt;}
.y6e{bottom:670.533333pt;}
.yad{bottom:677.466667pt;}
.ya{bottom:679.466667pt;}
.y34{bottom:681.333333pt;}
.y6d{bottom:687.600000pt;}
.yac{bottom:694.133333pt;}
.y9{bottom:697.066667pt;}
.y33{bottom:698.933333pt;}
.y6c{bottom:704.666667pt;}
.yab{bottom:710.800000pt;}
.y8{bottom:714.666667pt;}
.y32{bottom:716.533333pt;}
.y6b{bottom:721.733333pt;}
.yaa{bottom:727.466667pt;}
.y7{bottom:732.266667pt;}
.y31{bottom:734.133333pt;}
.y6a{bottom:738.800000pt;}
.ya9{bottom:744.133333pt;}
.y6{bottom:749.866667pt;}
.y30{bottom:751.733333pt;}
.y69{bottom:755.866667pt;}
.ya8{bottom:760.800000pt;}
.y2f{bottom:769.333333pt;}
.y68{bottom:772.933333pt;}
.ya7{bottom:777.466667pt;}
.y2e{bottom:786.933333pt;}
.y67{bottom:790.000000pt;}
.ya6{bottom:794.133333pt;}
.y2d{bottom:804.533333pt;}
.y5{bottom:804.933333pt;}
.y66{bottom:807.066667pt;}
.ya5{bottom:810.800000pt;}
.y2c{bottom:822.133333pt;}
.y65{bottom:824.133333pt;}
.ya4{bottom:827.466667pt;}
.y2b{bottom:839.733333pt;}
.y64{bottom:841.200000pt;}
.ya3{bottom:844.133333pt;}
.y2a{bottom:857.333333pt;}
.y63{bottom:858.266667pt;}
.ya2{bottom:860.800000pt;}
.y29{bottom:874.933333pt;}
.y62{bottom:875.333333pt;}
.ya1{bottom:877.466667pt;}
.y4{bottom:880.000000pt;}
.y3{bottom:891.066667pt;}
.y28{bottom:892.533333pt;}
.ya0{bottom:894.133333pt;}
.y2{bottom:902.133333pt;}
.y27{bottom:910.133333pt;}
.y9f{bottom:910.800000pt;}
.y1{bottom:913.200000pt;}
.h6{height:29.950000pt;}
.h1{height:33.158854pt;}
.h7{height:42.117188pt;}
.ha{height:49.136719pt;}
.h9{height:49.273438pt;}
.h3{height:51.476562pt;}
.h4{height:51.619792pt;}
.h8{height:52.106771pt;}
.h5{height:52.350000pt;}
.h2{height:61.580729pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:158.933333pt;}
.x3{left:172.533333pt;}
.x6{left:177.866667pt;}
.x5{left:184.000000pt;}
.x1{left:212.133333pt;}
.x2{left:220.533333pt;}
.x4{left:251.066667pt;}
.xa{left:367.466667pt;}
.x9{left:580.000000pt;}
.x8{left:620.400000pt;}
}




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