
    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_f54934c32b9bf86c0d9852a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.386719;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_f358004a8fd7501ef49abe04.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_9b852345d80b5fb1abb5aaf2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.317383;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_9295d59781077c8cb6fe776c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.197754;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:ff5;src:url('chunks/assets/font_c8c4a6f3a61499b2b0493028.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083984;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:ff6;src:url('chunks/assets/font_7b910b76ab1c44cada1b3f5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.197754;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);}
.v1{vertical-align:-82.860000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.lsa{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.840000px;}
.lsd{letter-spacing:6.768000px;}
.ls4{letter-spacing:8.448000px;}
.ls0{letter-spacing:363.840000px;}
.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:-32.292000px;}
.ws4{word-spacing:-20.832000px;}
.ws6{word-spacing:-18.780000px;}
.ws5{word-spacing:-18.540000px;}
.ws1{word-spacing:-17.940000px;}
.ws8{word-spacing:-17.580000px;}
.ws7{word-spacing:-17.340000px;}
.wsa{word-spacing:-14.784000px;}
.ws3{word-spacing:-14.352000px;}
.ws0{word-spacing:-13.872000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-1.260000px;}
._1{width:1.560000px;}
._7{width:2.646000px;}
._8{width:4.140000px;}
._3{width:5.142000px;}
._4{width:6.180000px;}
._5{width:8.226000px;}
._6{width:9.732000px;}
._c{width:12.240000px;}
._e{width:39.000000px;}
._b{width:94.290000px;}
._9{width:141.234000px;}
._d{width:194.460000px;}
._a{width:197.988000px;}
._0{width:383.040000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:12.000000px;}
.fsb{font-size:18.000000px;}
.fs5{font-size:24.000000px;}
.fs9{font-size:27.600000px;}
.fs8{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.y50{bottom:-0.300000px;}
.y0{bottom:0.000000px;}
.y54{bottom:4.485000px;}
.y56{bottom:5.085000px;}
.y9{bottom:8.370000px;}
.y3{bottom:11.685000px;}
.y53{bottom:24.285000px;}
.y2{bottom:27.885000px;}
.y52{bottom:41.085000px;}
.yc{bottom:57.337500px;}
.y8{bottom:63.285000px;}
.yb{bottom:78.037500px;}
.y7{bottom:82.515000px;}
.y5{bottom:92.715000px;}
.y6{bottom:96.015000px;}
.y41{bottom:116.737500px;}
.y40{bottom:137.737500px;}
.y3f{bottom:158.430000px;}
.y3e{bottom:179.430000px;}
.y3d{bottom:198.975000px;}
.y3c{bottom:210.375000px;}
.y3b{bottom:236.475000px;}
.y3a{bottom:259.575000px;}
.y39{bottom:275.775000px;}
.y38{bottom:295.575000px;}
.y37{bottom:308.775000px;}
.y36{bottom:334.875000px;}
.y35{bottom:357.675000px;}
.y34{bottom:373.905000px;}
.y33{bottom:394.905000px;}
.y32{bottom:415.620000px;}
.y31{bottom:436.620000px;}
.y30{bottom:457.620000px;}
.y2f{bottom:478.320000px;}
.y2e{bottom:499.320000px;}
.y2d{bottom:520.320000px;}
.y2c{bottom:541.050000px;}
.y2b{bottom:562.050000px;}
.y2a{bottom:583.050000px;}
.y51{bottom:592.965000px;}
.y29{bottom:603.750000px;}
.y28{bottom:624.750000px;}
.y27{bottom:643.950000px;}
.y26{bottom:655.650000px;}
.y4f{bottom:660.450000px;}
.y25{bottom:665.850000px;}
.y24{bottom:682.350000px;}
.y23{bottom:696.480000px;}
.y22{bottom:703.380000px;}
.y21{bottom:717.480000px;}
.y20{bottom:724.380000px;}
.y1f{bottom:740.880000px;}
.y1e{bottom:757.695000px;}
.y1d{bottom:774.480000px;}
.y1c{bottom:791.295000px;}
.y1b{bottom:807.795000px;}
.y1a{bottom:823.695000px;}
.y19{bottom:837.195000px;}
.y18{bottom:854.025000px;}
.y17{bottom:870.525000px;}
.y16{bottom:887.325000px;}
.y15{bottom:904.425000px;}
.y4e{bottom:919.125000px;}
.y14{bottom:922.125000px;}
.y13{bottom:935.325000px;}
.y4d{bottom:940.125000px;}
.y12{bottom:956.025000px;}
.y4c{bottom:961.125000px;}
.y11{bottom:968.325000px;}
.y4b{bottom:981.825000px;}
.y10{bottom:991.425000px;}
.y4a{bottom:1002.825000px;}
.yf{bottom:1009.725000px;}
.y49{bottom:1023.855000px;}
.ye{bottom:1043.355000px;}
.y48{bottom:1044.570000px;}
.y47{bottom:1065.570000px;}
.yd{bottom:1071.570000px;}
.ya{bottom:1082.370000px;}
.y46{bottom:1086.570000px;}
.y1{bottom:1098.570000px;}
.y4{bottom:1098.585000px;}
.y55{bottom:1100.985000px;}
.y45{bottom:1107.255000px;}
.y44{bottom:1128.255000px;}
.y43{bottom:1148.955000px;}
.y42{bottom:1172.655000px;}
.h11{height:13.142578px;}
.h15{height:24.870000px;}
.h9{height:26.285156px;}
.hd{height:30.227930px;}
.h10{height:37.195312px;}
.h7{height:39.427734px;}
.hb{height:45.999023px;}
.h6{height:49.593750px;}
.h5{height:50.273438px;}
.he{height:52.570312px;}
.h14{height:53.985000px;}
.h12{height:54.843750px;}
.hf{height:59.141602px;}
.h3{height:65.712891px;}
.hc{height:78.855469px;}
.ha{height:105.140625px;}
.h4{height:108.922500px;}
.h2{height:108.937500px;}
.h8{height:111.585938px;}
.h13{height:478.905000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:33.882000px;}
.w3{width:42.585000px;}
.w2{width:337.920000px;}
.w4{width:367.305000px;}
.w6{width:743.307000px;}
.w5{width:750.225000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x15{left:10.800000px;}
.x3{left:20.100000px;}
.x8{left:22.200000px;}
.x1{left:72.637500px;}
.x13{left:78.337500px;}
.x9{left:80.737500px;}
.x16{left:95.437500px;}
.xc{left:99.037500px;}
.x12{left:122.437500px;}
.x10{left:133.837500px;}
.x2{left:174.637500px;}
.xf{left:251.775000px;}
.x7{left:259.875000px;}
.x11{left:295.905000px;}
.xe{left:345.120000px;}
.x4{left:410.550000px;}
.xd{left:423.450000px;}
.xb{left:446.550000px;}
.x6{left:453.150000px;}
.x14{left:731.917500px;}
.xa{left:794.370000px;}
@media print{
.v1{vertical-align:-73.653333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.746667pt;}
.lsd{letter-spacing:6.016000pt;}
.ls4{letter-spacing:7.509333pt;}
.ls0{letter-spacing:323.413333pt;}
.ws2{word-spacing:-28.704000pt;}
.ws4{word-spacing:-18.517333pt;}
.ws6{word-spacing:-16.693333pt;}
.ws5{word-spacing:-16.480000pt;}
.ws1{word-spacing:-15.946667pt;}
.ws8{word-spacing:-15.626667pt;}
.ws7{word-spacing:-15.413333pt;}
.wsa{word-spacing:-13.141333pt;}
.ws3{word-spacing:-12.757333pt;}
.ws0{word-spacing:-12.330667pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-1.120000pt;}
._1{width:1.386667pt;}
._7{width:2.352000pt;}
._8{width:3.680000pt;}
._3{width:4.570667pt;}
._4{width:5.493333pt;}
._5{width:7.312000pt;}
._6{width:8.650667pt;}
._c{width:10.880000pt;}
._e{width:34.666667pt;}
._b{width:83.813333pt;}
._9{width:125.541333pt;}
._d{width:172.853333pt;}
._a{width:175.989333pt;}
._0{width:340.480000pt;}
.fsc{font-size:10.666667pt;}
.fsb{font-size:16.000000pt;}
.fs5{font-size:21.333333pt;}
.fs9{font-size:24.533333pt;}
.fs8{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.y50{bottom:-0.266667pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:3.986667pt;}
.y56{bottom:4.520000pt;}
.y9{bottom:7.440000pt;}
.y3{bottom:10.386667pt;}
.y53{bottom:21.586667pt;}
.y2{bottom:24.786667pt;}
.y52{bottom:36.520000pt;}
.yc{bottom:50.966667pt;}
.y8{bottom:56.253333pt;}
.yb{bottom:69.366667pt;}
.y7{bottom:73.346667pt;}
.y5{bottom:82.413333pt;}
.y6{bottom:85.346667pt;}
.y41{bottom:103.766667pt;}
.y40{bottom:122.433333pt;}
.y3f{bottom:140.826667pt;}
.y3e{bottom:159.493333pt;}
.y3d{bottom:176.866667pt;}
.y3c{bottom:187.000000pt;}
.y3b{bottom:210.200000pt;}
.y3a{bottom:230.733333pt;}
.y39{bottom:245.133333pt;}
.y38{bottom:262.733333pt;}
.y37{bottom:274.466667pt;}
.y36{bottom:297.666667pt;}
.y35{bottom:317.933333pt;}
.y34{bottom:332.360000pt;}
.y33{bottom:351.026667pt;}
.y32{bottom:369.440000pt;}
.y31{bottom:388.106667pt;}
.y30{bottom:406.773333pt;}
.y2f{bottom:425.173333pt;}
.y2e{bottom:443.840000pt;}
.y2d{bottom:462.506667pt;}
.y2c{bottom:480.933333pt;}
.y2b{bottom:499.600000pt;}
.y2a{bottom:518.266667pt;}
.y51{bottom:527.080000pt;}
.y29{bottom:536.666667pt;}
.y28{bottom:555.333333pt;}
.y27{bottom:572.400000pt;}
.y26{bottom:582.800000pt;}
.y4f{bottom:587.066667pt;}
.y25{bottom:591.866667pt;}
.y24{bottom:606.533333pt;}
.y23{bottom:619.093333pt;}
.y22{bottom:625.226667pt;}
.y21{bottom:637.760000pt;}
.y20{bottom:643.893333pt;}
.y1f{bottom:658.560000pt;}
.y1e{bottom:673.506667pt;}
.y1d{bottom:688.426667pt;}
.y1c{bottom:703.373333pt;}
.y1b{bottom:718.040000pt;}
.y1a{bottom:732.173333pt;}
.y19{bottom:744.173333pt;}
.y18{bottom:759.133333pt;}
.y17{bottom:773.800000pt;}
.y16{bottom:788.733333pt;}
.y15{bottom:803.933333pt;}
.y4e{bottom:817.000000pt;}
.y14{bottom:819.666667pt;}
.y13{bottom:831.400000pt;}
.y4d{bottom:835.666667pt;}
.y12{bottom:849.800000pt;}
.y4c{bottom:854.333333pt;}
.y11{bottom:860.733333pt;}
.y4b{bottom:872.733333pt;}
.y10{bottom:881.266667pt;}
.y4a{bottom:891.400000pt;}
.yf{bottom:897.533333pt;}
.y49{bottom:910.093333pt;}
.ye{bottom:927.426667pt;}
.y48{bottom:928.506667pt;}
.y47{bottom:947.173333pt;}
.yd{bottom:952.506667pt;}
.ya{bottom:962.106667pt;}
.y46{bottom:965.840000pt;}
.y1{bottom:976.506667pt;}
.y4{bottom:976.520000pt;}
.y55{bottom:978.653333pt;}
.y45{bottom:984.226667pt;}
.y44{bottom:1002.893333pt;}
.y43{bottom:1021.293333pt;}
.y42{bottom:1042.360000pt;}
.h11{height:11.682292pt;}
.h15{height:22.106667pt;}
.h9{height:23.364583pt;}
.hd{height:26.869271pt;}
.h10{height:33.062500pt;}
.h7{height:35.046875pt;}
.hb{height:40.888021pt;}
.h6{height:44.083333pt;}
.h5{height:44.687500pt;}
.he{height:46.729167pt;}
.h14{height:47.986667pt;}
.h12{height:48.750000pt;}
.hf{height:52.570312pt;}
.h3{height:58.411458pt;}
.hc{height:70.093750pt;}
.ha{height:93.458333pt;}
.h4{height:96.820000pt;}
.h2{height:96.833333pt;}
.h8{height:99.187500pt;}
.h13{height:425.693333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:30.117333pt;}
.w3{width:37.853333pt;}
.w2{width:300.373333pt;}
.w4{width:326.493333pt;}
.w6{width:660.717333pt;}
.w5{width:666.866667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x15{left:9.600000pt;}
.x3{left:17.866667pt;}
.x8{left:19.733333pt;}
.x1{left:64.566667pt;}
.x13{left:69.633333pt;}
.x9{left:71.766667pt;}
.x16{left:84.833333pt;}
.xc{left:88.033333pt;}
.x12{left:108.833333pt;}
.x10{left:118.966667pt;}
.x2{left:155.233333pt;}
.xf{left:223.800000pt;}
.x7{left:231.000000pt;}
.x11{left:263.026667pt;}
.xe{left:306.773333pt;}
.x4{left:364.933333pt;}
.xd{left:376.400000pt;}
.xb{left:396.933333pt;}
.x6{left:402.800000pt;}
.x14{left:650.593333pt;}
.xa{left:706.106667pt;}
}




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