
    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_a0e65451a9557c16a8fc5158.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.739746;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_01ed083500a3ca11ac4c400f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_e637a8ab74be6966846e1878.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-0.816000px;}
.lse{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.384000px;}
.ls13{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.024000px;}
.lsa{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.408000px;}
.ls4{letter-spacing:0.432000px;}
.ls3{letter-spacing:2.784000px;}
.lsb{letter-spacing:6.384000px;}
.lsf{letter-spacing:11.184000px;}
.ls7{letter-spacing:15.984000px;}
.ls1{letter-spacing:18.384000px;}
.ls9{letter-spacing:20.784000px;}
.ls12{letter-spacing:21.984000px;}
.ls2{letter-spacing:24.384000px;}
.ls0{letter-spacing:27.984000px;}
.ls14{letter-spacing:33.984000px;}
.lsd{letter-spacing:42.384000px;}
.ls8{letter-spacing:51.984000px;}
.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:-18.432000px;}
.wsa{word-spacing:-18.408000px;}
.ws4{word-spacing:-18.384000px;}
.ws8{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.976000px;}
.ws1{word-spacing:-17.616000px;}
.ws6{word-spacing:-17.568000px;}
.ws5{word-spacing:-17.184000px;}
.ws7{word-spacing:-16.800000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-4.218000px;}
._1{margin-left:-2.166000px;}
._0{margin-left:-1.158000px;}
._3{width:1.152000px;}
._6{width:2.880000px;}
._a{width:4.032000px;}
._9{width:5.190000px;}
._13{width:6.336000px;}
._c{width:7.704000px;}
._b{width:9.000000px;}
._f{width:10.962000px;}
._e{width:12.312000px;}
._16{width:13.392000px;}
._12{width:14.472000px;}
._11{width:15.840000px;}
._14{width:16.992000px;}
._15{width:19.404000px;}
._7{width:20.880000px;}
._8{width:21.966000px;}
._4{width:23.760000px;}
._5{width:24.870000px;}
._10{width:26.682000px;}
._d{width:27.762000px;}
._1f{width:30.960000px;}
._20{width:32.190000px;}
._1b{width:33.990000px;}
._1a{width:35.640000px;}
._1d{width:37.734000px;}
._1c{width:38.814000px;}
._17{width:40.608000px;}
._18{width:41.622000px;}
._19{width:46.686000px;}
._22{width:49.584000px;}
._23{width:50.754000px;}
._1e{width:77.184000px;}
._21{width:85.584000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:117.037500px;}
.y61{bottom:127.237500px;}
.y5d{bottom:127.537500px;}
.y52{bottom:137.737500px;}
.y3a{bottom:147.937500px;}
.y86{bottom:148.237500px;}
.y5c{bottom:158.130000px;}
.y1f{bottom:158.430000px;}
.y51{bottom:168.630000px;}
.y6e{bottom:168.930000px;}
.y39{bottom:178.875000px;}
.y47{bottom:179.175000px;}
.y1e{bottom:189.375000px;}
.y6d{bottom:199.575000px;}
.y50{bottom:199.875000px;}
.y38{bottom:210.075000px;}
.y8c{bottom:220.275000px;}
.y1d{bottom:220.575000px;}
.y4f{bottom:230.775000px;}
.y37{bottom:241.275000px;}
.y1c{bottom:251.475000px;}
.y4e{bottom:261.675000px;}
.y8b{bottom:261.975000px;}
.y46{bottom:272.175000px;}
.y7b{bottom:282.375000px;}
.y1b{bottom:282.675000px;}
.y8a{bottom:292.575000px;}
.y36{bottom:292.875000px;}
.y4d{bottom:293.175000px;}
.y45{bottom:303.075000px;}
.y5b{bottom:303.375000px;}
.y1a{bottom:313.575000px;}
.y84{bottom:313.875000px;}
.y35{bottom:324.075000px;}
.y44{bottom:334.275000px;}
.y19{bottom:344.775000px;}
.y34{bottom:355.020000px;}
.y85{bottom:355.320000px;}
.y4c{bottom:365.520000px;}
.y18{bottom:375.720000px;}
.y43{bottom:376.020000px;}
.y33{bottom:386.220000px;}
.y4b{bottom:396.420000px;}
.y17{bottom:406.920000px;}
.y32{bottom:416.820000px;}
.y75{bottom:417.120000px;}
.y80{bottom:427.320000px;}
.y42{bottom:427.620000px;}
.y16{bottom:437.505000px;}
.y67{bottom:437.820000px;}
.y74{bottom:448.005000px;}
.y31{bottom:448.320000px;}
.y4a{bottom:458.505000px;}
.y66{bottom:468.705000px;}
.y15{bottom:469.005000px;}
.y30{bottom:479.205000px;}
.y73{bottom:479.505000px;}
.y60{bottom:489.420000px;}
.y49{bottom:489.705000px;}
.y14{bottom:499.905000px;}
.y65{bottom:510.405000px;}
.y5a{bottom:520.650000px;}
.y2f{bottom:520.950000px;}
.y7f{bottom:530.850000px;}
.y41{bottom:531.150000px;}
.y13{bottom:541.350000px;}
.y97{bottom:541.650000px;}
.y2e{bottom:551.850000px;}
.y40{bottom:562.050000px;}
.y12{bottom:572.550000px;}
.y59{bottom:582.750000px;}
.y91{bottom:583.050000px;}
.y6c{bottom:592.950000px;}
.y3f{bottom:593.250000px;}
.y11{bottom:603.450000px;}
.y5f{bottom:603.750000px;}
.y2d{bottom:613.950000px;}
.y3e{bottom:624.150000px;}
.y6b{bottom:624.450000px;}
.y10{bottom:634.650000px;}
.y2c{bottom:644.850000px;}
.y48{bottom:655.050000px;}
.y5e{bottom:655.350000px;}
.yf{bottom:665.550000px;}
.y7a{bottom:665.850000px;}
.y2b{bottom:676.050000px;}
.y90{bottom:686.280000px;}
.y89{bottom:696.480000px;}
.ye{bottom:696.795000px;}
.y72{bottom:706.695000px;}
.y2a{bottom:706.995000px;}
.y8f{bottom:717.195000px;}
.y83{bottom:727.395000px;}
.yd{bottom:727.695000px;}
.y71{bottom:727.995000px;}
.y29{bottom:738.195000px;}
.y82{bottom:748.380000px;}
.y64{bottom:758.595000px;}
.yc{bottom:758.880000px;}
.y58{bottom:768.795000px;}
.y28{bottom:769.080000px;}
.y88{bottom:769.380000px;}
.y96{bottom:779.295000px;}
.yb{bottom:789.795000px;}
.y81{bottom:790.080000px;}
.y7e{bottom:799.995000px;}
.y27{bottom:800.295000px;}
.y57{bottom:810.495000px;}
.y95{bottom:810.795000px;}
.y3d{bottom:820.695000px;}
.ya{bottom:820.995000px;}
.y26{bottom:831.195000px;}
.y93{bottom:841.380000px;}
.y79{bottom:841.695000px;}
.y8e{bottom:851.625000px;}
.y9{bottom:851.925000px;}
.y56{bottom:852.225000px;}
.y25{bottom:862.425000px;}
.y78{bottom:872.625000px;}
.y8d{bottom:872.925000px;}
.y8{bottom:883.125000px;}
.y24{bottom:893.325000px;}
.y77{bottom:893.625000px;}
.y87{bottom:903.525000px;}
.y55{bottom:903.825000px;}
.y7{bottom:914.025000px;}
.y92{bottom:914.325000px;}
.y23{bottom:924.525000px;}
.y70{bottom:934.725000px;}
.y94{bottom:944.925000px;}
.y6{bottom:945.225000px;}
.y22{bottom:955.425000px;}
.y6f{bottom:955.725000px;}
.y76{bottom:965.925000px;}
.y54{bottom:976.125000px;}
.y6a{bottom:986.325000px;}
.y5{bottom:986.625000px;}
.y63{bottom:996.825000px;}
.y69{bottom:1007.325000px;}
.y4{bottom:1017.570000px;}
.y53{bottom:1017.870000px;}
.y62{bottom:1028.070000px;}
.y3{bottom:1038.255000px;}
.y21{bottom:1048.455000px;}
.y7d{bottom:1048.755000px;}
.y3c{bottom:1058.955000px;}
.y2{bottom:1079.670000px;}
.y20{bottom:1090.170000px;}
.y68{bottom:1100.370000px;}
.y7c{bottom:1110.570000px;}
.y1{bottom:1121.070000px;}
.h3{height:50.273438px;}
.h2{height:50.800781px;}
.h1{height:52.417969px;}
.h4{height:59.343750px;}
.h0{height:1263.000000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:84.937487px;}
.x3{left:108.037487px;}
.x1{left:135.037487px;}
.x4{left:784.454987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-0.725333pt;}
.lse{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.341333pt;}
.ls13{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.021333pt;}
.lsa{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.362667pt;}
.ls4{letter-spacing:0.384000pt;}
.ls3{letter-spacing:2.474667pt;}
.lsb{letter-spacing:5.674667pt;}
.lsf{letter-spacing:9.941333pt;}
.ls7{letter-spacing:14.208000pt;}
.ls1{letter-spacing:16.341333pt;}
.ls9{letter-spacing:18.474667pt;}
.ls12{letter-spacing:19.541333pt;}
.ls2{letter-spacing:21.674667pt;}
.ls0{letter-spacing:24.874667pt;}
.ls14{letter-spacing:30.208000pt;}
.lsd{letter-spacing:37.674667pt;}
.ls8{letter-spacing:46.208000pt;}
.ws2{word-spacing:-16.384000pt;}
.wsa{word-spacing:-16.362667pt;}
.ws4{word-spacing:-16.341333pt;}
.ws8{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.978667pt;}
.ws1{word-spacing:-15.658667pt;}
.ws6{word-spacing:-15.616000pt;}
.ws5{word-spacing:-15.274667pt;}
.ws7{word-spacing:-14.933333pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-3.749333pt;}
._1{margin-left:-1.925333pt;}
._0{margin-left:-1.029333pt;}
._3{width:1.024000pt;}
._6{width:2.560000pt;}
._a{width:3.584000pt;}
._9{width:4.613333pt;}
._13{width:5.632000pt;}
._c{width:6.848000pt;}
._b{width:8.000000pt;}
._f{width:9.744000pt;}
._e{width:10.944000pt;}
._16{width:11.904000pt;}
._12{width:12.864000pt;}
._11{width:14.080000pt;}
._14{width:15.104000pt;}
._15{width:17.248000pt;}
._7{width:18.560000pt;}
._8{width:19.525333pt;}
._4{width:21.120000pt;}
._5{width:22.106667pt;}
._10{width:23.717333pt;}
._d{width:24.677333pt;}
._1f{width:27.520000pt;}
._20{width:28.613333pt;}
._1b{width:30.213333pt;}
._1a{width:31.680000pt;}
._1d{width:33.541333pt;}
._1c{width:34.501333pt;}
._17{width:36.096000pt;}
._18{width:36.997333pt;}
._19{width:41.498667pt;}
._22{width:44.074667pt;}
._23{width:45.114667pt;}
._1e{width:68.608000pt;}
._21{width:76.074667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:104.033333pt;}
.y61{bottom:113.100000pt;}
.y5d{bottom:113.366667pt;}
.y52{bottom:122.433333pt;}
.y3a{bottom:131.500000pt;}
.y86{bottom:131.766667pt;}
.y5c{bottom:140.560000pt;}
.y1f{bottom:140.826667pt;}
.y51{bottom:149.893333pt;}
.y6e{bottom:150.160000pt;}
.y39{bottom:159.000000pt;}
.y47{bottom:159.266667pt;}
.y1e{bottom:168.333333pt;}
.y6d{bottom:177.400000pt;}
.y50{bottom:177.666667pt;}
.y38{bottom:186.733333pt;}
.y8c{bottom:195.800000pt;}
.y1d{bottom:196.066667pt;}
.y4f{bottom:205.133333pt;}
.y37{bottom:214.466667pt;}
.y1c{bottom:223.533333pt;}
.y4e{bottom:232.600000pt;}
.y8b{bottom:232.866667pt;}
.y46{bottom:241.933333pt;}
.y7b{bottom:251.000000pt;}
.y1b{bottom:251.266667pt;}
.y8a{bottom:260.066667pt;}
.y36{bottom:260.333333pt;}
.y4d{bottom:260.600000pt;}
.y45{bottom:269.400000pt;}
.y5b{bottom:269.666667pt;}
.y1a{bottom:278.733333pt;}
.y84{bottom:279.000000pt;}
.y35{bottom:288.066667pt;}
.y44{bottom:297.133333pt;}
.y19{bottom:306.466667pt;}
.y34{bottom:315.573333pt;}
.y85{bottom:315.840000pt;}
.y4c{bottom:324.906667pt;}
.y18{bottom:333.973333pt;}
.y43{bottom:334.240000pt;}
.y33{bottom:343.306667pt;}
.y4b{bottom:352.373333pt;}
.y17{bottom:361.706667pt;}
.y32{bottom:370.506667pt;}
.y75{bottom:370.773333pt;}
.y80{bottom:379.840000pt;}
.y42{bottom:380.106667pt;}
.y16{bottom:388.893333pt;}
.y67{bottom:389.173333pt;}
.y74{bottom:398.226667pt;}
.y31{bottom:398.506667pt;}
.y4a{bottom:407.560000pt;}
.y66{bottom:416.626667pt;}
.y15{bottom:416.893333pt;}
.y30{bottom:425.960000pt;}
.y73{bottom:426.226667pt;}
.y60{bottom:435.040000pt;}
.y49{bottom:435.293333pt;}
.y14{bottom:444.360000pt;}
.y65{bottom:453.693333pt;}
.y5a{bottom:462.800000pt;}
.y2f{bottom:463.066667pt;}
.y7f{bottom:471.866667pt;}
.y41{bottom:472.133333pt;}
.y13{bottom:481.200000pt;}
.y97{bottom:481.466667pt;}
.y2e{bottom:490.533333pt;}
.y40{bottom:499.600000pt;}
.y12{bottom:508.933333pt;}
.y59{bottom:518.000000pt;}
.y91{bottom:518.266667pt;}
.y6c{bottom:527.066667pt;}
.y3f{bottom:527.333333pt;}
.y11{bottom:536.400000pt;}
.y5f{bottom:536.666667pt;}
.y2d{bottom:545.733333pt;}
.y3e{bottom:554.800000pt;}
.y6b{bottom:555.066667pt;}
.y10{bottom:564.133333pt;}
.y2c{bottom:573.200000pt;}
.y48{bottom:582.266667pt;}
.y5e{bottom:582.533333pt;}
.yf{bottom:591.600000pt;}
.y7a{bottom:591.866667pt;}
.y2b{bottom:600.933333pt;}
.y90{bottom:610.026667pt;}
.y89{bottom:619.093333pt;}
.ye{bottom:619.373333pt;}
.y72{bottom:628.173333pt;}
.y2a{bottom:628.440000pt;}
.y8f{bottom:637.506667pt;}
.y83{bottom:646.573333pt;}
.yd{bottom:646.840000pt;}
.y71{bottom:647.106667pt;}
.y29{bottom:656.173333pt;}
.y82{bottom:665.226667pt;}
.y64{bottom:674.306667pt;}
.yc{bottom:674.560000pt;}
.y58{bottom:683.373333pt;}
.y28{bottom:683.626667pt;}
.y88{bottom:683.893333pt;}
.y96{bottom:692.706667pt;}
.yb{bottom:702.040000pt;}
.y81{bottom:702.293333pt;}
.y7e{bottom:711.106667pt;}
.y27{bottom:711.373333pt;}
.y57{bottom:720.440000pt;}
.y95{bottom:720.706667pt;}
.y3d{bottom:729.506667pt;}
.ya{bottom:729.773333pt;}
.y26{bottom:738.840000pt;}
.y93{bottom:747.893333pt;}
.y79{bottom:748.173333pt;}
.y8e{bottom:757.000000pt;}
.y9{bottom:757.266667pt;}
.y56{bottom:757.533333pt;}
.y25{bottom:766.600000pt;}
.y78{bottom:775.666667pt;}
.y8d{bottom:775.933333pt;}
.y8{bottom:785.000000pt;}
.y24{bottom:794.066667pt;}
.y77{bottom:794.333333pt;}
.y87{bottom:803.133333pt;}
.y55{bottom:803.400000pt;}
.y7{bottom:812.466667pt;}
.y92{bottom:812.733333pt;}
.y23{bottom:821.800000pt;}
.y70{bottom:830.866667pt;}
.y94{bottom:839.933333pt;}
.y6{bottom:840.200000pt;}
.y22{bottom:849.266667pt;}
.y6f{bottom:849.533333pt;}
.y76{bottom:858.600000pt;}
.y54{bottom:867.666667pt;}
.y6a{bottom:876.733333pt;}
.y5{bottom:877.000000pt;}
.y63{bottom:886.066667pt;}
.y69{bottom:895.400000pt;}
.y4{bottom:904.506667pt;}
.y53{bottom:904.773333pt;}
.y62{bottom:913.840000pt;}
.y3{bottom:922.893333pt;}
.y21{bottom:931.960000pt;}
.y7d{bottom:932.226667pt;}
.y3c{bottom:941.293333pt;}
.y2{bottom:959.706667pt;}
.y20{bottom:969.040000pt;}
.y68{bottom:978.106667pt;}
.y7c{bottom:987.173333pt;}
.y1{bottom:996.506667pt;}
.h3{height:44.687500pt;}
.h2{height:45.156250pt;}
.h1{height:46.593750pt;}
.h4{height:52.750000pt;}
.h0{height:1122.666667pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.499988pt;}
.x3{left:96.033321pt;}
.x1{left:120.033321pt;}
.x4{left:697.293321pt;}
}




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