
    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_54ae04eaa9bec5615757a8c7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f82190b6b1ba5eece2f8bd4.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_cf5a013219669051146e63b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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:-80.640000px;}
.v3{vertical-align:-33.120000px;}
.v5{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v2{vertical-align:33.120000px;}
.ls5{letter-spacing:-1.908000px;}
.ls7{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.422000px;}
.ls8{letter-spacing:-0.972000px;}
.lse{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.486600px;}
.lsb{letter-spacing:-0.466800px;}
.lsd{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020160px;}
.lsa{letter-spacing:0.466800px;}
.lsf{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.440000px;}
.ls2{letter-spacing:18.000000px;}
.ls3{letter-spacing:124.704000px;}
.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;}
}
.wsb{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.099840px;}
.wsa{word-spacing:-14.653200px;}
.ws8{word-spacing:-14.633400px;}
.ws5{word-spacing:-14.148000px;}
.ws3{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.212000px;}
.wsc{word-spacing:-11.880000px;}
.wsd{word-spacing:0.000000px;}
._3{margin-left:-2.875680px;}
._0{margin-left:-1.451520px;}
._1{width:1.356960px;}
._2{width:2.572320px;}
._8{width:3.597120px;}
._7{width:4.994880px;}
._a{width:6.410880px;}
._9{width:7.499520px;}
._d{width:9.260160px;}
._c{width:10.288320px;}
._5{width:11.672640px;}
._4{width:12.960000px;}
._6{width:14.040000px;}
._b{width:16.535040px;}
._11{width:18.023040px;}
._12{width:19.320480px;}
._13{width:20.805120px;}
._14{width:22.297440px;}
._f{width:27.612960px;}
._10{width:28.703520px;}
._e{width:29.736480px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y35{bottom:11.505000px;}
.y34{bottom:29.505000px;}
.y33{bottom:53.655000px;}
.y32{bottom:70.935000px;}
.y31{bottom:88.215000px;}
.y30{bottom:98.655000px;}
.y2f{bottom:116.295000px;}
.y2e{bottom:157.335000px;}
.y2d{bottom:175.380000px;}
.y2a{bottom:190.515000px;}
.y2c{bottom:199.500000px;}
.y29{bottom:207.795000px;}
.y28{bottom:225.075000px;}
.y27{bottom:241.995000px;}
.y26{bottom:259.275000px;}
.y25{bottom:276.555000px;}
.y24{bottom:293.835000px;}
.y23{bottom:311.115000px;}
.y22{bottom:328.425000px;}
.y21{bottom:345.705000px;}
.y20{bottom:362.985000px;}
.y1f{bottom:380.265000px;}
.y1e{bottom:397.545000px;}
.y1d{bottom:414.825000px;}
.y1c{bottom:432.105000px;}
.y1b{bottom:449.070000px;}
.y1a{bottom:466.350000px;}
.y19{bottom:483.630000px;}
.y18{bottom:500.910000px;}
.y17{bottom:518.190000px;}
.y16{bottom:535.470000px;}
.y15{bottom:552.750000px;}
.y14{bottom:570.060000px;}
.y13{bottom:587.340000px;}
.y12{bottom:604.620000px;}
.y11{bottom:621.900000px;}
.y53{bottom:626.940000px;}
.y10{bottom:638.820000px;}
.y52{bottom:644.220000px;}
.yf{bottom:656.100000px;}
.y51{bottom:661.500000px;}
.ye{bottom:673.380000px;}
.y50{bottom:678.780000px;}
.yd{bottom:690.660000px;}
.y4f{bottom:695.700000px;}
.yc{bottom:707.970000px;}
.y4e{bottom:713.010000px;}
.yb{bottom:725.250000px;}
.y4d{bottom:731.730000px;}
.ya{bottom:742.530000px;}
.y4c{bottom:749.010000px;}
.y9{bottom:759.810000px;}
.y4b{bottom:767.730000px;}
.y8{bottom:777.090000px;}
.y4a{bottom:786.450000px;}
.y7{bottom:794.370000px;}
.y49{bottom:803.730000px;}
.y6{bottom:811.650000px;}
.y48{bottom:821.010000px;}
.y5{bottom:828.975000px;}
.y47{bottom:838.335000px;}
.y4{bottom:845.895000px;}
.y46{bottom:855.615000px;}
.y3{bottom:863.175000px;}
.y45{bottom:873.975000px;}
.y2{bottom:880.455000px;}
.y44{bottom:891.255000px;}
.y1{bottom:897.375000px;}
.y43{bottom:908.535000px;}
.y2b{bottom:916.470000px;}
.y42{bottom:927.255000px;}
.y41{bottom:945.975000px;}
.y40{bottom:964.725000px;}
.y3f{bottom:982.005000px;}
.y3e{bottom:1000.725000px;}
.y3d{bottom:1018.005000px;}
.y3c{bottom:1034.565000px;}
.y3b{bottom:1052.205000px;}
.y3a{bottom:1069.485000px;}
.y39{bottom:1086.810000px;}
.y38{bottom:1104.090000px;}
.y37{bottom:1121.370000px;}
.y36{bottom:1138.650000px;}
.h8{height:38.158594px;}
.h3{height:59.357813px;}
.h2{height:60.952500px;}
.h7{height:65.518594px;}
.h6{height:79.758281px;}
.h5{height:84.172500px;}
.h4{height:218.925000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:715.950000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:10.786500px;}
.x4{left:27.706500px;}
.xc{left:56.545500px;}
.x5{left:75.265500px;}
.xb{left:79.945500px;}
.x1{left:93.636000px;}
.x7{left:96.145500px;}
.x3{left:100.489500px;}
.x9{left:103.705500px;}
.x2{left:108.396000px;}
.xe{left:114.876000px;}
.xa{left:214.255500px;}
.x8{left:234.460500px;}
.xd{left:312.940500px;}
@media print{
.v1{vertical-align:-71.680000pt;}
.v3{vertical-align:-29.440000pt;}
.v5{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v2{vertical-align:29.440000pt;}
.ls5{letter-spacing:-1.696000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.264000pt;}
.ls8{letter-spacing:-0.864000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.432533pt;}
.lsb{letter-spacing:-0.414933pt;}
.lsd{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017920pt;}
.lsa{letter-spacing:0.414933pt;}
.lsf{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls2{letter-spacing:16.000000pt;}
.ls3{letter-spacing:110.848000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.422080pt;}
.wsa{word-spacing:-13.025067pt;}
.ws8{word-spacing:-13.007467pt;}
.ws5{word-spacing:-12.576000pt;}
.ws3{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.744000pt;}
.wsc{word-spacing:-10.560000pt;}
.wsd{word-spacing:0.000000pt;}
._3{margin-left:-2.556160pt;}
._0{margin-left:-1.290240pt;}
._1{width:1.206187pt;}
._2{width:2.286507pt;}
._8{width:3.197440pt;}
._7{width:4.439893pt;}
._a{width:5.698560pt;}
._9{width:6.666240pt;}
._d{width:8.231253pt;}
._c{width:9.145173pt;}
._5{width:10.375680pt;}
._4{width:11.520000pt;}
._6{width:12.480000pt;}
._b{width:14.697813pt;}
._11{width:16.020480pt;}
._12{width:17.173760pt;}
._13{width:18.493440pt;}
._14{width:19.819947pt;}
._f{width:24.544853pt;}
._10{width:25.514240pt;}
._e{width:26.432427pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:10.226667pt;}
.y34{bottom:26.226667pt;}
.y33{bottom:47.693333pt;}
.y32{bottom:63.053333pt;}
.y31{bottom:78.413333pt;}
.y30{bottom:87.693333pt;}
.y2f{bottom:103.373333pt;}
.y2e{bottom:139.853333pt;}
.y2d{bottom:155.893333pt;}
.y2a{bottom:169.346667pt;}
.y2c{bottom:177.333333pt;}
.y29{bottom:184.706667pt;}
.y28{bottom:200.066667pt;}
.y27{bottom:215.106667pt;}
.y26{bottom:230.466667pt;}
.y25{bottom:245.826667pt;}
.y24{bottom:261.186667pt;}
.y23{bottom:276.546667pt;}
.y22{bottom:291.933333pt;}
.y21{bottom:307.293333pt;}
.y20{bottom:322.653333pt;}
.y1f{bottom:338.013333pt;}
.y1e{bottom:353.373333pt;}
.y1d{bottom:368.733333pt;}
.y1c{bottom:384.093333pt;}
.y1b{bottom:399.173333pt;}
.y1a{bottom:414.533333pt;}
.y19{bottom:429.893333pt;}
.y18{bottom:445.253333pt;}
.y17{bottom:460.613333pt;}
.y16{bottom:475.973333pt;}
.y15{bottom:491.333333pt;}
.y14{bottom:506.720000pt;}
.y13{bottom:522.080000pt;}
.y12{bottom:537.440000pt;}
.y11{bottom:552.800000pt;}
.y53{bottom:557.280000pt;}
.y10{bottom:567.840000pt;}
.y52{bottom:572.640000pt;}
.yf{bottom:583.200000pt;}
.y51{bottom:588.000000pt;}
.ye{bottom:598.560000pt;}
.y50{bottom:603.360000pt;}
.yd{bottom:613.920000pt;}
.y4f{bottom:618.400000pt;}
.yc{bottom:629.306667pt;}
.y4e{bottom:633.786667pt;}
.yb{bottom:644.666667pt;}
.y4d{bottom:650.426667pt;}
.ya{bottom:660.026667pt;}
.y4c{bottom:665.786667pt;}
.y9{bottom:675.386667pt;}
.y4b{bottom:682.426667pt;}
.y8{bottom:690.746667pt;}
.y4a{bottom:699.066667pt;}
.y7{bottom:706.106667pt;}
.y49{bottom:714.426667pt;}
.y6{bottom:721.466667pt;}
.y48{bottom:729.786667pt;}
.y5{bottom:736.866667pt;}
.y47{bottom:745.186667pt;}
.y4{bottom:751.906667pt;}
.y46{bottom:760.546667pt;}
.y3{bottom:767.266667pt;}
.y45{bottom:776.866667pt;}
.y2{bottom:782.626667pt;}
.y44{bottom:792.226667pt;}
.y1{bottom:797.666667pt;}
.y43{bottom:807.586667pt;}
.y2b{bottom:814.640000pt;}
.y42{bottom:824.226667pt;}
.y41{bottom:840.866667pt;}
.y40{bottom:857.533333pt;}
.y3f{bottom:872.893333pt;}
.y3e{bottom:889.533333pt;}
.y3d{bottom:904.893333pt;}
.y3c{bottom:919.613333pt;}
.y3b{bottom:935.293333pt;}
.y3a{bottom:950.653333pt;}
.y39{bottom:966.053333pt;}
.y38{bottom:981.413333pt;}
.y37{bottom:996.773333pt;}
.y36{bottom:1012.133333pt;}
.h8{height:33.918750pt;}
.h3{height:52.762500pt;}
.h2{height:54.180000pt;}
.h7{height:58.238750pt;}
.h6{height:70.896250pt;}
.h5{height:74.820000pt;}
.h4{height:194.600000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:636.400000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.588000pt;}
.x4{left:24.628000pt;}
.xc{left:50.262667pt;}
.x5{left:66.902667pt;}
.xb{left:71.062667pt;}
.x1{left:83.232000pt;}
.x7{left:85.462667pt;}
.x3{left:89.324000pt;}
.x9{left:92.182667pt;}
.x2{left:96.352000pt;}
.xe{left:102.112000pt;}
.xa{left:190.449333pt;}
.x8{left:208.409333pt;}
.xd{left:278.169333pt;}
}




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