
    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_86e3f360e4cc09ce2f3f4617.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.048000;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_f7726b909c31e528769b080c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.142000;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_aa6919748da5a61465ae4fcf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.048000;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_4c67941c989957067b4a4a8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.160500;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;}
.m1{transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-ms-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-webkit-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,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);}
.v2{vertical-align:-27.030000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.976000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005454px;}
.ls5{letter-spacing:5.498496px;}
.ls2{letter-spacing:6.344496px;}
.ls4{letter-spacing:7.706496px;}
.ls3{letter-spacing:30.668496px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(64,136,137),0 0.015em rgb(64,136,137),0.015em 0 rgb(64,136,137),0 -0.015em  rgb(64,136,137);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(64,136,137);text-shadow:none;}
}
.ws3{word-spacing:-14.525005px;}
.ws4{word-spacing:-13.725504px;}
.ws0{word-spacing:-9.231456px;}
.ws1{word-spacing:-7.501728px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-4.536972px;}
._2{margin-left:-2.441556px;}
._0{margin-left:-1.253772px;}
._3{width:1.253772px;}
._5{width:2.705508px;}
._1{width:4.421196px;}
._8{width:5.479476px;}
._4{width:6.652848px;}
._c{width:7.718592px;}
._b{width:8.814228px;}
._e{width:9.898200px;}
._9{width:11.877840px;}
._18{width:15.639156px;}
._d{width:17.288856px;}
._14{width:18.542628px;}
._19{width:19.664424px;}
._12{width:20.984184px;}
._a{width:22.369932px;}
._17{width:23.752836px;}
._15{width:25.933284px;}
._13{width:27.121068px;}
._10{width:28.572804px;}
._11{width:29.892564px;}
._1a{width:31.080348px;}
._6{width:32.862024px;}
._f{width:33.917832px;}
._16{width:36.359388px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,136,137);}
.fs4{font-size:36.066000px;}
.fs2{font-size:44.382000px;}
.fs5{font-size:54.084000px;}
.fs1{font-size:65.988000px;}
.fs6{font-size:69.831753px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:168.036000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.ye{bottom:29.712000px;}
.yd{bottom:48.808500px;}
.y4e{bottom:79.000500px;}
.y45{bottom:94.818000px;}
.y4d{bottom:99.708000px;}
.y44{bottom:115.525500px;}
.y27{bottom:117.226500px;}
.y4c{bottom:120.415500px;}
.y43{bottom:136.233000px;}
.y26{bottom:137.932500px;}
.y42{bottom:156.939000px;}
.y25{bottom:158.640000px;}
.y41{bottom:177.646500px;}
.y72{bottom:185.385000px;}
.y40{bottom:198.354000px;}
.y71{bottom:206.092500px;}
.y70{bottom:226.800000px;}
.y24{bottom:227.055000px;}
.y6f{bottom:247.506000px;}
.y23{bottom:247.761000px;}
.y3f{bottom:248.739000px;}
.y6e{bottom:268.213500px;}
.y22{bottom:268.468500px;}
.y3e{bottom:269.446500px;}
.y21{bottom:311.626500px;}
.y3d{bottom:313.411500px;}
.y6d{bottom:316.303500px;}
.y20{bottom:332.332500px;}
.y6c{bottom:337.011000px;}
.y1f{bottom:353.040000px;}
.y6b{bottom:357.717000px;}
.y4b{bottom:370.899000px;}
.y1e{bottom:373.747500px;}
.y6a{bottom:378.424500px;}
.y4a{bottom:391.605000px;}
.y1d{bottom:394.455000px;}
.y49{bottom:412.312500px;}
.y69{bottom:424.855500px;}
.y48{bottom:433.020000px;}
.y1c{bottom:444.840000px;}
.y68{bottom:445.563000px;}
.y47{bottom:453.727500px;}
.y1b{bottom:465.547500px;}
.y67{bottom:466.270500px;}
.y46{bottom:474.433500px;}
.y1a{bottom:486.255000px;}
.y66{bottom:486.978000px;}
.y19{bottom:506.961000px;}
.y65{bottom:507.684000px;}
.y2e{bottom:522.354000px;}
.y2d{bottom:543.061500px;}
.y64{bottom:546.888000px;}
.y18{bottom:556.029000px;}
.y63{bottom:567.594000px;}
.y17{bottom:576.736500px;}
.y62{bottom:588.301500px;}
.y3c{bottom:590.811000px;}
.y16{bottom:597.444000px;}
.y61{bottom:609.009000px;}
.y3b{bottom:611.517000px;}
.y15{bottom:618.150000px;}
.y60{bottom:629.716500px;}
.y3a{bottom:632.224500px;}
.y14{bottom:638.857500px;}
.y5f{bottom:650.422500px;}
.y39{bottom:652.932000px;}
.y13{bottom:682.780500px;}
.y5e{bottom:686.011500px;}
.y38{bottom:701.446500px;}
.y12{bottom:703.488000px;}
.y5d{bottom:706.719000px;}
.y37{bottom:722.154000px;}
.y11{bottom:724.194000px;}
.y5c{bottom:727.426500px;}
.y36{bottom:742.861500px;}
.y10{bottom:744.901500px;}
.y5b{bottom:748.132500px;}
.y35{bottom:763.567500px;}
.yf{bottom:765.609000px;}
.y5a{bottom:768.840000px;}
.yb{bottom:806.598000px;}
.y53{bottom:817.099500px;}
.y34{bottom:824.158500px;}
.y52{bottom:837.807000px;}
.y33{bottom:844.866000px;}
.y51{bottom:858.514500px;}
.y32{bottom:865.572000px;}
.y50{bottom:879.222000px;}
.ya{bottom:883.771500px;}
.y4f{bottom:899.928000px;}
.y9{bottom:904.477500px;}
.y31{bottom:922.378500px;}
.y8{bottom:927.778500px;}
.y30{bottom:943.086000px;}
.y7{bottom:948.486000px;}
.y59{bottom:959.371500px;}
.y2f{bottom:963.793500px;}
.y6{bottom:969.193500px;}
.y58{bottom:980.077500px;}
.y5{bottom:989.899500px;}
.y57{bottom:1000.785000px;}
.y2c{bottom:1004.739000px;}
.y4{bottom:1010.607000px;}
.y56{bottom:1021.492500px;}
.y2b{bottom:1025.446500px;}
.y3{bottom:1033.908000px;}
.y55{bottom:1042.200000px;}
.y2a{bottom:1046.154000px;}
.y29{bottom:1066.861500px;}
.y2{bottom:1072.218000px;}
.y54{bottom:1083.444000px;}
.y28{bottom:1087.567500px;}
.yc{bottom:1176.987000px;}
.h8{height:32.874159px;}
.h4{height:60.148062px;}
.h9{height:61.401834px;}
.ha{height:63.651643px;}
.h5{height:73.430193px;}
.h6{height:73.496193px;}
.h3{height:88.344000px;}
.h7{height:137.453448px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.870500px;}
.w0{width:892.913386px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:58.336500px;}
.xe{left:59.358000px;}
.x4{left:104.470500px;}
.x2{left:157.323000px;}
.x5{left:200.437500px;}
.xf{left:228.288000px;}
.x31{left:236.919000px;}
.x7{left:243.297000px;}
.x30{left:244.615500px;}
.x6{left:245.848500px;}
.x36{left:251.419500px;}
.x21{left:258.903000px;}
.x10{left:272.338500px;}
.xa{left:301.677000px;}
.x24{left:326.253000px;}
.x22{left:333.439500px;}
.x13{left:344.962500px;}
.xb{left:364.096500px;}
.x28{left:387.864000px;}
.x11{left:390.501000px;}
.x14{left:396.453000px;}
.x25{left:399.004500px;}
.x15{left:407.976000px;}
.x23{left:414.567000px;}
.x32{left:425.112000px;}
.x3{left:432.000000px;}
.x12{left:440.035500px;}
.x26{left:442.035000px;}
.x16{left:455.938500px;}
.x33{left:461.593500px;}
.x17{left:467.461500px;}
.x29{left:473.244000px;}
.x2a{left:482.343000px;}
.x34{left:514.743000px;}
.xc{left:519.250500px;}
.x3a{left:520.908000px;}
.x18{left:538.213500px;}
.x2b{left:547.866000px;}
.x19{left:549.736500px;}
.x39{left:551.013000px;}
.xd{left:554.712000px;}
.x8{left:593.575500px;}
.x1a{left:602.589000px;}
.x1b{left:614.112000px;}
.x27{left:616.195500px;}
.x2c{left:624.402000px;}
.x35{left:658.630500px;}
.x1c{left:660.841500px;}
.x1d{left:672.364500px;}
.x37{left:679.422000px;}
.x2d{left:683.206500px;}
.x2e{left:718.455000px;}
.x1e{left:728.659500px;}
.x1f{left:740.182500px;}
.x9{left:752.130000px;}
.x2f{left:782.362500px;}
.x20{left:803.026500px;}
.x38{left:834.619500px;}
@media print{
.v2{vertical-align:-24.026667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.312000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004848pt;}
.ls5{letter-spacing:4.887552pt;}
.ls2{letter-spacing:5.639552pt;}
.ls4{letter-spacing:6.850219pt;}
.ls3{letter-spacing:27.260885pt;}
.ws3{word-spacing:-12.911115pt;}
.ws4{word-spacing:-12.200448pt;}
.ws0{word-spacing:-8.205739pt;}
.ws1{word-spacing:-6.668203pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-4.032864pt;}
._2{margin-left:-2.170272pt;}
._0{margin-left:-1.114464pt;}
._3{width:1.114464pt;}
._5{width:2.404896pt;}
._1{width:3.929952pt;}
._8{width:4.870645pt;}
._4{width:5.913643pt;}
._c{width:6.860971pt;}
._b{width:7.834869pt;}
._e{width:8.798400pt;}
._9{width:10.558080pt;}
._18{width:13.901472pt;}
._d{width:15.367872pt;}
._14{width:16.482336pt;}
._19{width:17.479488pt;}
._12{width:18.652608pt;}
._a{width:19.884384pt;}
._17{width:21.113632pt;}
._15{width:23.051808pt;}
._13{width:24.107616pt;}
._10{width:25.398048pt;}
._11{width:26.571168pt;}
._1a{width:27.626976pt;}
._6{width:29.210688pt;}
._f{width:30.149184pt;}
._16{width:32.319456pt;}
.fs4{font-size:32.058667pt;}
.fs2{font-size:39.450667pt;}
.fs5{font-size:48.074667pt;}
.fs1{font-size:58.656000pt;}
.fs6{font-size:62.072669pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:149.365333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.ye{bottom:26.410667pt;}
.yd{bottom:43.385333pt;}
.y4e{bottom:70.222667pt;}
.y45{bottom:84.282667pt;}
.y4d{bottom:88.629333pt;}
.y44{bottom:102.689333pt;}
.y27{bottom:104.201333pt;}
.y4c{bottom:107.036000pt;}
.y43{bottom:121.096000pt;}
.y26{bottom:122.606667pt;}
.y42{bottom:139.501333pt;}
.y25{bottom:141.013333pt;}
.y41{bottom:157.908000pt;}
.y72{bottom:164.786667pt;}
.y40{bottom:176.314667pt;}
.y71{bottom:183.193333pt;}
.y70{bottom:201.600000pt;}
.y24{bottom:201.826667pt;}
.y6f{bottom:220.005333pt;}
.y23{bottom:220.232000pt;}
.y3f{bottom:221.101333pt;}
.y6e{bottom:238.412000pt;}
.y22{bottom:238.638667pt;}
.y3e{bottom:239.508000pt;}
.y21{bottom:277.001333pt;}
.y3d{bottom:278.588000pt;}
.y6d{bottom:281.158667pt;}
.y20{bottom:295.406667pt;}
.y6c{bottom:299.565333pt;}
.y1f{bottom:313.813333pt;}
.y6b{bottom:317.970667pt;}
.y4b{bottom:329.688000pt;}
.y1e{bottom:332.220000pt;}
.y6a{bottom:336.377333pt;}
.y4a{bottom:348.093333pt;}
.y1d{bottom:350.626667pt;}
.y49{bottom:366.500000pt;}
.y69{bottom:377.649333pt;}
.y48{bottom:384.906667pt;}
.y1c{bottom:395.413333pt;}
.y68{bottom:396.056000pt;}
.y47{bottom:403.313333pt;}
.y1b{bottom:413.820000pt;}
.y67{bottom:414.462667pt;}
.y46{bottom:421.718667pt;}
.y1a{bottom:432.226667pt;}
.y66{bottom:432.869333pt;}
.y19{bottom:450.632000pt;}
.y65{bottom:451.274667pt;}
.y2e{bottom:464.314667pt;}
.y2d{bottom:482.721333pt;}
.y64{bottom:486.122667pt;}
.y18{bottom:494.248000pt;}
.y63{bottom:504.528000pt;}
.y17{bottom:512.654667pt;}
.y62{bottom:522.934667pt;}
.y3c{bottom:525.165333pt;}
.y16{bottom:531.061333pt;}
.y61{bottom:541.341333pt;}
.y3b{bottom:543.570667pt;}
.y15{bottom:549.466667pt;}
.y60{bottom:559.748000pt;}
.y3a{bottom:561.977333pt;}
.y14{bottom:567.873333pt;}
.y5f{bottom:578.153333pt;}
.y39{bottom:580.384000pt;}
.y13{bottom:606.916000pt;}
.y5e{bottom:609.788000pt;}
.y38{bottom:623.508000pt;}
.y12{bottom:625.322667pt;}
.y5d{bottom:628.194667pt;}
.y37{bottom:641.914667pt;}
.y11{bottom:643.728000pt;}
.y5c{bottom:646.601333pt;}
.y36{bottom:660.321333pt;}
.y10{bottom:662.134667pt;}
.y5b{bottom:665.006667pt;}
.y35{bottom:678.726667pt;}
.yf{bottom:680.541333pt;}
.y5a{bottom:683.413333pt;}
.yb{bottom:716.976000pt;}
.y53{bottom:726.310667pt;}
.y34{bottom:732.585333pt;}
.y52{bottom:744.717333pt;}
.y33{bottom:750.992000pt;}
.y51{bottom:763.124000pt;}
.y32{bottom:769.397333pt;}
.y50{bottom:781.530667pt;}
.ya{bottom:785.574667pt;}
.y4f{bottom:799.936000pt;}
.y9{bottom:803.980000pt;}
.y31{bottom:819.892000pt;}
.y8{bottom:824.692000pt;}
.y30{bottom:838.298667pt;}
.y7{bottom:843.098667pt;}
.y59{bottom:852.774667pt;}
.y2f{bottom:856.705333pt;}
.y6{bottom:861.505333pt;}
.y58{bottom:871.180000pt;}
.y5{bottom:879.910667pt;}
.y57{bottom:889.586667pt;}
.y2c{bottom:893.101333pt;}
.y4{bottom:898.317333pt;}
.y56{bottom:907.993333pt;}
.y2b{bottom:911.508000pt;}
.y3{bottom:919.029333pt;}
.y55{bottom:926.400000pt;}
.y2a{bottom:929.914667pt;}
.y29{bottom:948.321333pt;}
.y2{bottom:953.082667pt;}
.y54{bottom:963.061333pt;}
.y28{bottom:966.726667pt;}
.yc{bottom:1046.210667pt;}
.h8{height:29.221475pt;}
.h4{height:53.464944pt;}
.h9{height:54.579408pt;}
.ha{height:56.579238pt;}
.h5{height:65.271283pt;}
.h6{height:65.329949pt;}
.h3{height:78.528000pt;}
.h7{height:122.180843pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.662667pt;}
.w0{width:793.700787pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:51.854667pt;}
.xe{left:52.762667pt;}
.x4{left:92.862667pt;}
.x2{left:139.842667pt;}
.x5{left:178.166667pt;}
.xf{left:202.922667pt;}
.x31{left:210.594667pt;}
.x7{left:216.264000pt;}
.x30{left:217.436000pt;}
.x6{left:218.532000pt;}
.x36{left:223.484000pt;}
.x21{left:230.136000pt;}
.x10{left:242.078667pt;}
.xa{left:268.157333pt;}
.x24{left:290.002667pt;}
.x22{left:296.390667pt;}
.x13{left:306.633333pt;}
.xb{left:323.641333pt;}
.x28{left:344.768000pt;}
.x11{left:347.112000pt;}
.x14{left:352.402667pt;}
.x25{left:354.670667pt;}
.x15{left:362.645333pt;}
.x23{left:368.504000pt;}
.x32{left:377.877333pt;}
.x3{left:384.000000pt;}
.x12{left:391.142667pt;}
.x26{left:392.920000pt;}
.x16{left:405.278667pt;}
.x33{left:410.305333pt;}
.x17{left:415.521333pt;}
.x29{left:420.661333pt;}
.x2a{left:428.749333pt;}
.x34{left:457.549333pt;}
.xc{left:461.556000pt;}
.x3a{left:463.029333pt;}
.x18{left:478.412000pt;}
.x2b{left:486.992000pt;}
.x19{left:488.654667pt;}
.x39{left:489.789333pt;}
.xd{left:493.077333pt;}
.x8{left:527.622667pt;}
.x1a{left:535.634667pt;}
.x1b{left:545.877333pt;}
.x27{left:547.729333pt;}
.x2c{left:555.024000pt;}
.x35{left:585.449333pt;}
.x1c{left:587.414667pt;}
.x1d{left:597.657333pt;}
.x37{left:603.930667pt;}
.x2d{left:607.294667pt;}
.x2e{left:638.626667pt;}
.x1e{left:647.697333pt;}
.x1f{left:657.940000pt;}
.x9{left:668.560000pt;}
.x2f{left:695.433333pt;}
.x20{left:713.801333pt;}
.x38{left:741.884000pt;}
}




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