
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_961dac5b034962bb8cfaef33.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_2024202071eeaacfa7c8b593.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4974f205020e84643e6a42d0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.080000;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:ff8;src:url('chunks/assets/font_62b755acac7baa0be96e8f10.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:110.738299px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:13.523151px;}
.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:-124.671461px;}
.ws3{word-spacing:-29.042999px;}
.ws4{word-spacing:-27.980819px;}
.ws2{word-spacing:-27.653084px;}
.ws5{word-spacing:-25.433639px;}
.ws7{word-spacing:-25.008097px;}
.ws1{word-spacing:-24.893999px;}
.ws8{word-spacing:-23.000940px;}
.ws6{word-spacing:-16.532819px;}
.ws9{word-spacing:-12.446999px;}
.wsa{word-spacing:0.000000px;}
._e{margin-left:-17.283757px;}
._7{margin-left:-8.747504px;}
._4{margin-left:-7.339461px;}
._6{margin-left:-5.812257px;}
._19{margin-left:-4.738546px;}
._3{margin-left:-3.689953px;}
._1{margin-left:-2.552797px;}
._0{margin-left:-1.238413px;}
._5{width:1.554164px;}
._18{width:3.145534px;}
._10{width:5.184230px;}
._f{width:6.975849px;}
._17{width:8.735414px;}
._11{width:13.700179px;}
._16{width:15.983365px;}
._15{width:17.292507px;}
._c{width:27.925513px;}
._b{width:29.617544px;}
._d{width:30.755499px;}
._a{width:43.738355px;}
._9{width:45.741398px;}
._13{width:50.776192px;}
._12{width:52.031474px;}
._14{width:53.340944px;}
._8{width:165.652002px;}
._2{width:772.921455px;}
.fc3{color:transparent;}
.fc2{color:rgb(26,77,125);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:53.999998px;}
.fs1{font-size:59.984997px;}
.fs3{font-size:65.969996px;}
.fs9{font-size:77.984997px;}
.fsa{font-size:82.079997px;}
.fs7{font-size:107.999996px;}
.fsb{font-size:108.495000px;}
.fs2{font-size:119.969995px;}
.fs8{font-size:125.999995px;}
.fs6{font-size:131.984995px;}
.fs5{font-size:132.164999px;}
.fs4{font-size:161.955002px;}
.fs0{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000008px;}
.y8{bottom:19.286531px;}
.y7{bottom:39.536530px;}
.y2{bottom:46.874792px;}
.y6{bottom:59.786530px;}
.y5c{bottom:93.996896px;}
.y5b{bottom:114.246895px;}
.ye{bottom:116.714789px;}
.y5a{bottom:134.496894px;}
.y4{bottom:160.746689px;}
.yb{bottom:199.014760px;}
.ya{bottom:219.264759px;}
.y9{bottom:239.514758px;}
.y5{bottom:260.889757px;}
.y59{bottom:301.539875px;}
.y58{bottom:319.539875px;}
.y57{bottom:337.539874px;}
.y56{bottom:355.539873px;}
.y55{bottom:373.539872px;}
.y54{bottom:391.539872px;}
.y53{bottom:409.539871px;}
.y52{bottom:427.539870px;}
.y51{bottom:445.539869px;}
.y50{bottom:478.014928px;}
.yc{bottom:538.932470px;}
.y32{bottom:588.132407px;}
.y31{bottom:632.007406px;}
.y37{bottom:695.797531px;}
.y34{bottom:752.839241px;}
.y33{bottom:794.464239px;}
.y36{bottom:844.672465px;}
.y35{bottom:886.297463px;}
.y30{bottom:932.824833px;}
.y43{bottom:974.849539px;}
.y2f{bottom:1071.468603px;}
.y20{bottom:1104.725942px;}
.y2e{bottom:1113.093602px;}
.y1f{bottom:1141.850940px;}
.y2d{bottom:1154.718600px;}
.y1e{bottom:1178.975939px;}
.y2c{bottom:1196.343598px;}
.y1d{bottom:1216.100937px;}
.y2b{bottom:1237.968596px;}
.y1c{bottom:1253.225936px;}
.y2a{bottom:1279.593595px;}
.y29{bottom:1321.218593px;}
.y1b{bottom:1327.475933px;}
.y28{bottom:1362.843591px;}
.y1a{bottom:1364.600931px;}
.y19{bottom:1401.725930px;}
.y27{bottom:1404.468589px;}
.y18{bottom:1438.850928px;}
.y26{bottom:1446.093588px;}
.y25{bottom:1487.718586px;}
.y17{bottom:1513.100925px;}
.y24{bottom:1529.343584px;}
.y16{bottom:1550.225923px;}
.y23{bottom:1570.968583px;}
.y15{bottom:1587.350922px;}
.y22{bottom:1612.593581px;}
.y14{bottom:1624.475920px;}
.y21{bottom:1654.218579px;}
.y13{bottom:1684.846514px;}
.y12{bottom:1730.971512px;}
.y3c{bottom:1827.402476px;}
.y41{bottom:1831.463636px;}
.y3b{bottom:1854.402475px;}
.y40{bottom:1858.463635px;}
.y3f{bottom:1881.563466px;}
.y3e{bottom:1908.563464px;}
.y3d{bottom:1935.563463px;}
.y42{bottom:1962.563462px;}
.y3a{bottom:1974.573026px;}
.y39{bottom:2016.198024px;}
.y38{bottom:2075.805958px;}
.y4f{bottom:2136.730670px;}
.y4e{bottom:2173.855669px;}
.y4d{bottom:2210.980667px;}
.y4c{bottom:2248.105666px;}
.y4b{bottom:2285.230664px;}
.y4a{bottom:2322.355662px;}
.y49{bottom:2359.480661px;}
.y48{bottom:2396.605659px;}
.y47{bottom:2433.730658px;}
.y46{bottom:2518.753607px;}
.y45{bottom:2546.878606px;}
.yd{bottom:2557.979901px;}
.y44{bottom:2575.003605px;}
.y1{bottom:2627.819898px;}
.y11{bottom:2639.971687px;}
.y10{bottom:2696.221685px;}
.yf{bottom:2752.471683px;}
.h16{height:48.383998px;}
.h5{height:49.547608px;}
.h7{height:53.746557px;}
.h8{height:59.109117px;}
.h9{height:62.671497px;}
.h12{height:64.415607px;}
.h13{height:73.543677px;}
.h2{height:93.959996px;}
.he{height:96.767996px;}
.h14{height:97.211520px;}
.h6{height:99.095216px;}
.hf{height:107.493116px;}
.h15{height:109.019605px;}
.h10{height:112.895995px;}
.h11{height:120.634285px;}
.hc{height:120.798809px;}
.hb{height:133.774832px;}
.h3{height:163.199091px;}
.ha{height:228.239990px;}
.hd{height:231.372584px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w1{width:172.799993px;}
.w3{width:233.999990px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x2{left:6.878858px;}
.x17{left:13.938578px;}
.x7{left:15.056651px;}
.x16{left:16.688156px;}
.x14{left:18.412502px;}
.x5{left:25.015868px;}
.x3{left:26.683246px;}
.x6{left:28.143925px;}
.x4{left:30.339689px;}
.xe{left:37.478862px;}
.x1e{left:56.944674px;}
.x1{left:58.679998px;}
.x2b{left:64.704515px;}
.x12{left:89.048443px;}
.x13{left:96.290630px;}
.x1f{left:118.731781px;}
.x8{left:122.511725px;}
.x9{left:139.000005px;}
.x1c{left:180.312398px;}
.x1a{left:248.261278px;}
.x26{left:257.967721px;}
.x25{left:260.920845px;}
.xa{left:262.644537px;}
.x29{left:266.976990px;}
.x27{left:269.463814px;}
.xb{left:279.132817px;}
.x28{left:282.612251px;}
.x10{left:304.911483px;}
.x18{left:313.094210px;}
.xf{left:328.870467px;}
.x2a{left:340.963315px;}
.xc{left:386.324219px;}
.xd{left:402.812500px;}
.x1b{left:501.343265px;}
.x11{left:516.622418px;}
.x20{left:576.845616px;}
.x21{left:590.785068px;}
.x1d{left:595.077427px;}
.x19{left:598.756313px;}
.x15{left:631.468144px;}
.x22{left:634.923738px;}
.x24{left:749.672815px;}
.x23{left:765.053673px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:98.434044pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:12.020579pt;}
.ws0{word-spacing:-110.819076pt;}
.ws3{word-spacing:-25.815999pt;}
.ws4{word-spacing:-24.871839pt;}
.ws2{word-spacing:-24.580519pt;}
.ws5{word-spacing:-22.607679pt;}
.ws7{word-spacing:-22.229420pt;}
.ws1{word-spacing:-22.127999pt;}
.ws8{word-spacing:-20.445280pt;}
.ws6{word-spacing:-14.695839pt;}
.ws9{word-spacing:-11.064000pt;}
.wsa{word-spacing:0.000000pt;}
._e{margin-left:-15.363340pt;}
._7{margin-left:-7.775559pt;}
._4{margin-left:-6.523966pt;}
._6{margin-left:-5.166450pt;}
._19{margin-left:-4.212041pt;}
._3{margin-left:-3.279958pt;}
._1{margin-left:-2.269153pt;}
._0{margin-left:-1.100812pt;}
._5{width:1.381479pt;}
._18{width:2.796030pt;}
._10{width:4.608204pt;}
._f{width:6.200754pt;}
._17{width:7.764812pt;}
._11{width:12.177937pt;}
._16{width:14.207435pt;}
._15{width:15.371118pt;}
._c{width:24.822679pt;}
._b{width:26.326706pt;}
._d{width:27.338222pt;}
._a{width:38.878538pt;}
._9{width:40.659020pt;}
._13{width:45.134393pt;}
._12{width:46.250199pt;}
._14{width:47.414173pt;}
._8{width:147.246224pt;}
._2{width:687.041294pt;}
.fsc{font-size:47.999998pt;}
.fs1{font-size:53.319997pt;}
.fs3{font-size:58.639997pt;}
.fs9{font-size:69.319997pt;}
.fsa{font-size:72.959997pt;}
.fs7{font-size:95.999996pt;}
.fsb{font-size:96.440000pt;}
.fs2{font-size:106.639996pt;}
.fs8{font-size:111.999995pt;}
.fs6{font-size:117.319995pt;}
.fs5{font-size:117.479999pt;}
.fs4{font-size:143.960002pt;}
.fs0{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000007pt;}
.y8{bottom:17.143583pt;}
.y7{bottom:35.143583pt;}
.y2{bottom:41.666481pt;}
.y6{bottom:53.143582pt;}
.y5c{bottom:83.552797pt;}
.y5b{bottom:101.552796pt;}
.ye{bottom:103.746479pt;}
.y5a{bottom:119.552795pt;}
.y4{bottom:142.885946pt;}
.yb{bottom:176.902009pt;}
.ya{bottom:194.902008pt;}
.y9{bottom:212.902007pt;}
.y5{bottom:231.902006pt;}
.y59{bottom:268.035445pt;}
.y58{bottom:284.035444pt;}
.y57{bottom:300.035443pt;}
.y56{bottom:316.035443pt;}
.y55{bottom:332.035442pt;}
.y54{bottom:348.035441pt;}
.y53{bottom:364.035441pt;}
.y52{bottom:380.035440pt;}
.y51{bottom:396.035439pt;}
.y50{bottom:424.902158pt;}
.yc{bottom:479.051084pt;}
.y32{bottom:522.784362pt;}
.y31{bottom:561.784361pt;}
.y37{bottom:618.486694pt;}
.y34{bottom:669.190436pt;}
.y33{bottom:706.190435pt;}
.y36{bottom:750.819969pt;}
.y35{bottom:787.819967pt;}
.y30{bottom:829.177629pt;}
.y43{bottom:866.532924pt;}
.y2f{bottom:952.416536pt;}
.y20{bottom:981.978615pt;}
.y2e{bottom:989.416535pt;}
.y1f{bottom:1014.978614pt;}
.y2d{bottom:1026.416533pt;}
.y1e{bottom:1047.978612pt;}
.y2c{bottom:1063.416532pt;}
.y1d{bottom:1080.978611pt;}
.y2b{bottom:1100.416530pt;}
.y1c{bottom:1113.978610pt;}
.y2a{bottom:1137.416529pt;}
.y29{bottom:1174.416527pt;}
.y1b{bottom:1179.978607pt;}
.y28{bottom:1211.416526pt;}
.y1a{bottom:1212.978605pt;}
.y19{bottom:1245.978604pt;}
.y27{bottom:1248.416524pt;}
.y18{bottom:1278.978603pt;}
.y26{bottom:1285.416522pt;}
.y25{bottom:1322.416521pt;}
.y17{bottom:1344.978600pt;}
.y24{bottom:1359.416519pt;}
.y16{bottom:1377.978599pt;}
.y23{bottom:1396.416518pt;}
.y15{bottom:1410.978597pt;}
.y22{bottom:1433.416516pt;}
.y14{bottom:1443.978596pt;}
.y21{bottom:1470.416515pt;}
.y13{bottom:1497.641346pt;}
.y12{bottom:1538.641344pt;}
.y3c{bottom:1624.357756pt;}
.y41{bottom:1627.967676pt;}
.y3b{bottom:1648.357755pt;}
.y40{bottom:1651.967675pt;}
.y3f{bottom:1672.500858pt;}
.y3e{bottom:1696.500857pt;}
.y3d{bottom:1720.500856pt;}
.y42{bottom:1744.500855pt;}
.y3a{bottom:1755.176023pt;}
.y39{bottom:1792.176021pt;}
.y38{bottom:1845.160851pt;}
.y4f{bottom:1899.316151pt;}
.y4e{bottom:1932.316150pt;}
.y4d{bottom:1965.316149pt;}
.y4c{bottom:1998.316147pt;}
.y4b{bottom:2031.316146pt;}
.y4a{bottom:2064.316144pt;}
.y49{bottom:2097.316143pt;}
.y48{bottom:2130.316142pt;}
.y47{bottom:2163.316140pt;}
.y46{bottom:2238.892096pt;}
.y45{bottom:2263.892094pt;}
.yd{bottom:2273.759912pt;}
.y44{bottom:2288.892093pt;}
.y1{bottom:2335.839910pt;}
.y11{bottom:2346.641500pt;}
.y10{bottom:2396.641498pt;}
.yf{bottom:2446.641496pt;}
.h16{height:43.007998pt;}
.h5{height:44.042318pt;}
.h7{height:47.774718pt;}
.h8{height:52.541437pt;}
.h9{height:55.707997pt;}
.h12{height:57.258318pt;}
.h13{height:65.372157pt;}
.h2{height:83.519997pt;}
.he{height:86.015996pt;}
.h14{height:86.410240pt;}
.h6{height:88.084636pt;}
.hf{height:95.549436pt;}
.h15{height:96.906316pt;}
.h10{height:100.351996pt;}
.h11{height:107.230476pt;}
.hc{height:107.376719pt;}
.hb{height:118.910962pt;}
.h3{height:145.065859pt;}
.ha{height:202.879992pt;}
.hd{height:205.664519pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w1{width:153.599994pt;}
.w3{width:207.999991pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x2{left:6.114540pt;}
.x17{left:12.389847pt;}
.x7{left:13.383690pt;}
.x16{left:14.833917pt;}
.x14{left:16.366668pt;}
.x5{left:22.236327pt;}
.x3{left:23.718441pt;}
.x6{left:25.016823pt;}
.x4{left:26.968612pt;}
.xe{left:33.314544pt;}
.x1e{left:50.617488pt;}
.x1{left:52.159998pt;}
.x2b{left:57.515124pt;}
.x12{left:79.154172pt;}
.x13{left:85.591671pt;}
.x1f{left:105.539361pt;}
.x8{left:108.899311pt;}
.x9{left:123.555560pt;}
.x1c{left:160.277688pt;}
.x1a{left:220.676691pt;}
.x26{left:229.304640pt;}
.x25{left:231.929640pt;}
.xa{left:233.461811pt;}
.x29{left:237.312880pt;}
.x27{left:239.523390pt;}
.xb{left:248.118060pt;}
.x28{left:251.210890pt;}
.x10{left:271.032430pt;}
.x18{left:278.305964pt;}
.xf{left:292.329304pt;}
.x2a{left:303.078502pt;}
.xc{left:343.399306pt;}
.xd{left:358.055555pt;}
.x1b{left:445.638458pt;}
.x11{left:459.219927pt;}
.x20{left:512.751658pt;}
.x21{left:525.142283pt;}
.x1d{left:528.957713pt;}
.x19{left:532.227833pt;}
.x15{left:561.305017pt;}
.x22{left:564.376656pt;}
.x24{left:666.375835pt;}
.x23{left:680.047710pt;}
}




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