
    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_8d51e6f2b10f3fed122378a7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.297852;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_e6537d6d733a8dc9c3aa83ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.901855;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_bb896574cd6a2ff504b3f2d1.woff')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_43a985a39835a51c147da10c.woff')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_8a1647e0838565840a52618c.woff')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_b08cd52932abe24ca42bb99a.woff')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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-0.453000px;}
.ls9{letter-spacing:-0.313200px;}
.lsd{letter-spacing:-0.276000px;}
.lsb{letter-spacing:-0.130200px;}
.ls10{letter-spacing:-0.093000px;}
.lsc{letter-spacing:-0.046800px;}
.lse{letter-spacing:-0.043920px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024120px;}
.ls0{letter-spacing:0.046800px;}
.ls5{letter-spacing:0.056880px;}
.lsa{letter-spacing:0.057240px;}
.ls1{letter-spacing:0.083880px;}
.ls4{letter-spacing:0.084000px;}
.ls11{letter-spacing:0.115800px;}
.ls12{letter-spacing:0.124920px;}
.lsf{letter-spacing:0.158400px;}
.ls6{letter-spacing:4.344120px;}
.ls13{letter-spacing:9.820080px;}
.ls3{letter-spacing:11.243880px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-32.292000px;}
.ws2{word-spacing:-25.778880px;}
.ws5{word-spacing:-20.779920px;}
.wsa{word-spacing:-18.134280px;}
.ws4{word-spacing:-18.022680px;}
.ws1{word-spacing:-17.975880px;}
.ws9{word-spacing:-17.931960px;}
.ws3{word-spacing:-17.662680px;}
.ws7{word-spacing:-14.316120px;}
.ws8{word-spacing:-14.269320px;}
.ws6{word-spacing:-14.185920px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-1.022040px;}
._2{width:1.079280px;}
._3{width:2.306760px;}
._c{width:4.028040px;}
._d{width:5.148120px;}
._6{width:8.139600px;}
._10{width:9.485640px;}
._5{width:10.497240px;}
._4{width:12.054240px;}
._f{width:14.188320px;}
._e{width:15.210360px;}
._b{width:21.643200px;}
._a{width:22.785480px;}
._9{width:141.045840px;}
._7{width:165.135960px;}
._8{width:198.203880px;}
._0{width:382.344120px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:11.880000px;}
.fs7{font-size:18.000000px;}
.fs8{font-size:24.120000px;}
.fs6{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fs2{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.y4f{bottom:-0.090000px;}
.y0{bottom:0.000000px;}
.y53{bottom:4.140000px;}
.y55{bottom:5.130000px;}
.y9{bottom:7.830000px;}
.y3{bottom:11.250000px;}
.y52{bottom:24.210000px;}
.y2{bottom:27.720000px;}
.y51{bottom:41.040000px;}
.y8{bottom:42.030000px;}
.yc{bottom:57.240000px;}
.y7{bottom:63.000000px;}
.yb{bottom:77.940000px;}
.y6{bottom:82.080000px;}
.y4{bottom:92.160000px;}
.y5{bottom:95.670000px;}
.y40{bottom:108.450000px;}
.y3f{bottom:129.330000px;}
.y3e{bottom:150.300000px;}
.y3d{bottom:171.180000px;}
.y3c{bottom:192.060000px;}
.y3b{bottom:213.150000px;}
.y3a{bottom:233.940000px;}
.y39{bottom:253.920000px;}
.y38{bottom:267.150000px;}
.y37{bottom:293.250000px;}
.y36{bottom:316.650000px;}
.y35{bottom:334.200000px;}
.y34{bottom:355.350000px;}
.y33{bottom:375.240000px;}
.y32{bottom:388.380000px;}
.y31{bottom:414.570000px;}
.y30{bottom:437.880000px;}
.y2f{bottom:455.520000px;}
.y2e{bottom:476.400000px;}
.y2d{bottom:497.280000px;}
.y50{bottom:515.190000px;}
.y2c{bottom:518.160000px;}
.y2b{bottom:539.310000px;}
.y2a{bottom:560.010000px;}
.y4e{bottom:580.170000px;}
.y29{bottom:580.890000px;}
.y28{bottom:601.950000px;}
.y27{bottom:622.740000px;}
.y26{bottom:643.650000px;}
.y25{bottom:661.020000px;}
.y24{bottom:666.960000px;}
.y23{bottom:678.750000px;}
.y22{bottom:688.830000px;}
.y21{bottom:705.570000px;}
.y20{bottom:720.510000px;}
.y1f{bottom:730.590000px;}
.y1e{bottom:745.620000px;}
.y1d{bottom:755.790000px;}
.y1c{bottom:772.350000px;}
.y1b{bottom:789.180000px;}
.y1a{bottom:805.830000px;}
.y19{bottom:822.660000px;}
.y18{bottom:839.400000px;}
.y17{bottom:856.050000px;}
.y16{bottom:872.790000px;}
.y15{bottom:890.340000px;}
.y14{bottom:909.420000px;}
.y4d{bottom:919.140000px;}
.y13{bottom:922.920000px;}
.y4c{bottom:940.020000px;}
.y12{bottom:944.880000px;}
.y11{bottom:958.020000px;}
.y4b{bottom:960.900000px;}
.y10{bottom:981.420000px;}
.y4a{bottom:981.870000px;}
.yf{bottom:1001.670000px;}
.y49{bottom:1002.750000px;}
.y48{bottom:1023.630000px;}
.ye{bottom:1035.060000px;}
.y47{bottom:1044.510000px;}
.yd{bottom:1065.060000px;}
.y46{bottom:1065.510000px;}
.ya{bottom:1082.340000px;}
.y45{bottom:1086.390000px;}
.y1{bottom:1098.900000px;}
.y54{bottom:1100.880000px;}
.y44{bottom:1107.270000px;}
.y43{bottom:1128.240000px;}
.y42{bottom:1148.760000px;}
.y41{bottom:1172.610000px;}
.he{height:12.019219px;}
.hd{height:24.402656px;}
.h13{height:24.930000px;}
.hc{height:30.230156px;}
.h7{height:36.421875px;}
.h9{height:48.441094px;}
.h6{height:49.469766px;}
.h5{height:50.273438px;}
.h12{height:54.090000px;}
.h10{height:54.953437px;}
.h3{height:60.824531px;}
.hf{height:62.116172px;}
.hb{height:72.843750px;}
.ha{height:97.246406px;}
.h2{height:108.717000px;}
.h4{height:108.720000px;}
.h8{height:111.585938px;}
.h11{height:559.140000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:33.750000px;}
.w3{width:42.570000px;}
.w2{width:337.740000px;}
.w4{width:367.320000px;}
.w5{width:580.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x15{left:10.800000px;}
.x9{left:13.050000px;}
.x3{left:20.340000px;}
.x1{left:72.720000px;}
.xa{left:80.820000px;}
.xd{left:98.820000px;}
.x8{left:103.410000px;}
.x12{left:122.520000px;}
.x10{left:133.950000px;}
.x13{left:151.410000px;}
.x16{left:168.690000px;}
.x2{left:174.630000px;}
.xf{left:252.030000px;}
.x7{left:259.680000px;}
.x11{left:295.770000px;}
.xe{left:345.360000px;}
.x4{left:410.460000px;}
.xc{left:446.550000px;}
.x6{left:453.030000px;}
.x14{left:570.030000px;}
.xb{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.402667pt;}
.ls9{letter-spacing:-0.278400pt;}
.lsd{letter-spacing:-0.245333pt;}
.lsb{letter-spacing:-0.115733pt;}
.ls10{letter-spacing:-0.082667pt;}
.lsc{letter-spacing:-0.041600pt;}
.lse{letter-spacing:-0.039040pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021440pt;}
.ls0{letter-spacing:0.041600pt;}
.ls5{letter-spacing:0.050560pt;}
.lsa{letter-spacing:0.050880pt;}
.ls1{letter-spacing:0.074560pt;}
.ls4{letter-spacing:0.074667pt;}
.ls11{letter-spacing:0.102933pt;}
.ls12{letter-spacing:0.111040pt;}
.lsf{letter-spacing:0.140800pt;}
.ls6{letter-spacing:3.861440pt;}
.ls13{letter-spacing:8.728960pt;}
.ls3{letter-spacing:9.994560pt;}
.ws0{word-spacing:-28.704000pt;}
.ws2{word-spacing:-22.914560pt;}
.ws5{word-spacing:-18.471040pt;}
.wsa{word-spacing:-16.119360pt;}
.ws4{word-spacing:-16.020160pt;}
.ws1{word-spacing:-15.978560pt;}
.ws9{word-spacing:-15.939520pt;}
.ws3{word-spacing:-15.700160pt;}
.ws7{word-spacing:-12.725440pt;}
.ws8{word-spacing:-12.683840pt;}
.ws6{word-spacing:-12.609707pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-0.908480pt;}
._2{width:0.959360pt;}
._3{width:2.050453pt;}
._c{width:3.580480pt;}
._d{width:4.576107pt;}
._6{width:7.235200pt;}
._10{width:8.431680pt;}
._5{width:9.330880pt;}
._4{width:10.714880pt;}
._f{width:12.611840pt;}
._e{width:13.520320pt;}
._b{width:19.238400pt;}
._a{width:20.253760pt;}
._9{width:125.374080pt;}
._7{width:146.787520pt;}
._8{width:176.181227pt;}
._0{width:339.861440pt;}
.fs9{font-size:10.560000pt;}
.fs7{font-size:16.000000pt;}
.fs8{font-size:21.440000pt;}
.fs6{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.y4f{bottom:-0.080000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:3.680000pt;}
.y55{bottom:4.560000pt;}
.y9{bottom:6.960000pt;}
.y3{bottom:10.000000pt;}
.y52{bottom:21.520000pt;}
.y2{bottom:24.640000pt;}
.y51{bottom:36.480000pt;}
.y8{bottom:37.360000pt;}
.yc{bottom:50.880000pt;}
.y7{bottom:56.000000pt;}
.yb{bottom:69.280000pt;}
.y6{bottom:72.960000pt;}
.y4{bottom:81.920000pt;}
.y5{bottom:85.040000pt;}
.y40{bottom:96.400000pt;}
.y3f{bottom:114.960000pt;}
.y3e{bottom:133.600000pt;}
.y3d{bottom:152.160000pt;}
.y3c{bottom:170.720000pt;}
.y3b{bottom:189.466667pt;}
.y3a{bottom:207.946667pt;}
.y39{bottom:225.706667pt;}
.y38{bottom:237.466667pt;}
.y37{bottom:260.666667pt;}
.y36{bottom:281.466667pt;}
.y35{bottom:297.066667pt;}
.y34{bottom:315.866667pt;}
.y33{bottom:333.546667pt;}
.y32{bottom:345.226667pt;}
.y31{bottom:368.506667pt;}
.y30{bottom:389.226667pt;}
.y2f{bottom:404.906667pt;}
.y2e{bottom:423.466667pt;}
.y2d{bottom:442.026667pt;}
.y50{bottom:457.946667pt;}
.y2c{bottom:460.586667pt;}
.y2b{bottom:479.386667pt;}
.y2a{bottom:497.786667pt;}
.y4e{bottom:515.706667pt;}
.y29{bottom:516.346667pt;}
.y28{bottom:535.066667pt;}
.y27{bottom:553.546667pt;}
.y26{bottom:572.133333pt;}
.y25{bottom:587.573333pt;}
.y24{bottom:592.853333pt;}
.y23{bottom:603.333333pt;}
.y22{bottom:612.293333pt;}
.y21{bottom:627.173333pt;}
.y20{bottom:640.453333pt;}
.y1f{bottom:649.413333pt;}
.y1e{bottom:662.773333pt;}
.y1d{bottom:671.813333pt;}
.y1c{bottom:686.533333pt;}
.y1b{bottom:701.493333pt;}
.y1a{bottom:716.293333pt;}
.y19{bottom:731.253333pt;}
.y18{bottom:746.133333pt;}
.y17{bottom:760.933333pt;}
.y16{bottom:775.813333pt;}
.y15{bottom:791.413333pt;}
.y14{bottom:808.373333pt;}
.y4d{bottom:817.013333pt;}
.y13{bottom:820.373333pt;}
.y4c{bottom:835.573333pt;}
.y12{bottom:839.893333pt;}
.y11{bottom:851.573333pt;}
.y4b{bottom:854.133333pt;}
.y10{bottom:872.373333pt;}
.y4a{bottom:872.773333pt;}
.yf{bottom:890.373333pt;}
.y49{bottom:891.333333pt;}
.y48{bottom:909.893333pt;}
.ye{bottom:920.053333pt;}
.y47{bottom:928.453333pt;}
.yd{bottom:946.720000pt;}
.y46{bottom:947.120000pt;}
.ya{bottom:962.080000pt;}
.y45{bottom:965.680000pt;}
.y1{bottom:976.800000pt;}
.y54{bottom:978.560000pt;}
.y44{bottom:984.240000pt;}
.y43{bottom:1002.880000pt;}
.y42{bottom:1021.120000pt;}
.y41{bottom:1042.320000pt;}
.he{height:10.683750pt;}
.hd{height:21.691250pt;}
.h13{height:22.160000pt;}
.hc{height:26.871250pt;}
.h7{height:32.375000pt;}
.h9{height:43.058750pt;}
.h6{height:43.973125pt;}
.h5{height:44.687500pt;}
.h12{height:48.080000pt;}
.h10{height:48.847500pt;}
.h3{height:54.066250pt;}
.hf{height:55.214375pt;}
.hb{height:64.750000pt;}
.ha{height:86.441250pt;}
.h2{height:96.637333pt;}
.h4{height:96.640000pt;}
.h8{height:99.187500pt;}
.h11{height:497.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:30.000000pt;}
.w3{width:37.840000pt;}
.w2{width:300.213333pt;}
.w4{width:326.506667pt;}
.w5{width:516.293333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x15{left:9.600000pt;}
.x9{left:11.600000pt;}
.x3{left:18.080000pt;}
.x1{left:64.640000pt;}
.xa{left:71.840000pt;}
.xd{left:87.840000pt;}
.x8{left:91.920000pt;}
.x12{left:108.906667pt;}
.x10{left:119.066667pt;}
.x13{left:134.586667pt;}
.x16{left:149.946667pt;}
.x2{left:155.226667pt;}
.xf{left:224.026667pt;}
.x7{left:230.826667pt;}
.x11{left:262.906667pt;}
.xe{left:306.986667pt;}
.x4{left:364.853333pt;}
.xc{left:396.933333pt;}
.x6{left:402.693333pt;}
.x14{left:506.693333pt;}
.xb{left:698.080000pt;}
}




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