
    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_fe0f03da42394fd43e1eb02d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_869466b7a1351b753aca8afc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903809;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_a06583829c5695fbb378df5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_a9257f84a4cb221eb0209e14.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_6e0c7da72b97f042a249abb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.057600px;}
.lsf{letter-spacing:-0.036000px;}
.ls12{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.543168px;}
.ls4{letter-spacing:0.578592px;}
.ls1{letter-spacing:0.602640px;}
.ls2{letter-spacing:0.615600px;}
.ls8{letter-spacing:0.725760px;}
.lsa{letter-spacing:0.797040px;}
.ls3{letter-spacing:0.861984px;}
.ls9{letter-spacing:0.874800px;}
.ls7{letter-spacing:1.075680px;}
.lsc{letter-spacing:1.512000px;}
.lsd{letter-spacing:28.007400px;}
.ls0{letter-spacing:33.984000px;}
.lse{letter-spacing:38.026800px;}
.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:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.ws2{word-spacing:-17.074800px;}
.ws1{word-spacing:-16.925760px;}
.ws4{word-spacing:-16.815600px;}
.ws3{word-spacing:-16.802640px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.239840px;}
._1{width:1.111200px;}
._7{width:2.484000px;}
._4{width:3.902400px;}
._5{width:5.500800px;}
._8{width:6.940800px;}
._3{width:7.956300px;}
._e{width:9.504000px;}
._6{width:11.116800px;}
._a{width:12.147300px;}
._c{width:13.588500px;}
._d{width:15.125100px;}
._b{width:16.869600px;}
._f{width:19.065600px;}
._11{width:20.867700px;}
._15{width:22.125600px;}
._9{width:23.428800px;}
._10{width:24.868800px;}
._13{width:25.984800px;}
._16{width:27.496800px;}
._14{width:28.828800px;}
._2{width:30.873600px;}
._17{width:33.789600px;}
._12{width:37.044000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:6.480000px;}
.y13{bottom:6.840000px;}
.y1{bottom:18.750000px;}
.y8{bottom:37.860030px;}
.y7{bottom:58.020030px;}
.y35{bottom:99.420015px;}
.y56{bottom:111.660030px;}
.y34{bottom:123.180030px;}
.y55{bottom:135.420000px;}
.y33{bottom:146.940000px;}
.y54{bottom:159.180000px;}
.y32{bottom:170.700000px;}
.y53{bottom:182.940000px;}
.y31{bottom:194.820000px;}
.y52{bottom:207.060000px;}
.y30{bottom:218.580000px;}
.y51{bottom:230.820000px;}
.y2f{bottom:242.340000px;}
.y50{bottom:254.580000px;}
.y2e{bottom:266.100000px;}
.y4f{bottom:278.340000px;}
.y2d{bottom:289.860000px;}
.y4e{bottom:302.100000px;}
.y2c{bottom:313.620000px;}
.y4d{bottom:325.860000px;}
.y2b{bottom:337.380000px;}
.y4c{bottom:349.620000px;}
.y2a{bottom:361.140000px;}
.y4b{bottom:373.380000px;}
.y29{bottom:385.260000px;}
.y4a{bottom:397.140000px;}
.y28{bottom:409.020000px;}
.y49{bottom:421.260000px;}
.y27{bottom:432.780000px;}
.y48{bottom:445.020000px;}
.y26{bottom:456.540000px;}
.y47{bottom:468.780000px;}
.y25{bottom:480.300000px;}
.y46{bottom:492.540000px;}
.y24{bottom:504.060000px;}
.y45{bottom:516.300000px;}
.y23{bottom:527.820000px;}
.y44{bottom:540.060000px;}
.y22{bottom:551.580000px;}
.y43{bottom:563.820000px;}
.y21{bottom:575.340000px;}
.y42{bottom:587.580000px;}
.y20{bottom:599.460000px;}
.y41{bottom:611.700000px;}
.y1f{bottom:623.220000px;}
.y40{bottom:635.460000px;}
.y1e{bottom:646.980000px;}
.y3f{bottom:659.220000px;}
.y3e{bottom:682.980000px;}
.y1d{bottom:683.010000px;}
.y1c{bottom:705.690000px;}
.y3d{bottom:706.740000px;}
.y1b{bottom:728.010000px;}
.y3c{bottom:730.500000px;}
.y1a{bottom:750.690000px;}
.y3b{bottom:754.260000px;}
.y19{bottom:773.370000px;}
.y3a{bottom:778.020000px;}
.y18{bottom:795.690000px;}
.y39{bottom:802.140000px;}
.y17{bottom:818.370000px;}
.y38{bottom:825.900000px;}
.y15{bottom:841.050000px;}
.y37{bottom:849.660000px;}
.y14{bottom:863.370000px;}
.y36{bottom:873.420000px;}
.y12{bottom:886.050000px;}
.y11{bottom:897.180000px;}
.y10{bottom:920.940000px;}
.yf{bottom:944.700000px;}
.ye{bottom:968.460000px;}
.yd{bottom:992.220000px;}
.yc{bottom:1016.340000px;}
.yb{bottom:1040.100000px;}
.ya{bottom:1063.860000px;}
.y9{bottom:1087.620000px;}
.y6{bottom:1107.780000px;}
.y5{bottom:1125.060000px;}
.y4{bottom:1142.340000px;}
.y3{bottom:1159.620000px;}
.y2{bottom:1176.900000px;}
.h9{height:21.599985px;}
.h7{height:21.600030px;}
.h8{height:21.959970px;}
.h5{height:21.960015px;}
.h2{height:51.804141px;}
.h6{height:56.858203px;}
.h3{height:63.175781px;}
.h4{height:63.949219px;}
.h1{height:1225.500000px;}
.h0{height:1263.000000px;}
.w3{width:116.279985px;}
.w4{width:456.480000px;}
.w2{width:573.480000px;}
.w1{width:855.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:8.640000px;}
.x1{left:18.750000px;}
.x7{left:109.439925px;}
.x3{left:133.366350px;}
.x9{left:136.440000px;}
.x2{left:160.194900px;}
.xa{left:163.440000px;}
.xb{left:181.830000px;}
.xe{left:190.439850px;}
.xf{left:217.439850px;}
.x4{left:221.436450px;}
.x14{left:238.437000px;}
.x15{left:239.439000px;}
.x13{left:243.438000px;}
.x10{left:244.439850px;}
.x12{left:248.439000px;}
.x11{left:271.439850px;}
.xd{left:298.830000px;}
.x8{left:351.368700px;}
.x6{left:424.364850px;}
.x5{left:428.114850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051200pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.482816pt;}
.ls4{letter-spacing:0.514304pt;}
.ls1{letter-spacing:0.535680pt;}
.ls2{letter-spacing:0.547200pt;}
.ls8{letter-spacing:0.645120pt;}
.lsa{letter-spacing:0.708480pt;}
.ls3{letter-spacing:0.766208pt;}
.ls9{letter-spacing:0.777600pt;}
.ls7{letter-spacing:0.956160pt;}
.lsc{letter-spacing:1.344000pt;}
.lsd{letter-spacing:24.895467pt;}
.ls0{letter-spacing:30.208000pt;}
.lse{letter-spacing:33.801600pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.ws2{word-spacing:-15.177600pt;}
.ws1{word-spacing:-15.045120pt;}
.ws4{word-spacing:-14.947200pt;}
.ws3{word-spacing:-14.935680pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.102080pt;}
._1{width:0.987733pt;}
._7{width:2.208000pt;}
._4{width:3.468800pt;}
._5{width:4.889600pt;}
._8{width:6.169600pt;}
._3{width:7.072267pt;}
._e{width:8.448000pt;}
._6{width:9.881600pt;}
._a{width:10.797600pt;}
._c{width:12.078667pt;}
._d{width:13.444533pt;}
._b{width:14.995200pt;}
._f{width:16.947200pt;}
._11{width:18.549067pt;}
._15{width:19.667200pt;}
._9{width:20.825600pt;}
._10{width:22.105600pt;}
._13{width:23.097600pt;}
._16{width:24.441600pt;}
._14{width:25.625600pt;}
._2{width:27.443200pt;}
._17{width:30.035200pt;}
._12{width:32.928000pt;}
.fs0{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:5.760000pt;}
.y13{bottom:6.080000pt;}
.y1{bottom:16.666667pt;}
.y8{bottom:33.653360pt;}
.y7{bottom:51.573360pt;}
.y35{bottom:88.373347pt;}
.y56{bottom:99.253360pt;}
.y34{bottom:109.493360pt;}
.y55{bottom:120.373333pt;}
.y33{bottom:130.613333pt;}
.y54{bottom:141.493333pt;}
.y32{bottom:151.733333pt;}
.y53{bottom:162.613333pt;}
.y31{bottom:173.173333pt;}
.y52{bottom:184.053333pt;}
.y30{bottom:194.293333pt;}
.y51{bottom:205.173333pt;}
.y2f{bottom:215.413333pt;}
.y50{bottom:226.293333pt;}
.y2e{bottom:236.533333pt;}
.y4f{bottom:247.413333pt;}
.y2d{bottom:257.653333pt;}
.y4e{bottom:268.533333pt;}
.y2c{bottom:278.773333pt;}
.y4d{bottom:289.653333pt;}
.y2b{bottom:299.893333pt;}
.y4c{bottom:310.773333pt;}
.y2a{bottom:321.013333pt;}
.y4b{bottom:331.893333pt;}
.y29{bottom:342.453333pt;}
.y4a{bottom:353.013333pt;}
.y28{bottom:363.573333pt;}
.y49{bottom:374.453333pt;}
.y27{bottom:384.693333pt;}
.y48{bottom:395.573333pt;}
.y26{bottom:405.813333pt;}
.y47{bottom:416.693333pt;}
.y25{bottom:426.933333pt;}
.y46{bottom:437.813333pt;}
.y24{bottom:448.053333pt;}
.y45{bottom:458.933333pt;}
.y23{bottom:469.173333pt;}
.y44{bottom:480.053333pt;}
.y22{bottom:490.293333pt;}
.y43{bottom:501.173333pt;}
.y21{bottom:511.413333pt;}
.y42{bottom:522.293333pt;}
.y20{bottom:532.853333pt;}
.y41{bottom:543.733333pt;}
.y1f{bottom:553.973333pt;}
.y40{bottom:564.853333pt;}
.y1e{bottom:575.093333pt;}
.y3f{bottom:585.973333pt;}
.y3e{bottom:607.093333pt;}
.y1d{bottom:607.120000pt;}
.y1c{bottom:627.280000pt;}
.y3d{bottom:628.213333pt;}
.y1b{bottom:647.120000pt;}
.y3c{bottom:649.333333pt;}
.y1a{bottom:667.280000pt;}
.y3b{bottom:670.453333pt;}
.y19{bottom:687.440000pt;}
.y3a{bottom:691.573333pt;}
.y18{bottom:707.280000pt;}
.y39{bottom:713.013333pt;}
.y17{bottom:727.440000pt;}
.y38{bottom:734.133333pt;}
.y15{bottom:747.600000pt;}
.y37{bottom:755.253333pt;}
.y14{bottom:767.440000pt;}
.y36{bottom:776.373333pt;}
.y12{bottom:787.600000pt;}
.y11{bottom:797.493333pt;}
.y10{bottom:818.613333pt;}
.yf{bottom:839.733333pt;}
.ye{bottom:860.853333pt;}
.yd{bottom:881.973333pt;}
.yc{bottom:903.413333pt;}
.yb{bottom:924.533333pt;}
.ya{bottom:945.653333pt;}
.y9{bottom:966.773333pt;}
.y6{bottom:984.693333pt;}
.y5{bottom:1000.053333pt;}
.y4{bottom:1015.413333pt;}
.y3{bottom:1030.773333pt;}
.y2{bottom:1046.133333pt;}
.h9{height:19.199987pt;}
.h7{height:19.200027pt;}
.h8{height:19.519973pt;}
.h5{height:19.520013pt;}
.h2{height:46.048125pt;}
.h6{height:50.540625pt;}
.h3{height:56.156250pt;}
.h4{height:56.843750pt;}
.h1{height:1089.333333pt;}
.h0{height:1122.666667pt;}
.w3{width:103.359987pt;}
.w4{width:405.760000pt;}
.w2{width:509.760000pt;}
.w1{width:760.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:7.680000pt;}
.x1{left:16.666667pt;}
.x7{left:97.279933pt;}
.x3{left:118.547867pt;}
.x9{left:121.280000pt;}
.x2{left:142.395467pt;}
.xa{left:145.280000pt;}
.xb{left:161.626667pt;}
.xe{left:169.279867pt;}
.xf{left:193.279867pt;}
.x4{left:196.832400pt;}
.x14{left:211.944000pt;}
.x15{left:212.834667pt;}
.x13{left:216.389333pt;}
.x10{left:217.279867pt;}
.x12{left:220.834667pt;}
.x11{left:241.279867pt;}
.xd{left:265.626667pt;}
.x8{left:312.327733pt;}
.x6{left:377.213200pt;}
.x5{left:380.546533pt;}
}




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