
    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_b0020aad7d3c5bf8ec6ffa85.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_f8687a77f54a83ccfa8a2609.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:40.289952px;}
.ls8{letter-spacing:46.563071px;}
.ls7{letter-spacing:108.426925px;}
.ls2{letter-spacing:108.509178px;}
.ls3{letter-spacing:108.509209px;}
.ls1{letter-spacing:108.509240px;}
.ls5{letter-spacing:109.167319px;}
.ls4{letter-spacing:127.181856px;}
.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:-62.225381px;}
.wsa{word-spacing:-46.669036px;}
.ws3{word-spacing:-38.890863px;}
.ws38{word-spacing:-2.358724px;}
.ws37{word-spacing:-1.965603px;}
.ws16{word-spacing:-1.404002px;}
.ws39{word-spacing:-0.982802px;}
.ws36{word-spacing:-0.561601px;}
.ws20{word-spacing:-0.550138px;}
.ws22{word-spacing:-0.505441px;}
.ws2d{word-spacing:-0.483840px;}
.ws1f{word-spacing:-0.421201px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:0.421201px;}
.ws21{word-spacing:0.505441px;}
.ws1b{word-spacing:0.842401px;}
.ws9{word-spacing:0.982802px;}
.ws2a{word-spacing:0.982854px;}
.ws31{word-spacing:2.246404px;}
.wsb{word-spacing:2.386804px;}
.wsc{word-spacing:2.506432px;}
.wsd{word-spacing:2.929772px;}
.wsf{word-spacing:3.790806px;}
.ws11{word-spacing:4.021119px;}
.ws12{word-spacing:4.171839px;}
.wse{word-spacing:4.691868px;}
.ws10{word-spacing:5.194808px;}
.ws2{word-spacing:6.037210px;}
.ws1c{word-spacing:6.598811px;}
.ws1d{word-spacing:7.862413px;}
.ws17{word-spacing:9.406815px;}
.ws15{word-spacing:12.074420px;}
.ws13{word-spacing:12.214820px;}
.ws14{word-spacing:12.393056px;}
.ws28{word-spacing:16.848027px;}
.ws27{word-spacing:17.504481px;}
.ws29{word-spacing:17.830829px;}
.ws1a{word-spacing:20.638833px;}
.ws35{word-spacing:23.306438px;}
.ws34{word-spacing:23.446838px;}
.ws2c{word-spacing:36.509572px;}
.ws1e{word-spacing:36.925260px;}
.ws19{word-spacing:37.486861px;}
.ws2b{word-spacing:37.659609px;}
.ws18{word-spacing:38.087394px;}
.ws4{word-spacing:40.294865px;}
.ws24{word-spacing:52.930886px;}
.ws23{word-spacing:54.249858px;}
.ws25{word-spacing:54.334888px;}
.ws30{word-spacing:66.830508px;}
.ws2e{word-spacing:69.778913px;}
.ws2f{word-spacing:71.042515px;}
.ws5{word-spacing:79.606929px;}
.ws6{word-spacing:80.014410px;}
.ws7{word-spacing:80.053922px;}
.ws8{word-spacing:80.449330px;}
.ws33{word-spacing:100.526563px;}
.ws32{word-spacing:100.666963px;}
._7{margin-left:-2.496240px;}
._1{margin-left:-1.078558px;}
._0{width:1.232638px;}
._2{width:2.773435px;}
._19{width:4.043527px;}
._6{width:37.150192px;}
._17{width:38.558950px;}
._c{width:40.250221px;}
._5{width:41.794624px;}
._8{width:42.868943px;}
._9{width:45.106912px;}
._3{width:46.332075px;}
._10{width:47.876478px;}
._b{width:49.732645px;}
._a{width:52.228885px;}
._14{width:57.002492px;}
._f{width:60.793830px;}
._18{width:63.478408px;}
._11{width:74.607239px;}
._e{width:77.456282px;}
._d{width:78.795492px;}
._13{width:93.085351px;}
._12{width:94.304309px;}
._16{width:108.375296px;}
._15{width:110.001930px;}
._4{width:121.151717px;}
.fc1{color:rgb(0,151,167);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:119.520458px;}
.fs2{font-size:140.400227px;}
.fs0{font-size:154.079720px;}
.fs5{font-size:161.279997px;}
.fs4{font-size:168.480273px;}
.fs1{font-size:224.640364px;}
.fs3{font-size:252.720409px;}
.y0{bottom:0.000000px;}
.y29{bottom:133.564203px;}
.y28{bottom:169.384076px;}
.y31{bottom:175.502604px;}
.y37{bottom:187.019812px;}
.y3d{bottom:195.657732px;}
.y4f{bottom:196.559229px;}
.y18{bottom:207.894737px;}
.y30{bottom:217.612402px;}
.y49{bottom:226.627375px;}
.ye{bottom:235.796538px;}
.y43{bottom:239.944127px;}
.y27{bottom:241.023873px;}
.y17{bottom:243.714661px;}
.y36{bottom:271.256513px;}
.y42{bottom:275.763999px;}
.y16{bottom:279.534534px;}
.y3c{bottom:292.491387px;}
.y48{bottom:298.267120px;}
.y2f{bottom:301.866258px;}
.y1e{bottom:309.235878px;}
.yd{bottom:311.583872px;}
.y26{bottom:312.663618px;}
.y15{bottom:315.354407px;}
.y8{bottom:316.074255px;}
.y4e{bottom:332.458848px;}
.y2e{bottom:343.976056px;}
.y1d{bottom:344.884405px;}
.y41{bottom:347.215244px;}
.y35{bottom:355.493265px;}
.y7{bottom:364.491082px;}
.y47{bottom:369.906866px;}
.y25{bottom:384.114862px;}
.y14{bottom:386.822806px;}
.yc{bottom:387.542602px;}
.y3b{bottom:389.513543px;}
.y4d{bottom:394.380927px;}
.y6{bottom:412.925013px;}
.y1c{bottom:416.524150px;}
.y40{bottom:418.854989px;}
.y24{bottom:419.934735px;}
.y13{bottom:422.642679px;}
.y2d{bottom:428.212756px;}
.y34{bottom:439.747068px;}
.y46{bottom:441.358110px;}
.y1b{bottom:452.344023px;}
.y3f{bottom:454.674887px;}
.y12{bottom:458.462552px;}
.y5{bottom:461.341841px;}
.yb{bottom:463.312807px;}
.y2c{bottom:470.339658px;}
.y3a{bottom:486.364353px;}
.y1a{bottom:488.163922px;}
.y23{bottom:491.574506px;}
.y11{bottom:494.282424px;}
.y4c{bottom:510.649903px;}
.y2b{bottom:512.466586px;}
.y45{bottom:512.997881px;}
.y22{bottom:527.394405px;}
.y33{bottom:534.421256px;}
.ya{bottom:539.100140px;}
.y19{bottom:561.428418px;}
.y3e{bottom:563.752435px;}
.y1f{bottom:565.377201px;}
.y10{bottom:567.536653px;}
.y4b{bottom:568.791207px;}
.y39{bottom:573.480353px;}
.y2{bottom:575.999351px;}
.y2a{bottom:591.485637px;}
.y21{bottom:600.669189px;}
.y32{bottom:616.135160px;}
.y44{bottom:622.078860px;}
.y1{bottom:622.268420px;}
.y4{bottom:641.712965px;}
.y38{bottom:689.927549px;}
.y4a{bottom:690.112640px;}
.y20{bottom:693.166773px;}
.y9{bottom:706.678916px;}
.yf{bottom:706.864006px;}
.y3{bottom:709.198312px;}
.h5{height:102.626533px;}
.h4{height:105.574390px;}
.h2{height:115.860727px;}
.h8{height:121.274997px;}
.h7{height:126.689268px;}
.h3{height:168.919024px;}
.h6{height:190.033902px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x14{left:60.115703px;}
.xb{left:91.438390px;}
.x9{left:93.412767px;}
.xd{left:105.300174px;}
.x17{left:109.989320px;}
.x16{left:112.128229px;}
.x5{left:123.844250px;}
.x10{left:133.382813px;}
.x3{left:140.208280px;}
.xe{left:142.371186px;}
.xc{left:143.999352px;}
.xa{left:145.987447px;}
.x1b{left:170.461509px;}
.x15{left:175.860202px;}
.x8{left:178.742926px;}
.x11{left:196.563754px;}
.x12{left:207.001222px;}
.x19{left:219.958070px;}
.x18{left:223.745734px;}
.xf{left:225.185378px;}
.x7{left:233.994669px;}
.x1{left:262.623932px;}
.x13{left:270.174466px;}
.x1a{left:283.148474px;}
.x1c{left:319.684748px;}
.x6{left:356.406118px;}
.x4{left:447.470871px;}
.x2{left:454.678140px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:35.813291pt;}
.ls8{letter-spacing:41.389396pt;}
.ls7{letter-spacing:96.379489pt;}
.ls2{letter-spacing:96.452602pt;}
.ls3{letter-spacing:96.452630pt;}
.ls1{letter-spacing:96.452658pt;}
.ls5{letter-spacing:97.037617pt;}
.ls4{letter-spacing:113.050538pt;}
.ws1{word-spacing:-55.311450pt;}
.wsa{word-spacing:-41.483587pt;}
.ws3{word-spacing:-34.569656pt;}
.ws38{word-spacing:-2.096643pt;}
.ws37{word-spacing:-1.747203pt;}
.ws16{word-spacing:-1.248002pt;}
.ws39{word-spacing:-0.873601pt;}
.ws36{word-spacing:-0.499201pt;}
.ws20{word-spacing:-0.489012pt;}
.ws22{word-spacing:-0.449281pt;}
.ws2d{word-spacing:-0.430080pt;}
.ws1f{word-spacing:-0.374401pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:0.374401pt;}
.ws21{word-spacing:0.449281pt;}
.ws1b{word-spacing:0.748801pt;}
.ws9{word-spacing:0.873601pt;}
.ws2a{word-spacing:0.873648pt;}
.ws31{word-spacing:1.996803pt;}
.wsb{word-spacing:2.121603pt;}
.wsc{word-spacing:2.227939pt;}
.wsd{word-spacing:2.604242pt;}
.wsf{word-spacing:3.369605pt;}
.ws11{word-spacing:3.574328pt;}
.ws12{word-spacing:3.708301pt;}
.wse{word-spacing:4.170550pt;}
.ws10{word-spacing:4.617607pt;}
.ws2{word-spacing:5.366409pt;}
.ws1c{word-spacing:5.865610pt;}
.ws1d{word-spacing:6.988811pt;}
.ws17{word-spacing:8.361614pt;}
.ws15{word-spacing:10.732817pt;}
.ws13{word-spacing:10.857618pt;}
.ws14{word-spacing:11.016050pt;}
.ws28{word-spacing:14.976024pt;}
.ws27{word-spacing:15.559539pt;}
.ws29{word-spacing:15.849626pt;}
.ws1a{word-spacing:18.345630pt;}
.ws35{word-spacing:20.716834pt;}
.ws34{word-spacing:20.841634pt;}
.ws2c{word-spacing:32.452953pt;}
.ws1e{word-spacing:32.822453pt;}
.ws19{word-spacing:33.321654pt;}
.ws2b{word-spacing:33.475208pt;}
.ws18{word-spacing:33.855462pt;}
.ws4{word-spacing:35.817658pt;}
.ws24{word-spacing:47.049676pt;}
.ws23{word-spacing:48.222096pt;}
.ws25{word-spacing:48.297678pt;}
.ws30{word-spacing:59.404896pt;}
.ws2e{word-spacing:62.025700pt;}
.ws2f{word-spacing:63.148902pt;}
.ws5{word-spacing:70.761715pt;}
.ws6{word-spacing:71.123920pt;}
.ws7{word-spacing:71.159042pt;}
.ws8{word-spacing:71.510516pt;}
.ws33{word-spacing:89.356945pt;}
.ws32{word-spacing:89.481745pt;}
._7{margin-left:-2.218880pt;}
._1{margin-left:-0.958718pt;}
._0{width:1.095678pt;}
._2{width:2.465276pt;}
._19{width:3.594246pt;}
._6{width:33.022393pt;}
._17{width:34.274622pt;}
._c{width:35.777975pt;}
._5{width:37.150777pt;}
._8{width:38.105727pt;}
._9{width:40.095033pt;}
._3{width:41.184067pt;}
._10{width:42.556869pt;}
._b{width:44.206795pt;}
._a{width:46.425675pt;}
._14{width:50.668882pt;}
._f{width:54.038960pt;}
._18{width:56.425252pt;}
._11{width:66.317546pt;}
._e{width:68.850028pt;}
._d{width:70.040437pt;}
._13{width:82.742534pt;}
._12{width:83.826052pt;}
._16{width:96.333596pt;}
._15{width:97.779494pt;}
._4{width:107.690415pt;}
.fs6{font-size:106.240407pt;}
.fs2{font-size:124.800202pt;}
.fs0{font-size:136.959751pt;}
.fs5{font-size:143.359997pt;}
.fs4{font-size:149.760243pt;}
.fs1{font-size:199.680323pt;}
.fs3{font-size:224.640364pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:118.723736pt;}
.y28{bottom:150.563623pt;}
.y31{bottom:156.002315pt;}
.y37{bottom:166.239833pt;}
.y3d{bottom:173.917984pt;}
.y4f{bottom:174.719315pt;}
.y18{bottom:184.795321pt;}
.y30{bottom:193.433247pt;}
.y49{bottom:201.446556pt;}
.ye{bottom:209.596923pt;}
.y43{bottom:213.283668pt;}
.y27{bottom:214.243443pt;}
.y17{bottom:216.635255pt;}
.y36{bottom:241.116900pt;}
.y42{bottom:245.123555pt;}
.y16{bottom:248.475141pt;}
.y3c{bottom:259.992344pt;}
.y48{bottom:265.126329pt;}
.y2f{bottom:268.325563pt;}
.y1e{bottom:274.876336pt;}
.yd{bottom:276.963441pt;}
.y26{bottom:277.923216pt;}
.y15{bottom:280.315028pt;}
.y8{bottom:280.954893pt;}
.y4e{bottom:295.518976pt;}
.y2e{bottom:305.756495pt;}
.y1d{bottom:306.563916pt;}
.y41{bottom:308.635772pt;}
.y35{bottom:315.994013pt;}
.y7{bottom:323.992073pt;}
.y47{bottom:328.806103pt;}
.y25{bottom:341.435433pt;}
.y14{bottom:343.842495pt;}
.yc{bottom:344.482313pt;}
.y3b{bottom:346.234260pt;}
.y4d{bottom:350.560824pt;}
.y6{bottom:367.044456pt;}
.y1c{bottom:370.243689pt;}
.y40{bottom:372.315545pt;}
.y24{bottom:373.275320pt;}
.y13{bottom:375.682381pt;}
.y2d{bottom:380.633561pt;}
.y34{bottom:390.886283pt;}
.y46{bottom:392.318320pt;}
.y1b{bottom:402.083576pt;}
.y3f{bottom:404.155455pt;}
.y12{bottom:407.522268pt;}
.y5{bottom:410.081636pt;}
.yb{bottom:411.833606pt;}
.y2c{bottom:418.079696pt;}
.y3a{bottom:432.323869pt;}
.y1a{bottom:433.923486pt;}
.y23{bottom:436.955117pt;}
.y11{bottom:439.362155pt;}
.y4c{bottom:453.911025pt;}
.y2b{bottom:455.525854pt;}
.y45{bottom:455.998117pt;}
.y22{bottom:468.795027pt;}
.y33{bottom:475.041117pt;}
.ya{bottom:479.200125pt;}
.y19{bottom:499.047482pt;}
.y3e{bottom:501.113276pt;}
.y1f{bottom:502.557512pt;}
.y10{bottom:504.477025pt;}
.y4b{bottom:505.592184pt;}
.y39{bottom:509.760313pt;}
.y2{bottom:511.999423pt;}
.y2a{bottom:525.765010pt;}
.y21{bottom:533.928168pt;}
.y32{bottom:547.675698pt;}
.y44{bottom:552.958987pt;}
.y1{bottom:553.127485pt;}
.y4{bottom:570.411525pt;}
.y38{bottom:613.268933pt;}
.y4a{bottom:613.433458pt;}
.y20{bottom:616.148243pt;}
.y9{bottom:628.159036pt;}
.yf{bottom:628.323561pt;}
.y3{bottom:630.398499pt;}
.h5{height:91.223585pt;}
.h4{height:93.843902pt;}
.h2{height:102.987313pt;}
.h8{height:107.799998pt;}
.h7{height:112.612682pt;}
.h3{height:150.150243pt;}
.h6{height:168.919024pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x14{left:53.436181pt;}
.xb{left:81.278569pt;}
.x9{left:83.033570pt;}
.xd{left:93.600155pt;}
.x17{left:97.768285pt;}
.x16{left:99.669537pt;}
.x5{left:110.083778pt;}
.x10{left:118.562500pt;}
.x3{left:124.629582pt;}
.xe{left:126.552165pt;}
.xc{left:127.999424pt;}
.xa{left:129.766620pt;}
.x1b{left:151.521341pt;}
.x15{left:156.320179pt;}
.x8{left:158.882601pt;}
.x11{left:174.723337pt;}
.x12{left:184.001086pt;}
.x19{left:195.518284pt;}
.x18{left:198.885097pt;}
.xf{left:200.164781pt;}
.x7{left:207.995261pt;}
.x1{left:233.443496pt;}
.x13{left:240.155081pt;}
.x1a{left:251.687533pt;}
.x1c{left:284.164221pt;}
.x6{left:316.805438pt;}
.x4{left:397.751885pt;}
.x2{left:404.158346pt;}
}




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