
    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_3aea6683c7c3f4daa2b7eb14.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_a892c07ad46b707f2d83191e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.834017px;}
.ls3{letter-spacing:2.964877px;}
.ls4{letter-spacing:2.987675px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:31.902600px;}
.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;}
}
.ws1{word-spacing:-35.865450px;}
.ws4{word-spacing:-14.943900px;}
.ws2e{word-spacing:-14.920027px;}
.ws29{word-spacing:-11.955150px;}
.ws31{word-spacing:-0.717307px;}
.ws15{word-spacing:-0.597756px;}
.ws9{word-spacing:-0.478205px;}
.ws16{word-spacing:-0.298878px;}
.ws39{word-spacing:-0.047821px;}
.ws40{word-spacing:0.000000px;}
.ws21{word-spacing:0.358654px;}
.ws14{word-spacing:0.418429px;}
.ws12{word-spacing:0.717307px;}
.ws1a{word-spacing:1.075961px;}
.ws2a{word-spacing:1.793268px;}
.ws20{word-spacing:2.331248px;}
.wsb{word-spacing:2.450800px;}
.ws26{word-spacing:2.988780px;}
.wse{word-spacing:3.885414px;}
.ws2d{word-spacing:4.363619px;}
.ws23{word-spacing:4.602721px;}
.ws3f{word-spacing:4.782060px;}
.ws22{word-spacing:5.021150px;}
.ws2b{word-spacing:5.080926px;}
.ws3c{word-spacing:5.116804px;}
.wsd{word-spacing:5.200477px;}
.ws2c{word-spacing:5.260253px;}
.ws13{word-spacing:5.320028px;}
.ws3d{word-spacing:5.690651px;}
.ws1d{word-spacing:5.738458px;}
.ws3{word-spacing:5.977560px;}
.ws3e{word-spacing:6.025396px;}
.wsc{word-spacing:6.276438px;}
.ws1b{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.wsf{word-spacing:6.814418px;}
.ws2f{word-spacing:6.933970px;}
.ws24{word-spacing:7.412174px;}
.ws1c{word-spacing:7.651277px;}
.ws11{word-spacing:7.890379px;}
.ws3a{word-spacing:8.798990px;}
.ws25{word-spacing:8.846789px;}
.ws3b{word-spacing:8.846811px;}
.ws8{word-spacing:9.683647px;}
.ws27{word-spacing:10.341179px;}
.ws28{word-spacing:12.612652px;}
.ws1f{word-spacing:12.911530px;}
.ws17{word-spacing:13.329959px;}
.ws5{word-spacing:13.987490px;}
.ws7{word-spacing:14.226593px;}
.ws0{word-spacing:14.346180px;}
.ws6{word-spacing:14.704798px;}
.ws10{word-spacing:15.003676px;}
.ws30{word-spacing:15.661207px;}
.ws19{word-spacing:15.720983px;}
.wsa{word-spacing:16.139412px;}
.ws32{word-spacing:16.641569px;}
.ws18{word-spacing:17.932680px;}
.ws36{word-spacing:18.936958px;}
.ws1e{word-spacing:20.383480px;}
.ws33{word-spacing:22.045297px;}
.ws35{word-spacing:25.870945px;}
.ws34{word-spacing:25.918765px;}
.ws37{word-spacing:26.540433px;}
.ws38{word-spacing:28.931463px;}
._0{margin-left:-11.476944px;}
._3{margin-left:-4.782048px;}
._1{margin-left:-3.586545px;}
._2{margin-left:-2.151927px;}
._4{margin-left:-1.016185px;}
._a{width:2.022821px;}
._8{width:3.093983px;}
._9{width:4.290466px;}
._6{width:13.329973px;}
._5{width:23.850470px;}
._7{width:29.887875px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y31{bottom:117.552000px;}
.y30{bottom:146.742000px;}
.y2f{bottom:164.674500px;}
.y2e{bottom:182.607000px;}
.y2d{bottom:201.154500px;}
.y2c{bottom:219.087000px;}
.y2b{bottom:237.019500px;}
.y2a{bottom:254.952000px;}
.y29{bottom:272.886000px;}
.y28{bottom:290.818500px;}
.y27{bottom:308.751000px;}
.y26{bottom:326.683500px;}
.y25{bottom:344.616000px;}
.y24{bottom:363.163500px;}
.y23{bottom:381.096000px;}
.y22{bottom:399.028500px;}
.y21{bottom:416.961000px;}
.y20{bottom:434.895000px;}
.y1f{bottom:452.827500px;}
.y45{bottom:460.780500px;}
.y1e{bottom:470.760000px;}
.y44{bottom:474.229500px;}
.y43{bottom:487.678500px;}
.y1d{bottom:488.692500px;}
.y42{bottom:501.129000px;}
.y1c{bottom:506.625000px;}
.y41{bottom:514.578000px;}
.y1b{bottom:524.557500px;}
.y40{bottom:528.028500px;}
.y3f{bottom:541.477500px;}
.y1a{bottom:542.491500px;}
.y3e{bottom:554.926500px;}
.y19{bottom:560.424000px;}
.y3d{bottom:568.377000px;}
.y18{bottom:578.970000px;}
.y3c{bottom:581.826000px;}
.y3b{bottom:595.275000px;}
.y17{bottom:596.904000px;}
.y3a{bottom:608.725500px;}
.y16{bottom:614.836500px;}
.y39{bottom:622.174500px;}
.y15{bottom:632.769000px;}
.y38{bottom:644.367000px;}
.y14{bottom:650.701500px;}
.y13{bottom:668.634000px;}
.y37{bottom:672.387000px;}
.y12{bottom:686.566500px;}
.y36{bottom:690.319500px;}
.y11{bottom:704.500500px;}
.y35{bottom:708.252000px;}
.y10{bottom:722.433000px;}
.y34{bottom:726.184500px;}
.yf{bottom:740.365500px;}
.y33{bottom:748.824000px;}
.ye{bottom:758.298000px;}
.y32{bottom:776.844000px;}
.yd{bottom:776.845500px;}
.yc{bottom:794.778000px;}
.yb{bottom:812.710500px;}
.ya{bottom:830.643000px;}
.y9{bottom:848.575500px;}
.y8{bottom:866.508000px;}
.y7{bottom:918.042000px;}
.y6{bottom:936.534000px;}
.y5{bottom:955.027500px;}
.y4{bottom:973.521000px;}
.y3{bottom:992.235000px;}
.y2{bottom:1039.309500px;}
.y1{bottom:1081.152000px;}
.h6{height:24.675533px;}
.h7{height:32.900573px;}
.h8{height:33.140573px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h2{height:45.238339px;}
.h5{height:50.483846px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:73.446000px;}
.xa{left:85.401000px;}
.x8{left:88.390500px;}
.x1{left:141.198000px;}
.x4{left:320.142000px;}
.x5{left:361.260000px;}
.x2{left:383.916000px;}
.x6{left:389.601000px;}
.x7{left:392.245500px;}
.x3{left:395.811000px;}
.xb{left:467.967000px;}
.xd{left:482.910000px;}
.xf{left:489.378000px;}
.x11{left:521.091000px;}
.xc{left:587.400000px;}
.x12{left:597.966000px;}
.xe{left:614.418000px;}
.x13{left:634.362000px;}
.x10{left:752.047500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.741348pt;}
.ls3{letter-spacing:2.635446pt;}
.ls4{letter-spacing:2.655711pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:28.357867pt;}
.ws1{word-spacing:-31.880400pt;}
.ws4{word-spacing:-13.283467pt;}
.ws2e{word-spacing:-13.262246pt;}
.ws29{word-spacing:-10.626800pt;}
.ws31{word-spacing:-0.637606pt;}
.ws15{word-spacing:-0.531339pt;}
.ws9{word-spacing:-0.425071pt;}
.ws16{word-spacing:-0.265669pt;}
.ws39{word-spacing:-0.042507pt;}
.ws40{word-spacing:0.000000pt;}
.ws21{word-spacing:0.318803pt;}
.ws14{word-spacing:0.371937pt;}
.ws12{word-spacing:0.637606pt;}
.ws1a{word-spacing:0.956410pt;}
.ws2a{word-spacing:1.594016pt;}
.ws20{word-spacing:2.072221pt;}
.wsb{word-spacing:2.178489pt;}
.ws26{word-spacing:2.656693pt;}
.wse{word-spacing:3.453701pt;}
.ws2d{word-spacing:3.878772pt;}
.ws23{word-spacing:4.091308pt;}
.ws3f{word-spacing:4.250720pt;}
.ws22{word-spacing:4.463245pt;}
.ws2b{word-spacing:4.516379pt;}
.ws3c{word-spacing:4.548270pt;}
.wsd{word-spacing:4.622646pt;}
.ws2c{word-spacing:4.675780pt;}
.ws13{word-spacing:4.728914pt;}
.ws3d{word-spacing:5.058357pt;}
.ws1d{word-spacing:5.100851pt;}
.ws3{word-spacing:5.313387pt;}
.ws3e{word-spacing:5.355907pt;}
.wsc{word-spacing:5.579056pt;}
.ws1b{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.wsf{word-spacing:6.057261pt;}
.ws2f{word-spacing:6.163529pt;}
.ws24{word-spacing:6.588599pt;}
.ws1c{word-spacing:6.801135pt;}
.ws11{word-spacing:7.013670pt;}
.ws3a{word-spacing:7.821325pt;}
.ws25{word-spacing:7.863812pt;}
.ws3b{word-spacing:7.863832pt;}
.ws8{word-spacing:8.607686pt;}
.ws27{word-spacing:9.192159pt;}
.ws28{word-spacing:11.211246pt;}
.ws1f{word-spacing:11.476915pt;}
.ws17{word-spacing:11.848852pt;}
.ws5{word-spacing:12.433325pt;}
.ws7{word-spacing:12.645860pt;}
.ws0{word-spacing:12.752160pt;}
.ws6{word-spacing:13.070931pt;}
.ws10{word-spacing:13.336601pt;}
.ws30{word-spacing:13.921073pt;}
.ws19{word-spacing:13.974207pt;}
.wsa{word-spacing:14.346144pt;}
.ws32{word-spacing:14.792506pt;}
.ws18{word-spacing:15.940160pt;}
.ws36{word-spacing:16.832851pt;}
.ws1e{word-spacing:18.118649pt;}
.ws33{word-spacing:19.595819pt;}
.ws35{word-spacing:22.996395pt;}
.ws34{word-spacing:23.038902pt;}
.ws37{word-spacing:23.591496pt;}
.ws38{word-spacing:25.716856pt;}
._0{margin-left:-10.201728pt;}
._3{margin-left:-4.250709pt;}
._1{margin-left:-3.188040pt;}
._2{margin-left:-1.912824pt;}
._4{margin-left:-0.903276pt;}
._a{width:1.798063pt;}
._8{width:2.750207pt;}
._9{width:3.813747pt;}
._6{width:11.848865pt;}
._5{width:21.200418pt;}
._7{width:26.567000pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:104.490667pt;}
.y30{bottom:130.437333pt;}
.y2f{bottom:146.377333pt;}
.y2e{bottom:162.317333pt;}
.y2d{bottom:178.804000pt;}
.y2c{bottom:194.744000pt;}
.y2b{bottom:210.684000pt;}
.y2a{bottom:226.624000pt;}
.y29{bottom:242.565333pt;}
.y28{bottom:258.505333pt;}
.y27{bottom:274.445333pt;}
.y26{bottom:290.385333pt;}
.y25{bottom:306.325333pt;}
.y24{bottom:322.812000pt;}
.y23{bottom:338.752000pt;}
.y22{bottom:354.692000pt;}
.y21{bottom:370.632000pt;}
.y20{bottom:386.573333pt;}
.y1f{bottom:402.513333pt;}
.y45{bottom:409.582667pt;}
.y1e{bottom:418.453333pt;}
.y44{bottom:421.537333pt;}
.y43{bottom:433.492000pt;}
.y1d{bottom:434.393333pt;}
.y42{bottom:445.448000pt;}
.y1c{bottom:450.333333pt;}
.y41{bottom:457.402667pt;}
.y1b{bottom:466.273333pt;}
.y40{bottom:469.358667pt;}
.y3f{bottom:481.313333pt;}
.y1a{bottom:482.214667pt;}
.y3e{bottom:493.268000pt;}
.y19{bottom:498.154667pt;}
.y3d{bottom:505.224000pt;}
.y18{bottom:514.640000pt;}
.y3c{bottom:517.178667pt;}
.y3b{bottom:529.133333pt;}
.y17{bottom:530.581333pt;}
.y3a{bottom:541.089333pt;}
.y16{bottom:546.521333pt;}
.y39{bottom:553.044000pt;}
.y15{bottom:562.461333pt;}
.y38{bottom:572.770667pt;}
.y14{bottom:578.401333pt;}
.y13{bottom:594.341333pt;}
.y37{bottom:597.677333pt;}
.y12{bottom:610.281333pt;}
.y36{bottom:613.617333pt;}
.y11{bottom:626.222667pt;}
.y35{bottom:629.557333pt;}
.y10{bottom:642.162667pt;}
.y34{bottom:645.497333pt;}
.yf{bottom:658.102667pt;}
.y33{bottom:665.621333pt;}
.ye{bottom:674.042667pt;}
.y32{bottom:690.528000pt;}
.yd{bottom:690.529333pt;}
.yc{bottom:706.469333pt;}
.yb{bottom:722.409333pt;}
.ya{bottom:738.349333pt;}
.y9{bottom:754.289333pt;}
.y8{bottom:770.229333pt;}
.y7{bottom:816.037333pt;}
.y6{bottom:832.474667pt;}
.y5{bottom:848.913333pt;}
.y4{bottom:865.352000pt;}
.y3{bottom:881.986667pt;}
.y2{bottom:923.830667pt;}
.y1{bottom:961.024000pt;}
.h6{height:21.933807pt;}
.h7{height:29.244954pt;}
.h8{height:29.458287pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h2{height:40.211857pt;}
.h5{height:44.874530pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:65.285333pt;}
.xa{left:75.912000pt;}
.x8{left:78.569333pt;}
.x1{left:125.509333pt;}
.x4{left:284.570667pt;}
.x5{left:321.120000pt;}
.x2{left:341.258667pt;}
.x6{left:346.312000pt;}
.x7{left:348.662667pt;}
.x3{left:351.832000pt;}
.xb{left:415.970667pt;}
.xd{left:429.253333pt;}
.xf{left:435.002667pt;}
.x11{left:463.192000pt;}
.xc{left:522.133333pt;}
.x12{left:531.525333pt;}
.xe{left:546.149333pt;}
.x13{left:563.877333pt;}
.x10{left:668.486667pt;}
}




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