
    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_2a986db222110b254c3c830e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980957;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_27adcc585c2dfb82e09bc8fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_4cd2dd081ebe8e540d0c09c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_1abaf7af45f778be538d91b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_559abfaba64675ee495cd572.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_0cdadc564e8294e38d7b3d08.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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:ff7;src:url('chunks/assets/font_04eac67b7d04bb1135709e76.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:ff8;src:url('chunks/assets/font_ff5bedf8ab306bcc293bade0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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);}
.v2{vertical-align:-30.420000px;}
.v4{vertical-align:-24.480000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.420000px;}
.lse{letter-spacing:-8.160000px;}
.ls6{letter-spacing:-3.306000px;}
.ls8{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.423600px;}
.lsd{letter-spacing:-0.305400px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.020160px;}
.ls9{letter-spacing:0.115200px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.731520px;}
.ls1{letter-spacing:0.840000px;}
.lsc{letter-spacing:16.306560px;}
.lsb{letter-spacing:46.558560px;}
.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;}
}
.ws7{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.768000px;}
.ws3{word-spacing:-15.120000px;}
.ws4{word-spacing:-13.680000px;}
.ws1{word-spacing:-13.244880px;}
.ws2{word-spacing:-10.362480px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:8.386560px;}
.ws8{word-spacing:9.826560px;}
._4{margin-left:-5.722560px;}
._b{margin-left:-4.465920px;}
._3{margin-left:-2.949120px;}
._0{margin-left:-1.296000px;}
._1{width:1.032000px;}
._5{width:2.040000px;}
._2{width:3.060000px;}
._6{width:4.428960px;}
._7{width:6.132480px;}
._a{width:8.130240px;}
._f{width:10.247040px;}
._10{width:11.362560px;}
._8{width:12.424320px;}
._9{width:13.719360px;}
._d{width:17.323200px;}
._c{width:18.921600px;}
._e{width:20.217600px;}
.fc5{color:rgb(255,0,0);}
.fc6{color:rgb(14,16,26);}
.fc4{color:rgb(0,176,240);}
.fc1{color:rgb(0,175,239);}
.fc7{color:rgb(13,13,13);}
.fc3{color:rgb(0,173,237);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(126,126,126);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.600000px;}
.y2{bottom:27.720000px;}
.y7{bottom:57.996000px;}
.y6{bottom:77.796000px;}
.y2c{bottom:112.356000px;}
.y52{bottom:113.796000px;}
.y51{bottom:137.232000px;}
.y2b{bottom:138.312000px;}
.y64{bottom:157.755000px;}
.y2a{bottom:164.235000px;}
.y7d{bottom:181.155000px;}
.y63{bottom:183.675000px;}
.y29{bottom:190.155000px;}
.y7c{bottom:207.075000px;}
.y62{bottom:209.595000px;}
.y28{bottom:216.795000px;}
.y7b{bottom:232.995000px;}
.y61{bottom:235.515000px;}
.y27{bottom:244.515000px;}
.y7a{bottom:258.945000px;}
.y60{bottom:261.465000px;}
.y26{bottom:270.465000px;}
.y79{bottom:284.865000px;}
.y5f{bottom:287.385000px;}
.y25{bottom:296.025000px;}
.y78{bottom:310.425000px;}
.y5e{bottom:313.305000px;}
.y24{bottom:321.945000px;}
.y77{bottom:336.345000px;}
.y49{bottom:338.865000px;}
.y23{bottom:347.865000px;}
.y76{bottom:362.265000px;}
.y48{bottom:364.785000px;}
.y22{bottom:373.785000px;}
.y75{bottom:388.230000px;}
.y47{bottom:390.750000px;}
.y21{bottom:399.750000px;}
.y74{bottom:414.150000px;}
.y46{bottom:416.670000px;}
.y20{bottom:425.670000px;}
.y50{bottom:437.550000px;}
.y73{bottom:440.070000px;}
.y45{bottom:442.590000px;}
.y1f{bottom:451.590000px;}
.y4f{bottom:463.110000px;}
.y72{bottom:465.990000px;}
.y44{bottom:468.510000px;}
.y1e{bottom:477.510000px;}
.y4e{bottom:486.150000px;}
.y71{bottom:491.910000px;}
.y43{bottom:494.430000px;}
.y1d{bottom:503.100000px;}
.y70{bottom:517.500000px;}
.y42{bottom:520.380000px;}
.y1c{bottom:529.020000px;}
.y6f{bottom:543.420000px;}
.y41{bottom:545.940000px;}
.y1b{bottom:554.940000px;}
.y6e{bottom:569.340000px;}
.y40{bottom:571.860000px;}
.y1a{bottom:580.860000px;}
.y6d{bottom:595.260000px;}
.y3f{bottom:597.780000px;}
.y19{bottom:606.780000px;}
.y6c{bottom:621.180000px;}
.y3e{bottom:623.700000px;}
.y18{bottom:632.730000px;}
.y6b{bottom:647.130000px;}
.y3d{bottom:649.650000px;}
.y17{bottom:658.650000px;}
.y6a{bottom:673.050000px;}
.y3c{bottom:675.570000px;}
.y16{bottom:685.290000px;}
.y69{bottom:698.610000px;}
.y3b{bottom:701.490000px;}
.y15{bottom:704.370000px;}
.y68{bottom:724.530000px;}
.y3a{bottom:727.410000px;}
.y14{bottom:739.290000px;}
.y67{bottom:750.450000px;}
.y39{bottom:753.015000px;}
.y13{bottom:759.855000px;}
.y66{bottom:777.135000px;}
.y38{bottom:778.935000px;}
.y4d{bottom:782.175000px;}
.y12{bottom:785.775000px;}
.y5d{bottom:804.855000px;}
.y37{bottom:805.575000px;}
.y4c{bottom:808.095000px;}
.y11{bottom:817.455000px;}
.y5c{bottom:830.775000px;}
.y36{bottom:833.295000px;}
.y4b{bottom:834.015000px;}
.y10{bottom:837.255000px;}
.y5b{bottom:856.695000px;}
.y4a{bottom:857.055000px;}
.y35{bottom:859.215000px;}
.yf{bottom:863.175000px;}
.y5a{bottom:882.645000px;}
.y34{bottom:885.165000px;}
.ye{bottom:889.125000px;}
.y59{bottom:908.565000px;}
.y33{bottom:911.085000px;}
.yd{bottom:915.045000px;}
.y58{bottom:934.125000px;}
.y32{bottom:937.005000px;}
.yc{bottom:949.965000px;}
.y57{bottom:960.045000px;}
.y31{bottom:962.925000px;}
.yb{bottom:975.885000px;}
.y56{bottom:985.965000px;}
.y65{bottom:986.685000px;}
.y30{bottom:988.485000px;}
.ya{bottom:997.125000px;}
.y55{bottom:1011.930000px;}
.y2f{bottom:1014.450000px;}
.y9{bottom:1028.490000px;}
.y54{bottom:1037.850000px;}
.y2e{bottom:1040.370000px;}
.y8{bottom:1061.970000px;}
.y53{bottom:1064.490000px;}
.y2d{bottom:1066.290000px;}
.y1{bottom:1089.690000px;}
.y5{bottom:1117.050000px;}
.y4{bottom:1133.280000px;}
.h7{height:38.158594px;}
.ha{height:39.183750px;}
.h1{height:45.396000px;}
.h4{height:50.294531px;}
.h2{height:57.867188px;}
.h9{height:59.328281px;}
.h3{height:59.357813px;}
.h8{height:60.952500px;}
.hc{height:62.163910px;}
.hb{height:66.757500px;}
.h6{height:72.506250px;}
.h5{height:78.367500px;}
.h0{height:1188.000000px;}
.w1{width:440.820000px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x1{left:106.596000px;}
.x3{left:108.035986px;}
.x9{left:135.035986px;}
.x4{left:136.475986px;}
.xa{left:162.074986px;}
.x5{left:307.544986px;}
.x7{left:581.609986px;}
.x6{left:599.609986px;}
.x8{left:603.209986px;}
@media print{
.v2{vertical-align:-27.040000pt;}
.v4{vertical-align:-21.760000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.040000pt;}
.lse{letter-spacing:-7.253333pt;}
.ls6{letter-spacing:-2.938667pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.376533pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.017920pt;}
.ls9{letter-spacing:0.102400pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.650240pt;}
.ls1{letter-spacing:0.746667pt;}
.lsc{letter-spacing:14.494720pt;}
.lsb{letter-spacing:41.385387pt;}
.ws7{word-spacing:-14.448533pt;}
.ws0{word-spacing:-14.016000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws1{word-spacing:-11.773227pt;}
.ws2{word-spacing:-9.211093pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:7.454720pt;}
.ws8{word-spacing:8.734720pt;}
._4{margin-left:-5.086720pt;}
._b{margin-left:-3.969707pt;}
._3{margin-left:-2.621440pt;}
._0{margin-left:-1.152000pt;}
._1{width:0.917333pt;}
._5{width:1.813333pt;}
._2{width:2.720000pt;}
._6{width:3.936853pt;}
._7{width:5.451093pt;}
._a{width:7.226880pt;}
._f{width:9.108480pt;}
._10{width:10.100053pt;}
._8{width:11.043840pt;}
._9{width:12.194987pt;}
._d{width:15.398400pt;}
._c{width:16.819200pt;}
._e{width:17.971200pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.200000pt;}
.y2{bottom:24.640000pt;}
.y7{bottom:51.552000pt;}
.y6{bottom:69.152000pt;}
.y2c{bottom:99.872000pt;}
.y52{bottom:101.152000pt;}
.y51{bottom:121.984000pt;}
.y2b{bottom:122.944000pt;}
.y64{bottom:140.226667pt;}
.y2a{bottom:145.986667pt;}
.y7d{bottom:161.026667pt;}
.y63{bottom:163.266667pt;}
.y29{bottom:169.026667pt;}
.y7c{bottom:184.066667pt;}
.y62{bottom:186.306667pt;}
.y28{bottom:192.706667pt;}
.y7b{bottom:207.106667pt;}
.y61{bottom:209.346667pt;}
.y27{bottom:217.346667pt;}
.y7a{bottom:230.173333pt;}
.y60{bottom:232.413333pt;}
.y26{bottom:240.413333pt;}
.y79{bottom:253.213333pt;}
.y5f{bottom:255.453333pt;}
.y25{bottom:263.133333pt;}
.y78{bottom:275.933333pt;}
.y5e{bottom:278.493333pt;}
.y24{bottom:286.173333pt;}
.y77{bottom:298.973333pt;}
.y49{bottom:301.213333pt;}
.y23{bottom:309.213333pt;}
.y76{bottom:322.013333pt;}
.y48{bottom:324.253333pt;}
.y22{bottom:332.253333pt;}
.y75{bottom:345.093333pt;}
.y47{bottom:347.333333pt;}
.y21{bottom:355.333333pt;}
.y74{bottom:368.133333pt;}
.y46{bottom:370.373333pt;}
.y20{bottom:378.373333pt;}
.y50{bottom:388.933333pt;}
.y73{bottom:391.173333pt;}
.y45{bottom:393.413333pt;}
.y1f{bottom:401.413333pt;}
.y4f{bottom:411.653333pt;}
.y72{bottom:414.213333pt;}
.y44{bottom:416.453333pt;}
.y1e{bottom:424.453333pt;}
.y4e{bottom:432.133333pt;}
.y71{bottom:437.253333pt;}
.y43{bottom:439.493333pt;}
.y1d{bottom:447.200000pt;}
.y70{bottom:460.000000pt;}
.y42{bottom:462.560000pt;}
.y1c{bottom:470.240000pt;}
.y6f{bottom:483.040000pt;}
.y41{bottom:485.280000pt;}
.y1b{bottom:493.280000pt;}
.y6e{bottom:506.080000pt;}
.y40{bottom:508.320000pt;}
.y1a{bottom:516.320000pt;}
.y6d{bottom:529.120000pt;}
.y3f{bottom:531.360000pt;}
.y19{bottom:539.360000pt;}
.y6c{bottom:552.160000pt;}
.y3e{bottom:554.400000pt;}
.y18{bottom:562.426667pt;}
.y6b{bottom:575.226667pt;}
.y3d{bottom:577.466667pt;}
.y17{bottom:585.466667pt;}
.y6a{bottom:598.266667pt;}
.y3c{bottom:600.506667pt;}
.y16{bottom:609.146667pt;}
.y69{bottom:620.986667pt;}
.y3b{bottom:623.546667pt;}
.y15{bottom:626.106667pt;}
.y68{bottom:644.026667pt;}
.y3a{bottom:646.586667pt;}
.y14{bottom:657.146667pt;}
.y67{bottom:667.066667pt;}
.y39{bottom:669.346667pt;}
.y13{bottom:675.426667pt;}
.y66{bottom:690.786667pt;}
.y38{bottom:692.386667pt;}
.y4d{bottom:695.266667pt;}
.y12{bottom:698.466667pt;}
.y5d{bottom:715.426667pt;}
.y37{bottom:716.066667pt;}
.y4c{bottom:718.306667pt;}
.y11{bottom:726.626667pt;}
.y5c{bottom:738.466667pt;}
.y36{bottom:740.706667pt;}
.y4b{bottom:741.346667pt;}
.y10{bottom:744.226667pt;}
.y5b{bottom:761.506667pt;}
.y4a{bottom:761.826667pt;}
.y35{bottom:763.746667pt;}
.yf{bottom:767.266667pt;}
.y5a{bottom:784.573333pt;}
.y34{bottom:786.813333pt;}
.ye{bottom:790.333333pt;}
.y59{bottom:807.613333pt;}
.y33{bottom:809.853333pt;}
.yd{bottom:813.373333pt;}
.y58{bottom:830.333333pt;}
.y32{bottom:832.893333pt;}
.yc{bottom:844.413333pt;}
.y57{bottom:853.373333pt;}
.y31{bottom:855.933333pt;}
.yb{bottom:867.453333pt;}
.y56{bottom:876.413333pt;}
.y65{bottom:877.053333pt;}
.y30{bottom:878.653333pt;}
.ya{bottom:886.333333pt;}
.y55{bottom:899.493333pt;}
.y2f{bottom:901.733333pt;}
.y9{bottom:914.213333pt;}
.y54{bottom:922.533333pt;}
.y2e{bottom:924.773333pt;}
.y8{bottom:943.973333pt;}
.y53{bottom:946.213333pt;}
.y2d{bottom:947.813333pt;}
.y1{bottom:968.613333pt;}
.y5{bottom:992.933333pt;}
.y4{bottom:1007.360000pt;}
.h7{height:33.918750pt;}
.ha{height:34.830000pt;}
.h1{height:40.352000pt;}
.h4{height:44.706250pt;}
.h2{height:51.437500pt;}
.h9{height:52.736250pt;}
.h3{height:52.762500pt;}
.h8{height:54.180000pt;}
.hc{height:55.256809pt;}
.hb{height:59.340000pt;}
.h6{height:64.450000pt;}
.h5{height:69.660000pt;}
.h0{height:1056.000000pt;}
.w1{width:391.840000pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x1{left:94.752000pt;}
.x3{left:96.031988pt;}
.x9{left:120.031988pt;}
.x4{left:121.311988pt;}
.xa{left:144.066655pt;}
.x5{left:273.373321pt;}
.x7{left:516.986655pt;}
.x6{left:532.986655pt;}
.x8{left:536.186655pt;}
}




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