
    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_5ecbdc5af39f373575843056.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_4890f5a704cc73a8a16c2d94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_1afd995fd5f4fd594bb939d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.860840;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_308f4e789756d969b575f0e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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;}
.v1{vertical-align:5.209437px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-46.115750px;}
.ws6{word-spacing:-42.046414px;}
.ws3{word-spacing:-34.931955px;}
.ws1{word-spacing:-31.639086px;}
.ws0{word-spacing:-31.164081px;}
.ws5{word-spacing:-27.122123px;}
.ws2{word-spacing:-21.133142px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-18.279901px;}
._3{margin-left:-15.436317px;}
._8{margin-left:-13.012875px;}
._b{margin-left:-10.150290px;}
._1{margin-left:-7.283416px;}
._4{margin-left:-5.585914px;}
._2{margin-left:-3.728653px;}
._0{margin-left:-1.908751px;}
._7{width:1.181568px;}
._c{width:10.554361px;}
._d{width:11.610363px;}
._a{width:18.170030px;}
._9{width:19.899512px;}
._5{width:434.370897px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:81.354652px;}
.fs13{font-size:111.120098px;}
.fs11{font-size:112.171785px;}
.fs2{font-size:119.969995px;}
.fs5{font-size:120.014995px;}
.fs12{font-size:125.424647px;}
.fs10{font-size:125.999995px;}
.fs4{font-size:139.949994px;}
.fs3{font-size:142.649999px;}
.fsa{font-size:154.515428px;}
.fs9{font-size:160.476802px;}
.fs7{font-size:162.013842px;}
.fsf{font-size:171.849581px;}
.fs8{font-size:176.634489px;}
.fse{font-size:185.985001px;}
.fsd{font-size:193.769996px;}
.fs1{font-size:203.985001px;}
.fsb{font-size:204.700799px;}
.fs0{font-size:239.984999px;}
.fsc{font-size:413.954974px;}
.y0{bottom:0.000000px;}
.y30{bottom:29.249999px;}
.y4{bottom:33.749999px;}
.y2{bottom:38.249998px;}
.y26{bottom:52.874998px;}
.y43{bottom:85.519054px;}
.y3f{bottom:85.802701px;}
.y3e{bottom:110.215199px;}
.y41{bottom:116.423172px;}
.y42{bottom:131.152241px;}
.y3d{bottom:134.627698px;}
.y59{bottom:135.744616px;}
.y3c{bottom:159.040197px;}
.y58{bottom:171.744615px;}
.y3b{bottom:183.452695px;}
.y57{bottom:207.744613px;}
.y3a{bottom:207.865194px;}
.y39{bottom:232.277693px;}
.y56{bottom:243.744612px;}
.y38{bottom:256.690191px;}
.y55{bottom:279.744610px;}
.y37{bottom:281.102690px;}
.y2f{bottom:308.914077px;}
.y54{bottom:315.744609px;}
.y53{bottom:351.744607px;}
.y52{bottom:387.744606px;}
.y51{bottom:423.744604px;}
.y50{bottom:459.744603px;}
.y4f{bottom:495.744601px;}
.y40{bottom:495.981182px;}
.y4e{bottom:531.744600px;}
.y4d{bottom:567.744598px;}
.y4c{bottom:603.744597px;}
.y4b{bottom:675.744594px;}
.y4a{bottom:711.744592px;}
.y49{bottom:747.744591px;}
.y5b{bottom:810.744588px;}
.y68{bottom:848.227463px;}
.y5a{bottom:865.869586px;}
.y36{bottom:946.774830px;}
.y24{bottom:946.869582px;}
.y35{bottom:982.774829px;}
.y23{bottom:982.869581px;}
.y34{bottom:1018.774827px;}
.y22{bottom:1018.869579px;}
.y33{bottom:1054.774826px;}
.y21{bottom:1054.869578px;}
.y32{bottom:1090.774824px;}
.y20{bottom:1090.869576px;}
.y31{bottom:1126.774823px;}
.y1f{bottom:1126.869575px;}
.y1e{bottom:1162.869573px;}
.y3{bottom:1178.524821px;}
.y1d{bottom:1198.869572px;}
.y1c{bottom:1234.869570px;}
.y1b{bottom:1270.869569px;}
.y1a{bottom:1306.869567px;}
.y67{bottom:1327.024887px;}
.y66{bottom:1364.149885px;}
.y48{bottom:1378.866216px;}
.y65{bottom:1401.274884px;}
.y7e{bottom:1433.350630px;}
.y47{bottom:1436.241214px;}
.y64{bottom:1438.399882px;}
.y73{bottom:1465.602564px;}
.y89{bottom:1466.023253px;}
.y7d{bottom:1470.536593px;}
.y63{bottom:1475.524880px;}
.y72{bottom:1498.730364px;}
.y88{bottom:1499.151051px;}
.y19{bottom:1505.798035px;}
.y7c{bottom:1507.722555px;}
.y62{bottom:1512.649879px;}
.y71{bottom:1531.858163px;}
.y87{bottom:1532.278849px;}
.y18{bottom:1541.798034px;}
.y7b{bottom:1544.908517px;}
.y61{bottom:1549.774877px;}
.y70{bottom:1564.985963px;}
.y86{bottom:1565.406646px;}
.y17{bottom:1577.798032px;}
.y7a{bottom:1582.094479px;}
.y60{bottom:1586.899876px;}
.y6f{bottom:1598.113762px;}
.y85{bottom:1598.534444px;}
.y16{bottom:1613.798031px;}
.y79{bottom:1619.280441px;}
.y5f{bottom:1624.024874px;}
.y6e{bottom:1631.241561px;}
.y84{bottom:1631.662242px;}
.y15{bottom:1649.798029px;}
.y78{bottom:1656.466403px;}
.y5e{bottom:1661.149873px;}
.y6d{bottom:1664.369361px;}
.y83{bottom:1664.790039px;}
.y14{bottom:1685.798028px;}
.y77{bottom:1693.652365px;}
.y6c{bottom:1697.497160px;}
.y82{bottom:1697.917837px;}
.y2e{bottom:1703.447243px;}
.y13{bottom:1721.798026px;}
.y6b{bottom:1730.624959px;}
.y76{bottom:1730.838328px;}
.y81{bottom:1731.045635px;}
.y12{bottom:1757.798025px;}
.y6a{bottom:1763.752759px;}
.y80{bottom:1764.173432px;}
.y75{bottom:1768.024290px;}
.y11{bottom:1793.798023px;}
.y69{bottom:1796.880558px;}
.y7f{bottom:1797.301230px;}
.y74{bottom:1805.210252px;}
.y10{bottom:1829.798022px;}
.y2d{bottom:1832.340684px;}
.y25{bottom:1863.015566px;}
.yf{bottom:1865.798020px;}
.y27{bottom:1867.752518px;}
.y2c{bottom:1875.090682px;}
.y5d{bottom:1904.178738px;}
.y2b{bottom:1917.840680px;}
.y46{bottom:1928.798018px;}
.y5c{bottom:1955.292421px;}
.y2a{bottom:1960.590678px;}
.ye{bottom:2002.836997px;}
.y29{bottom:2003.340676px;}
.yd{bottom:2038.836995px;}
.y28{bottom:2046.090675px;}
.yc{bottom:2074.836994px;}
.y1{bottom:2086.256687px;}
.yb{bottom:2110.836992px;}
.ya{bottom:2146.836991px;}
.y9{bottom:2182.836989px;}
.y8{bottom:2218.836988px;}
.y7{bottom:2254.836986px;}
.y6{bottom:2290.836985px;}
.y5{bottom:2326.836983px;}
.y44{bottom:2395.623660px;}
.y45{bottom:2488.210760px;}
.hc{height:62.247431px;}
.h9{height:75.374997px;}
.h1a{height:79.759055px;}
.h18{height:80.513927px;}
.h13{height:86.111276px;}
.h4{height:89.999996px;}
.h19{height:90.026480px;}
.h6{height:91.793448px;}
.hb{height:91.827879px;}
.h16{height:96.407223px;}
.ha{height:97.308980px;}
.h2{height:103.499996px;}
.hf{height:105.625781px;}
.h8{height:109.146752px;}
.he{height:109.700939px;}
.h15{height:119.489162px;}
.hd{height:125.955669px;}
.h14{height:129.317696px;}
.h7{height:133.874994px;}
.h12{height:134.730701px;}
.h5{height:141.833321px;}
.h10{height:142.331025px;}
.h17{height:164.052245px;}
.h3{height:166.864570px;}
.h11{height:287.828068px;}
.h0{height:2591.999890px;}
.h1{height:2592.000000px;}
.w5{width:627.749974px;}
.w4{width:629.999974px;}
.w1{width:863.999964px;}
.w2{width:868.499964px;}
.w3{width:3887.999838px;}
.w0{width:3888.000000px;}
.x0{left:0.000000px;}
.x8{left:8.707028px;}
.x5{left:17.498046px;}
.x6{left:22.725173px;}
.xb{left:49.412107px;}
.x9{left:59.701167px;}
.x4{left:65.460935px;}
.x7{left:73.719312px;}
.xd{left:111.533198px;}
.x1e{left:161.087303px;}
.x1d{left:180.362309px;}
.x2{left:199.476554px;}
.x19{left:211.334943px;}
.xf{left:218.566397px;}
.x1c{left:222.831057px;}
.x11{left:234.632803px;}
.x1b{left:320.837302px;}
.x1f{left:322.015031px;}
.x1a{left:613.241433px;}
.x26{left:768.701992px;}
.x27{left:822.025612px;}
.x14{left:864.683229px;}
.x21{left:915.807412px;}
.x20{left:929.090244px;}
.x24{left:1537.361648px;}
.xc{left:1540.507076px;}
.x25{left:1585.032157px;}
.x10{left:1628.474188px;}
.xa{left:2258.775770px;}
.x28{left:2306.012460px;}
.x1{left:2955.352737px;}
.x3{left:2971.634996px;}
.x12{left:2975.725424px;}
.x22{left:3008.895703px;}
.xe{left:3015.979687px;}
.x13{left:3026.737141px;}
.x17{left:3232.695789px;}
.x15{left:3252.839984px;}
.x23{left:3301.619262px;}
.x18{left:3326.350211px;}
.x16{left:3584.396234px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.630610pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-40.991778pt;}
.ws6{word-spacing:-37.374590pt;}
.ws3{word-spacing:-31.050627pt;}
.ws1{word-spacing:-28.123632pt;}
.ws0{word-spacing:-27.701406pt;}
.ws5{word-spacing:-24.108554pt;}
.ws2{word-spacing:-18.785015pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-16.248801pt;}
._3{margin-left:-13.721171pt;}
._8{margin-left:-11.567000pt;}
._b{margin-left:-9.022480pt;}
._1{margin-left:-6.474147pt;}
._4{margin-left:-4.965257pt;}
._2{margin-left:-3.314359pt;}
._0{margin-left:-1.696668pt;}
._7{width:1.050283pt;}
._c{width:9.381655pt;}
._d{width:10.320323pt;}
._a{width:16.151137pt;}
._9{width:17.688455pt;}
._5{width:386.107464pt;}
.fs6{font-size:72.315246pt;}
.fs13{font-size:98.773421pt;}
.fs11{font-size:99.708253pt;}
.fs2{font-size:106.639996pt;}
.fs5{font-size:106.679996pt;}
.fs12{font-size:111.488575pt;}
.fs10{font-size:111.999995pt;}
.fs4{font-size:124.399995pt;}
.fs3{font-size:126.799999pt;}
.fsa{font-size:137.347047pt;}
.fs9{font-size:142.646046pt;}
.fs7{font-size:144.012304pt;}
.fsf{font-size:152.755183pt;}
.fs8{font-size:157.008434pt;}
.fse{font-size:165.320001pt;}
.fsd{font-size:172.239997pt;}
.fs1{font-size:181.320000pt;}
.fsb{font-size:181.956266pt;}
.fs0{font-size:213.319999pt;}
.fsc{font-size:367.959977pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:25.999999pt;}
.y4{bottom:29.999999pt;}
.y2{bottom:33.999999pt;}
.y26{bottom:46.999998pt;}
.y43{bottom:76.016936pt;}
.y3f{bottom:76.269067pt;}
.y3e{bottom:97.969066pt;}
.y41{bottom:103.487264pt;}
.y42{bottom:116.579770pt;}
.y3d{bottom:119.669065pt;}
.y59{bottom:120.661881pt;}
.y3c{bottom:141.369064pt;}
.y58{bottom:152.661880pt;}
.y3b{bottom:163.069063pt;}
.y57{bottom:184.661878pt;}
.y3a{bottom:184.769061pt;}
.y39{bottom:206.469060pt;}
.y56{bottom:216.661877pt;}
.y38{bottom:228.169059pt;}
.y55{bottom:248.661876pt;}
.y37{bottom:249.869058pt;}
.y2f{bottom:274.590291pt;}
.y54{bottom:280.661874pt;}
.y53{bottom:312.661873pt;}
.y52{bottom:344.661872pt;}
.y51{bottom:376.661870pt;}
.y50{bottom:408.661869pt;}
.y4f{bottom:440.661868pt;}
.y40{bottom:440.872161pt;}
.y4e{bottom:472.661866pt;}
.y4d{bottom:504.661865pt;}
.y4c{bottom:536.661864pt;}
.y4b{bottom:600.661861pt;}
.y4a{bottom:632.661860pt;}
.y49{bottom:664.661858pt;}
.y5b{bottom:720.661856pt;}
.y68{bottom:753.979967pt;}
.y5a{bottom:769.661854pt;}
.y36{bottom:841.577627pt;}
.y24{bottom:841.661851pt;}
.y35{bottom:873.577626pt;}
.y23{bottom:873.661850pt;}
.y34{bottom:905.577624pt;}
.y22{bottom:905.661848pt;}
.y33{bottom:937.577623pt;}
.y21{bottom:937.661847pt;}
.y32{bottom:969.577622pt;}
.y20{bottom:969.661846pt;}
.y31{bottom:1001.577620pt;}
.y1f{bottom:1001.661844pt;}
.y1e{bottom:1033.661843pt;}
.y3{bottom:1047.577618pt;}
.y1d{bottom:1065.661842pt;}
.y1c{bottom:1097.661840pt;}
.y1b{bottom:1129.661839pt;}
.y1a{bottom:1161.661838pt;}
.y67{bottom:1179.577677pt;}
.y66{bottom:1212.577676pt;}
.y48{bottom:1225.658859pt;}
.y65{bottom:1245.577674pt;}
.y7e{bottom:1274.089449pt;}
.y47{bottom:1276.658857pt;}
.y64{bottom:1278.577673pt;}
.y73{bottom:1302.757835pt;}
.y89{bottom:1303.131781pt;}
.y7d{bottom:1307.143638pt;}
.y63{bottom:1311.577671pt;}
.y72{bottom:1332.204768pt;}
.y88{bottom:1332.578712pt;}
.y19{bottom:1338.487142pt;}
.y7c{bottom:1340.197826pt;}
.y62{bottom:1344.577670pt;}
.y71{bottom:1361.651701pt;}
.y87{bottom:1362.025643pt;}
.y18{bottom:1370.487141pt;}
.y7b{bottom:1373.252015pt;}
.y61{bottom:1377.577669pt;}
.y70{bottom:1391.098633pt;}
.y86{bottom:1391.472575pt;}
.y17{bottom:1402.487140pt;}
.y7a{bottom:1406.306204pt;}
.y60{bottom:1410.577667pt;}
.y6f{bottom:1420.545566pt;}
.y85{bottom:1420.919506pt;}
.y16{bottom:1434.487138pt;}
.y79{bottom:1439.360392pt;}
.y5f{bottom:1443.577666pt;}
.y6e{bottom:1449.992499pt;}
.y84{bottom:1450.366437pt;}
.y15{bottom:1466.487137pt;}
.y78{bottom:1472.414581pt;}
.y5e{bottom:1476.577665pt;}
.y6d{bottom:1479.439432pt;}
.y83{bottom:1479.813368pt;}
.y14{bottom:1498.487136pt;}
.y77{bottom:1505.468769pt;}
.y6c{bottom:1508.886365pt;}
.y82{bottom:1509.260300pt;}
.y2e{bottom:1514.175327pt;}
.y13{bottom:1530.487134pt;}
.y6b{bottom:1538.333297pt;}
.y76{bottom:1538.522958pt;}
.y81{bottom:1538.707231pt;}
.y12{bottom:1562.487133pt;}
.y6a{bottom:1567.780230pt;}
.y80{bottom:1568.154162pt;}
.y75{bottom:1571.577146pt;}
.y11{bottom:1594.487132pt;}
.y69{bottom:1597.227163pt;}
.y7f{bottom:1597.601093pt;}
.y74{bottom:1604.631335pt;}
.y10{bottom:1626.487130pt;}
.y2d{bottom:1628.747274pt;}
.y25{bottom:1656.013836pt;}
.yf{bottom:1658.487129pt;}
.y27{bottom:1660.224460pt;}
.y2c{bottom:1666.747273pt;}
.y5d{bottom:1692.603323pt;}
.y2b{bottom:1704.747271pt;}
.y46{bottom:1714.487127pt;}
.y5c{bottom:1738.037707pt;}
.y2a{bottom:1742.747270pt;}
.ye{bottom:1780.299553pt;}
.y29{bottom:1780.747268pt;}
.yd{bottom:1812.299551pt;}
.y28{bottom:1818.747266pt;}
.yc{bottom:1844.299550pt;}
.y1{bottom:1854.450388pt;}
.yb{bottom:1876.299549pt;}
.ya{bottom:1908.299547pt;}
.y9{bottom:1940.299546pt;}
.y8{bottom:1972.299545pt;}
.y7{bottom:2004.299543pt;}
.y6{bottom:2036.299542pt;}
.y5{bottom:2068.299541pt;}
.y44{bottom:2129.443253pt;}
.y45{bottom:2211.742898pt;}
.hc{height:55.331050pt;}
.h9{height:66.999997pt;}
.h1a{height:70.896938pt;}
.h18{height:71.567936pt;}
.h13{height:76.543356pt;}
.h4{height:79.999997pt;}
.h19{height:80.023538pt;}
.h6{height:81.594176pt;}
.hb{height:81.624782pt;}
.h16{height:85.695309pt;}
.ha{height:86.496871pt;}
.h2{height:91.999996pt;}
.hf{height:93.889583pt;}
.h8{height:97.019335pt;}
.he{height:97.511945pt;}
.h15{height:106.212588pt;}
.hd{height:111.960595pt;}
.h14{height:114.949063pt;}
.h7{height:118.999995pt;}
.h12{height:119.760623pt;}
.h5{height:126.074063pt;}
.h10{height:126.516466pt;}
.h17{height:145.824218pt;}
.h3{height:148.324062pt;}
.h11{height:255.847171pt;}
.h0{height:2303.999902pt;}
.h1{height:2304.000000pt;}
.w5{width:557.999977pt;}
.w4{width:559.999977pt;}
.w1{width:767.999968pt;}
.w2{width:771.999968pt;}
.w3{width:3455.999856pt;}
.w0{width:3456.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.739580pt;}
.x5{left:15.553819pt;}
.x6{left:20.200154pt;}
.xb{left:43.921873pt;}
.x9{left:53.067704pt;}
.x4{left:58.187498pt;}
.x7{left:65.528277pt;}
.xd{left:99.140621pt;}
.x1e{left:143.188714pt;}
.x1d{left:160.322052pt;}
.x2{left:177.312493pt;}
.x19{left:187.853283pt;}
.xf{left:194.281242pt;}
.x1c{left:198.072051pt;}
.x11{left:208.562491pt;}
.x1b{left:285.188713pt;}
.x1f{left:286.235583pt;}
.x1a{left:545.103496pt;}
.x26{left:683.290660pt;}
.x27{left:730.689433pt;}
.x14{left:768.607315pt;}
.x21{left:814.051033pt;}
.x20{left:825.857995pt;}
.x24{left:1366.543687pt;}
.xc{left:1369.339623pt;}
.x25{left:1408.917473pt;}
.x10{left:1447.532612pt;}
.xa{left:2007.800684pt;}
.x28{left:2049.788853pt;}
.x1{left:2626.980211pt;}
.x3{left:2641.453330pt;}
.x12{left:2645.089266pt;}
.x22{left:2674.573959pt;}
.xe{left:2680.870833pt;}
.x13{left:2690.433014pt;}
.x17{left:2873.507368pt;}
.x15{left:2891.413320pt;}
.x23{left:2934.772678pt;}
.x18{left:2956.755743pt;}
.x16{left:3186.129985pt;}
}




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