
    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_e8e065ddae5ff9e0a612166b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_e5bb69afcd49fd9827431e4d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.373200;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_450f04018fa66f796872f4eb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_b011e2f85de36e71d936c529.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_8fe293a6d872630a4c9af57e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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:-7.470000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002706px;}
.ls3{letter-spacing:27.639245px;}
.ls5{letter-spacing:27.640178px;}
.ls1{letter-spacing:27.645245px;}
.ls4{letter-spacing:27.646178px;}
.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:-4.771640px;}
.wsa{word-spacing:-4.706186px;}
.ws7{word-spacing:-0.065455px;}
.wsf{word-spacing:-0.059776px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:5.624884px;}
.ws14{word-spacing:5.684660px;}
.wsd{word-spacing:5.766550px;}
.ws5{word-spacing:6.159278px;}
.ws6{word-spacing:6.224732px;}
.ws11{word-spacing:12.282741px;}
.ws13{word-spacing:12.292247px;}
.ws12{word-spacing:12.292833px;}
.wsc{word-spacing:12.390450px;}
.ws2{word-spacing:21.818094px;}
.ws3{word-spacing:21.877870px;}
.ws9{word-spacing:23.890929px;}
.ws1{word-spacing:23.956384px;}
.ws8{word-spacing:27.577590px;}
.wse{word-spacing:31.941845px;}
.ws0{word-spacing:37.805018px;}
._e{margin-left:-29.117273px;}
._b{margin-left:-6.349096px;}
._4{margin-left:-5.236368px;}
._1{margin-left:-3.305357px;}
._2{margin-left:-2.029093px;}
._f{margin-left:-1.022741px;}
._3{width:1.853044px;}
._0{width:3.202064px;}
._6{width:5.470723px;}
._7{width:7.912906px;}
._c{width:10.996373px;}
._a{width:21.016725px;}
._5{width:22.837857px;}
._d{width:27.015293px;}
._8{width:29.258206px;}
._9{width:32.007299px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:transparent;}
.fc0{color:rgb(0,102,189);}
.fs3{font-size:35.865600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:103.292400px;}
.y3f{bottom:-2991.820185px;}
.y0{bottom:0.000000px;}
.y6{bottom:8.218500px;}
.y35{bottom:8.220000px;}
.y1e{bottom:24.060000px;}
.y4b{bottom:32.811000px;}
.y38{bottom:41.950500px;}
.y1d{bottom:43.486500px;}
.y4a{bottom:55.227000px;}
.y37{bottom:65.860500px;}
.y1c{bottom:74.580000px;}
.y49{bottom:77.643000px;}
.y56{bottom:78.210000px;}
.y5{bottom:81.318000px;}
.y1b{bottom:94.006500px;}
.y55{bottom:98.011500px;}
.y48{bottom:98.025000px;}
.y4{bottom:105.691500px;}
.y42{bottom:109.789500px;}
.y2d{bottom:111.504000px;}
.y26{bottom:112.411500px;}
.y1a{bottom:117.918000px;}
.y54{bottom:118.558500px;}
.y34{bottom:126.759000px;}
.y47{bottom:134.608500px;}
.y2c{bottom:135.414000px;}
.y52{bottom:135.804000px;}
.y25{bottom:136.323000px;}
.y3{bottom:136.380000px;}
.y19{bottom:137.344500px;}
.y53{bottom:138.360000px;}
.y33{bottom:150.669000px;}
.y43{bottom:152.310000px;}
.y51{bottom:156.351000px;}
.y46{bottom:157.024500px;}
.y2b{bottom:159.324000px;}
.y24{bottom:160.233000px;}
.y5b{bottom:161.095500px;}
.y18{bottom:161.254500px;}
.y5f{bottom:174.546000px;}
.y32{bottom:174.579000px;}
.y50{bottom:176.152500px;}
.y45{bottom:179.440500px;}
.y17{bottom:180.682500px;}
.y2a{bottom:183.234000px;}
.y5a{bottom:183.511500px;}
.y23{bottom:184.143000px;}
.y40{bottom:194.829000px;}
.y5e{bottom:195.094500px;}
.y31{bottom:196.621500px;}
.y4f{bottom:196.701000px;}
.y44{bottom:199.822500px;}
.y59{bottom:204.060000px;}
.y16{bottom:204.268500px;}
.y29{bottom:205.276500px;}
.y22{bottom:208.053000px;}
.y5d{bottom:214.894500px;}
.y4e{bottom:216.501000px;}
.y30{bottom:217.917000px;}
.y58{bottom:223.861500px;}
.y28{bottom:226.572000px;}
.y21{bottom:231.964500px;}
.y4d{bottom:237.049500px;}
.y5c{bottom:237.310500px;}
.y41{bottom:237.349500px;}
.y2f{bottom:241.827000px;}
.yc{bottom:242.505000px;}
.y57{bottom:246.277500px;}
.y27{bottom:248.614500px;}
.y20{bottom:254.005500px;}
.y4c{bottom:256.849500px;}
.y2e{bottom:265.737000px;}
.yb{bottom:266.415000px;}
.y1f{bottom:275.301000px;}
.y3a{bottom:279.868500px;}
.y2{bottom:280.221000px;}
.ya{bottom:290.325000px;}
.y1{bottom:308.152500px;}
.y9{bottom:312.043500px;}
.y36{bottom:315.924000px;}
.y39{bottom:325.936500px;}
.y8{bottom:337.072500px;}
.y7{bottom:356.499000px;}
.y15{bottom:3024.098685px;}
.y14{bottom:3043.525185px;}
.y13{bottom:3074.618685px;}
.y12{bottom:3094.045185px;}
.y3d{bottom:3109.828185px;}
.y11{bottom:3117.956685px;}
.y10{bottom:3137.383185px;}
.y3e{bottom:3152.348685px;}
.yf{bottom:3161.293185px;}
.ye{bottom:3180.721185px;}
.y3b{bottom:3194.867685px;}
.yd{bottom:3204.307185px;}
.y3c{bottom:3237.388185px;}
.h5{height:25.679770px;}
.hd{height:37.355700px;}
.hb{height:37.361700px;}
.hc{height:41.484266px;}
.h7{height:41.614950px;}
.h6{height:41.620950px;}
.h4{height:42.799330px;}
.he{height:44.831700px;}
.h9{height:45.425492px;}
.ha{height:46.145493px;}
.h3{height:46.865494px;}
.h8{height:49.090950px;}
.h2{height:73.957358px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x15{left:-2338.354185px;}
.x0{left:0.000000px;}
.x7{left:12.756000px;}
.xf{left:28.347000px;}
.x10{left:40.902000px;}
.x8{left:42.519000px;}
.xd{left:49.254000px;}
.x9{left:55.074000px;}
.x12{left:58.861500px;}
.x16{left:67.366500px;}
.xe{left:70.165500px;}
.x11{left:88.690500px;}
.x1{left:137.254500px;}
.x2{left:149.454000px;}
.x4{left:173.647500px;}
.x5{left:262.899000px;}
.x3{left:270.823500px;}
.x17{left:656.752500px;}
.x6{left:661.684500px;}
.xa{left:3042.557685px;}
.xb{left:3049.292685px;}
.x13{left:3058.900185px;}
.x14{left:3067.405185px;}
.xc{left:3070.204185px;}
@media print{
.v1{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002405pt;}
.ls3{letter-spacing:24.568218pt;}
.ls5{letter-spacing:24.569047pt;}
.ls1{letter-spacing:24.573552pt;}
.ls4{letter-spacing:24.574380pt;}
.wsb{word-spacing:-4.241458pt;}
.wsa{word-spacing:-4.183276pt;}
.ws7{word-spacing:-0.058182pt;}
.wsf{word-spacing:-0.053134pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:4.999897pt;}
.ws14{word-spacing:5.053031pt;}
.wsd{word-spacing:5.125822pt;}
.ws5{word-spacing:5.474914pt;}
.ws6{word-spacing:5.533096pt;}
.ws11{word-spacing:10.917992pt;}
.ws13{word-spacing:10.926441pt;}
.ws12{word-spacing:10.926962pt;}
.wsc{word-spacing:11.013734pt;}
.ws2{word-spacing:19.393861pt;}
.ws3{word-spacing:19.446995pt;}
.ws9{word-spacing:21.236381pt;}
.ws1{word-spacing:21.294563pt;}
.ws8{word-spacing:24.513413pt;}
.wse{word-spacing:28.392751pt;}
.ws0{word-spacing:33.604461pt;}
._e{margin-left:-25.882020pt;}
._b{margin-left:-5.643641pt;}
._4{margin-left:-4.654549pt;}
._1{margin-left:-2.938095pt;}
._2{margin-left:-1.803638pt;}
._f{margin-left:-0.909103pt;}
._3{width:1.647150pt;}
._0{width:2.846279pt;}
._6{width:4.862865pt;}
._7{width:7.033695pt;}
._c{width:9.774554pt;}
._a{width:18.681533pt;}
._5{width:20.300317pt;}
._d{width:24.013594pt;}
._8{width:26.007294pt;}
._9{width:28.450933pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:91.815467pt;}
.y3f{bottom:-2659.395720pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:7.305333pt;}
.y35{bottom:7.306667pt;}
.y1e{bottom:21.386667pt;}
.y4b{bottom:29.165333pt;}
.y38{bottom:37.289333pt;}
.y1d{bottom:38.654667pt;}
.y4a{bottom:49.090667pt;}
.y37{bottom:58.542667pt;}
.y1c{bottom:66.293333pt;}
.y49{bottom:69.016000pt;}
.y56{bottom:69.520000pt;}
.y5{bottom:72.282667pt;}
.y1b{bottom:83.561333pt;}
.y55{bottom:87.121333pt;}
.y48{bottom:87.133333pt;}
.y4{bottom:93.948000pt;}
.y42{bottom:97.590667pt;}
.y2d{bottom:99.114667pt;}
.y26{bottom:99.921333pt;}
.y1a{bottom:104.816000pt;}
.y54{bottom:105.385333pt;}
.y34{bottom:112.674667pt;}
.y47{bottom:119.652000pt;}
.y2c{bottom:120.368000pt;}
.y52{bottom:120.714667pt;}
.y25{bottom:121.176000pt;}
.y3{bottom:121.226667pt;}
.y19{bottom:122.084000pt;}
.y53{bottom:122.986667pt;}
.y33{bottom:133.928000pt;}
.y43{bottom:135.386667pt;}
.y51{bottom:138.978667pt;}
.y46{bottom:139.577333pt;}
.y2b{bottom:141.621333pt;}
.y24{bottom:142.429333pt;}
.y5b{bottom:143.196000pt;}
.y18{bottom:143.337333pt;}
.y5f{bottom:155.152000pt;}
.y32{bottom:155.181333pt;}
.y50{bottom:156.580000pt;}
.y45{bottom:159.502667pt;}
.y17{bottom:160.606667pt;}
.y2a{bottom:162.874667pt;}
.y5a{bottom:163.121333pt;}
.y23{bottom:163.682667pt;}
.y40{bottom:173.181333pt;}
.y5e{bottom:173.417333pt;}
.y31{bottom:174.774667pt;}
.y4f{bottom:174.845333pt;}
.y44{bottom:177.620000pt;}
.y59{bottom:181.386667pt;}
.y16{bottom:181.572000pt;}
.y29{bottom:182.468000pt;}
.y22{bottom:184.936000pt;}
.y5d{bottom:191.017333pt;}
.y4e{bottom:192.445333pt;}
.y30{bottom:193.704000pt;}
.y58{bottom:198.988000pt;}
.y28{bottom:201.397333pt;}
.y21{bottom:206.190667pt;}
.y4d{bottom:210.710667pt;}
.y5c{bottom:210.942667pt;}
.y41{bottom:210.977333pt;}
.y2f{bottom:214.957333pt;}
.yc{bottom:215.560000pt;}
.y57{bottom:218.913333pt;}
.y27{bottom:220.990667pt;}
.y20{bottom:225.782667pt;}
.y4c{bottom:228.310667pt;}
.y2e{bottom:236.210667pt;}
.yb{bottom:236.813333pt;}
.y1f{bottom:244.712000pt;}
.y3a{bottom:248.772000pt;}
.y2{bottom:249.085333pt;}
.ya{bottom:258.066667pt;}
.y1{bottom:273.913333pt;}
.y9{bottom:277.372000pt;}
.y36{bottom:280.821333pt;}
.y39{bottom:289.721333pt;}
.y8{bottom:299.620000pt;}
.y7{bottom:316.888000pt;}
.y15{bottom:2688.087720pt;}
.y14{bottom:2705.355720pt;}
.y13{bottom:2732.994387pt;}
.y12{bottom:2750.262387pt;}
.y3d{bottom:2764.291720pt;}
.y11{bottom:2771.517053pt;}
.y10{bottom:2788.785053pt;}
.y3e{bottom:2802.087720pt;}
.yf{bottom:2810.038387pt;}
.ye{bottom:2827.307720pt;}
.y3b{bottom:2839.882387pt;}
.yd{bottom:2848.273053pt;}
.y3c{bottom:2877.678387pt;}
.h5{height:22.826462pt;}
.hd{height:33.205067pt;}
.hb{height:33.210400pt;}
.hc{height:36.874903pt;}
.h7{height:36.991067pt;}
.h6{height:36.996400pt;}
.h4{height:38.043849pt;}
.he{height:39.850400pt;}
.h9{height:40.378215pt;}
.ha{height:41.018216pt;}
.h3{height:41.658217pt;}
.h8{height:43.636400pt;}
.h2{height:65.739874pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x15{left:-2078.537053pt;}
.x0{left:0.000000pt;}
.x7{left:11.338667pt;}
.xf{left:25.197333pt;}
.x10{left:36.357333pt;}
.x8{left:37.794667pt;}
.xd{left:43.781333pt;}
.x9{left:48.954667pt;}
.x12{left:52.321333pt;}
.x16{left:59.881333pt;}
.xe{left:62.369333pt;}
.x11{left:78.836000pt;}
.x1{left:122.004000pt;}
.x2{left:132.848000pt;}
.x4{left:154.353333pt;}
.x5{left:233.688000pt;}
.x3{left:240.732000pt;}
.x17{left:583.780000pt;}
.x6{left:588.164000pt;}
.xa{left:2704.495720pt;}
.xb{left:2710.482387pt;}
.x13{left:2719.022387pt;}
.x14{left:2726.582387pt;}
.xc{left:2729.070387pt;}
}




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