
    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_7db377ddcc385993981f9312.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_922552adf55c590bc6b0131c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f0322f20fa291f2e2c773359.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-84.239966px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.021238px;}
.ls1{letter-spacing:0.189257px;}
.ls5{letter-spacing:0.378514px;}
.ls7{letter-spacing:0.378602px;}
.ls6{letter-spacing:2.350619px;}
.ls3{letter-spacing:3.791518px;}
.ls0{letter-spacing:72.053371px;}
.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:-21.059992px;}
.ws6{word-spacing:-18.021231px;}
.ws3{word-spacing:-17.999993px;}
.ws7{word-spacing:-15.318508px;}
.ws2{word-spacing:-14.939994px;}
.ws4{word-spacing:-12.059995px;}
.ws5{word-spacing:-9.719996px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-12.966075px;}
._c{margin-left:-2.139990px;}
._1{margin-left:-1.086018px;}
._0{width:1.326151px;}
._b{width:2.472303px;}
._8{width:4.431175px;}
._2{width:5.458678px;}
._3{width:6.490792px;}
._9{width:7.956905px;}
._6{width:9.934700px;}
._7{width:10.971846px;}
._5{width:12.761643px;}
._4{width:13.847600px;}
._11{width:15.421605px;}
._a{width:16.778795px;}
._13{width:19.589546px;}
._14{width:20.786084px;}
._15{width:21.826452px;}
._16{width:23.027836px;}
._17{width:24.039061px;}
._18{width:26.038595px;}
._19{width:27.899395px;}
._1a{width:29.075600px;}
._1d{width:30.338610px;}
._20{width:31.954533px;}
._d{width:33.300235px;}
._e{width:35.180190px;}
._1e{width:36.660232px;}
._1f{width:37.724640px;}
._1c{width:40.325190px;}
._1b{width:41.561336px;}
._f{width:47.080667px;}
._10{width:48.372058px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.879984px;}
.fs4{font-size:48.239981px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs1{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.480275px;}
.y55{bottom:105.959958px;}
.y26{bottom:105.960258px;}
.y66{bottom:112.800255px;}
.y54{bottom:123.239951px;}
.y25{bottom:123.240251px;}
.y24{bottom:130.080248px;}
.y53{bottom:140.519944px;}
.y23{bottom:140.520244px;}
.y6f{bottom:147.360241px;}
.y52{bottom:157.799937px;}
.y51{bottom:164.639934px;}
.y50{bottom:174.899930px;}
.y65{bottom:181.739927px;}
.y4f{bottom:192.179923px;}
.y4e{bottom:199.019920px;}
.y7b{bottom:208.919916px;}
.y4d{bottom:209.459916px;}
.y60{bottom:216.299913px;}
.y4c{bottom:226.739909px;}
.y22{bottom:229.619908px;}
.y4b{bottom:233.579907px;}
.y6a{bottom:239.879904px;}
.y4a{bottom:244.019902px;}
.y5f{bottom:250.859900px;}
.y21{bottom:260.579896px;}
.y49{bottom:261.299895px;}
.y64{bottom:268.139893px;}
.y69{bottom:271.019892px;}
.y48{bottom:278.399889px;}
.y79{bottom:279.299888px;}
.y47{bottom:285.239886px;}
.y20{bottom:291.719883px;}
.y46{bottom:295.679882px;}
.y63{bottom:301.979879px;}
.y5e{bottom:302.519879px;}
.y75{bottom:310.259876px;}
.y5d{bottom:312.959875px;}
.y6e{bottom:319.799872px;}
.y1f{bottom:322.679871px;}
.y5c{bottom:330.239868px;}
.y45{bottom:333.119867px;}
.y5b{bottom:337.079865px;}
.y76{bottom:341.399863px;}
.y5a{bottom:347.519861px;}
.y1e{bottom:353.819858px;}
.y44{bottom:364.079854px;}
.y62{bottom:372.359851px;}
.y1d{bottom:384.779846px;}
.y43{bottom:395.219842px;}
.y68{bottom:403.499839px;}
.y1c{bottom:415.919834px;}
.y41{bottom:426.179830px;}
.y42{bottom:434.459826px;}
.y1b{bottom:446.879821px;}
.y40{bottom:457.139817px;}
.y6d{bottom:465.419814px;}
.y1a{bottom:477.839809px;}
.y3f{bottom:488.279805px;}
.y71{bottom:496.559801px;}
.y19{bottom:508.979796px;}
.y3e{bottom:519.239792px;}
.y67{bottom:527.519789px;}
.y18{bottom:539.939784px;}
.y3d{bottom:550.379780px;}
.y17{bottom:571.079772px;}
.y3b{bottom:581.339767px;}
.y3c{bottom:589.619764px;}
.y16{bottom:602.039759px;}
.y3a{bottom:612.479755px;}
.y7a{bottom:620.759752px;}
.y15{bottom:633.179747px;}
.y39{bottom:643.439743px;}
.y74{bottom:651.719739px;}
.y14{bottom:664.139734px;}
.y38{bottom:674.579730px;}
.y78{bottom:682.859727px;}
.y13{bottom:695.279722px;}
.y37{bottom:705.539718px;}
.y59{bottom:713.819714px;}
.y12{bottom:726.239710px;}
.y36{bottom:736.679705px;}
.y61{bottom:744.959702px;}
.y11{bottom:757.379697px;}
.y34{bottom:767.639693px;}
.y35{bottom:775.919690px;}
.y10{bottom:788.339685px;}
.y33{bottom:798.779680px;}
.yf{bottom:819.479672px;}
.y32{bottom:829.739668px;}
.y58{bottom:838.019665px;}
.ye{bottom:850.439660px;}
.y31{bottom:860.879656px;}
.y73{bottom:869.159652px;}
.yd{bottom:881.579647px;}
.y30{bottom:891.839643px;}
.y70{bottom:900.119640px;}
.yb{bottom:902.459639px;}
.yc{bottom:910.739636px;}
.y2f{bottom:922.979631px;}
.ya{bottom:923.159631px;}
.y57{bottom:931.259627px;}
.y9{bottom:944.039622px;}
.y2e{bottom:953.939618px;}
.y77{bottom:962.219615px;}
.y8{bottom:968.159613px;}
.y2d{bottom:985.079606px;}
.y7{bottom:992.279603px;}
.y72{bottom:993.359603px;}
.y6{bottom:1015.859594px;}
.y2c{bottom:1016.039594px;}
.y6c{bottom:1024.319590px;}
.y5{bottom:1036.559585px;}
.y2b{bottom:1047.179581px;}
.y2a{bottom:1078.139569px;}
.y4{bottom:1078.319569px;}
.y6b{bottom:1086.419565px;}
.y3{bottom:1101.179560px;}
.y28{bottom:1109.279556px;}
.y29{bottom:1117.559553px;}
.y2{bottom:1132.139547px;}
.y27{bottom:1140.239544px;}
.y56{bottom:1148.519541px;}
.h7{height:38.158578px;}
.h9{height:47.321348px;}
.h6{height:47.344903px;}
.h1{height:58.651148px;}
.h8{height:70.628878px;}
.h3{height:70.664034px;}
.h4{height:72.562471px;}
.h5{height:84.898091px;}
.h2{height:105.996051px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:127.619949px;}
.x6{left:129.419948px;}
.xc{left:132.479947px;}
.x25{left:137.339945px;}
.x2e{left:163.619935px;}
.x2{left:176.399929px;}
.x38{left:177.659929px;}
.xb{left:180.719919px;}
.x1d{left:189.539924px;}
.x1e{left:201.779919px;}
.x54{left:204.659918px;}
.x1b{left:211.499915px;}
.x4b{left:213.299915px;}
.x1c{left:216.899913px;}
.xd{left:221.039912px;}
.x41{left:222.119911px;}
.xe{left:227.159909px;}
.x37{left:228.419909px;}
.x42{left:234.359906px;}
.x32{left:241.559903px;}
.x33{left:253.799898px;}
.x3b{left:265.139894px;}
.x4c{left:269.999892px;}
.x3c{left:277.379889px;}
.x11{left:282.959887px;}
.x5{left:288.359342px;}
.x4f{left:298.079881px;}
.x50{left:310.319876px;}
.x21{left:314.099874px;}
.x22{left:326.339869px;}
.x2c{left:329.579868px;}
.x2d{left:341.819863px;}
.x3{left:357.119745px;}
.x34{left:372.959851px;}
.x9{left:377.820632px;}
.x16{left:383.219847px;}
.x35{left:385.199846px;}
.x17{left:394.019842px;}
.x12{left:395.459842px;}
.x26{left:399.059840px;}
.x18{left:400.139840px;}
.x13{left:401.579839px;}
.x23{left:404.999838px;}
.x27{left:411.299835px;}
.x7{left:412.560553px;}
.x24{left:417.239833px;}
.x49{left:428.939828px;}
.x1f{left:438.119825px;}
.x4a{left:441.179824px;}
.x1{left:442.619823px;}
.x55{left:444.959822px;}
.x20{left:450.359820px;}
.x57{left:453.059819px;}
.x56{left:457.199817px;}
.x40{left:463.139815px;}
.x58{left:465.299814px;}
.x52{left:468.539813px;}
.x53{left:480.779808px;}
.x3e{left:486.899805px;}
.x3f{left:499.139800px;}
.x51{left:512.279795px;}
.x19{left:525.599790px;}
.x31{left:528.479789px;}
.x1a{left:531.719787px;}
.x45{left:537.479785px;}
.x28{left:540.899784px;}
.x46{left:549.719780px;}
.x29{left:553.139779px;}
.xf{left:563.399775px;}
.x3d{left:565.739774px;}
.x10{left:569.519772px;}
.x2a{left:575.459770px;}
.x36{left:582.299767px;}
.x2b{left:587.699765px;}
.x2f{left:588.779764px;}
.x30{left:601.019760px;}
.x14{left:613.619755px;}
.x15{left:619.739752px;}
.x59{left:626.579749px;}
.x5a{left:638.819744px;}
.x39{left:642.599743px;}
.x3a{left:654.839738px;}
.x43{left:659.159736px;}
.x44{left:671.399731px;}
.x4d{left:717.299713px;}
.x47{left:727.919709px;}
.x4e{left:729.539708px;}
.x48{left:740.159704px;}
.xa{left:759.239696px;}
.x8{left:765.359694px;}
@media print{
.v1{vertical-align:-74.879970pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018878pt;}
.ls1{letter-spacing:0.168228pt;}
.ls5{letter-spacing:0.336457pt;}
.ls7{letter-spacing:0.336535pt;}
.ls6{letter-spacing:2.089439pt;}
.ls3{letter-spacing:3.370239pt;}
.ls0{letter-spacing:64.047441pt;}
.ws0{word-spacing:-18.719993pt;}
.ws6{word-spacing:-16.018872pt;}
.ws3{word-spacing:-15.999994pt;}
.ws7{word-spacing:-13.616451pt;}
.ws2{word-spacing:-13.279995pt;}
.ws4{word-spacing:-10.719996pt;}
.ws5{word-spacing:-8.639997pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-11.525400pt;}
._c{margin-left:-1.902214pt;}
._1{margin-left:-0.965349pt;}
._0{width:1.178801pt;}
._b{width:2.197603pt;}
._8{width:3.938822pt;}
._2{width:4.852158pt;}
._3{width:5.769593pt;}
._9{width:7.072804pt;}
._6{width:8.830844pt;}
._7{width:9.752752pt;}
._5{width:11.343683pt;}
._4{width:12.308977pt;}
._11{width:13.708093pt;}
._a{width:14.914485pt;}
._13{width:17.412930pt;}
._14{width:18.476519pt;}
._15{width:19.401291pt;}
._16{width:20.469187pt;}
._17{width:21.368054pt;}
._18{width:23.145417pt;}
._19{width:24.799463pt;}
._1a{width:25.844978pt;}
._1d{width:26.967653pt;}
._20{width:28.404029pt;}
._d{width:29.600209pt;}
._e{width:31.271280pt;}
._1e{width:32.586873pt;}
._1f{width:33.533014pt;}
._1c{width:35.844613pt;}
._1b{width:36.943410pt;}
._f{width:41.849482pt;}
._10{width:42.997385pt;}
.fs5{font-size:34.559986pt;}
.fs4{font-size:42.879983pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs1{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.426911pt;}
.y55{bottom:94.186629pt;}
.y26{bottom:94.186896pt;}
.y66{bottom:100.266893pt;}
.y54{bottom:109.546623pt;}
.y25{bottom:109.546890pt;}
.y24{bottom:115.626887pt;}
.y53{bottom:124.906617pt;}
.y23{bottom:124.906883pt;}
.y6f{bottom:130.986881pt;}
.y52{bottom:140.266611pt;}
.y51{bottom:146.346608pt;}
.y50{bottom:155.466604pt;}
.y65{bottom:161.546602pt;}
.y4f{bottom:170.826598pt;}
.y4e{bottom:176.906596pt;}
.y7b{bottom:185.706592pt;}
.y4d{bottom:186.186592pt;}
.y60{bottom:192.266590pt;}
.y4c{bottom:201.546586pt;}
.y22{bottom:204.106585pt;}
.y4b{bottom:207.626584pt;}
.y6a{bottom:213.226581pt;}
.y4a{bottom:216.906580pt;}
.y5f{bottom:222.986577pt;}
.y21{bottom:231.626574pt;}
.y49{bottom:232.266574pt;}
.y64{bottom:238.346571pt;}
.y69{bottom:240.906570pt;}
.y48{bottom:247.466568pt;}
.y79{bottom:248.266567pt;}
.y47{bottom:253.546565pt;}
.y20{bottom:259.306563pt;}
.y46{bottom:262.826562pt;}
.y63{bottom:268.426559pt;}
.y5e{bottom:268.906559pt;}
.y75{bottom:275.786556pt;}
.y5d{bottom:278.186555pt;}
.y6e{bottom:284.266553pt;}
.y1f{bottom:286.826552pt;}
.y5c{bottom:293.546549pt;}
.y45{bottom:296.106548pt;}
.y5b{bottom:299.626547pt;}
.y76{bottom:303.466545pt;}
.y5a{bottom:308.906543pt;}
.y1e{bottom:314.506541pt;}
.y44{bottom:323.626537pt;}
.y62{bottom:330.986534pt;}
.y1d{bottom:342.026530pt;}
.y43{bottom:351.306526pt;}
.y68{bottom:358.666523pt;}
.y1c{bottom:369.706519pt;}
.y41{bottom:378.826515pt;}
.y42{bottom:386.186512pt;}
.y1b{bottom:397.226508pt;}
.y40{bottom:406.346504pt;}
.y6d{bottom:413.706501pt;}
.y1a{bottom:424.746497pt;}
.y3f{bottom:434.026493pt;}
.y71{bottom:441.386490pt;}
.y19{bottom:452.426486pt;}
.y3e{bottom:461.546482pt;}
.y67{bottom:468.906479pt;}
.y18{bottom:479.946475pt;}
.y3d{bottom:489.226471pt;}
.y17{bottom:507.626464pt;}
.y3b{bottom:516.746460pt;}
.y3c{bottom:524.106457pt;}
.y16{bottom:535.146453pt;}
.y3a{bottom:544.426449pt;}
.y7a{bottom:551.786446pt;}
.y15{bottom:562.826442pt;}
.y39{bottom:571.946438pt;}
.y74{bottom:579.306435pt;}
.y14{bottom:590.346431pt;}
.y38{bottom:599.626427pt;}
.y78{bottom:606.986424pt;}
.y13{bottom:618.026419pt;}
.y37{bottom:627.146416pt;}
.y59{bottom:634.506413pt;}
.y12{bottom:645.546408pt;}
.y36{bottom:654.826405pt;}
.y61{bottom:662.186402pt;}
.y11{bottom:673.226397pt;}
.y34{bottom:682.346394pt;}
.y35{bottom:689.706391pt;}
.y10{bottom:700.746386pt;}
.y33{bottom:710.026383pt;}
.yf{bottom:728.426375pt;}
.y32{bottom:737.546372pt;}
.y58{bottom:744.906369pt;}
.ye{bottom:755.946364pt;}
.y31{bottom:765.226361pt;}
.y73{bottom:772.586358pt;}
.yd{bottom:783.626353pt;}
.y30{bottom:792.746350pt;}
.y70{bottom:800.106347pt;}
.yb{bottom:802.186346pt;}
.yc{bottom:809.546343pt;}
.y2f{bottom:820.426338pt;}
.ya{bottom:820.586338pt;}
.y57{bottom:827.786336pt;}
.y9{bottom:839.146331pt;}
.y2e{bottom:847.946327pt;}
.y77{bottom:855.306325pt;}
.y8{bottom:860.586322pt;}
.y2d{bottom:875.626316pt;}
.y7{bottom:882.026314pt;}
.y72{bottom:882.986313pt;}
.y6{bottom:902.986305pt;}
.y2c{bottom:903.146305pt;}
.y6c{bottom:910.506302pt;}
.y5{bottom:921.386298pt;}
.y2b{bottom:930.826294pt;}
.y2a{bottom:958.346283pt;}
.y4{bottom:958.506283pt;}
.y6b{bottom:965.706280pt;}
.y3{bottom:978.826275pt;}
.y28{bottom:986.026272pt;}
.y29{bottom:993.386269pt;}
.y2{bottom:1006.346264pt;}
.y27{bottom:1013.546261pt;}
.y56{bottom:1020.906258pt;}
.h7{height:33.918736pt;}
.h9{height:42.063421pt;}
.h6{height:42.084358pt;}
.h1{height:52.134354pt;}
.h8{height:62.781225pt;}
.h3{height:62.812475pt;}
.h4{height:64.499974pt;}
.h5{height:75.464970pt;}
.h2{height:94.218712pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:113.439955pt;}
.x6{left:115.039954pt;}
.xc{left:117.759953pt;}
.x25{left:122.079951pt;}
.x2e{left:145.439942pt;}
.x2{left:156.799937pt;}
.x38{left:157.919937pt;}
.xb{left:160.639928pt;}
.x1d{left:168.479933pt;}
.x1e{left:179.359928pt;}
.x54{left:181.919927pt;}
.x1b{left:187.999925pt;}
.x4b{left:189.599924pt;}
.x1c{left:192.799923pt;}
.xd{left:196.479921pt;}
.x41{left:197.439921pt;}
.xe{left:201.919919pt;}
.x37{left:203.039919pt;}
.x42{left:208.319917pt;}
.x32{left:214.719914pt;}
.x33{left:225.599910pt;}
.x3b{left:235.679906pt;}
.x4c{left:239.999904pt;}
.x3c{left:246.559901pt;}
.x11{left:251.519899pt;}
.x5{left:256.319415pt;}
.x4f{left:264.959894pt;}
.x50{left:275.839890pt;}
.x21{left:279.199888pt;}
.x22{left:290.079884pt;}
.x2c{left:292.959883pt;}
.x2d{left:303.839878pt;}
.x3{left:317.439774pt;}
.x34{left:331.519867pt;}
.x9{left:335.840562pt;}
.x16{left:340.639864pt;}
.x35{left:342.399863pt;}
.x17{left:350.239860pt;}
.x12{left:351.519859pt;}
.x26{left:354.719858pt;}
.x18{left:355.679858pt;}
.x13{left:356.959857pt;}
.x23{left:359.999856pt;}
.x27{left:365.599854pt;}
.x7{left:366.720492pt;}
.x24{left:370.879852pt;}
.x49{left:381.279847pt;}
.x1f{left:389.439844pt;}
.x4a{left:392.159843pt;}
.x1{left:393.439843pt;}
.x55{left:395.519842pt;}
.x20{left:400.319840pt;}
.x57{left:402.719839pt;}
.x56{left:406.399837pt;}
.x40{left:411.679835pt;}
.x58{left:413.599835pt;}
.x52{left:416.479833pt;}
.x53{left:427.359829pt;}
.x3e{left:432.799827pt;}
.x3f{left:443.679823pt;}
.x51{left:455.359818pt;}
.x19{left:467.199813pt;}
.x31{left:469.759812pt;}
.x1a{left:472.639811pt;}
.x45{left:477.759809pt;}
.x28{left:480.799808pt;}
.x46{left:488.639805pt;}
.x29{left:491.679803pt;}
.xf{left:500.799800pt;}
.x3d{left:502.879799pt;}
.x10{left:506.239798pt;}
.x2a{left:511.519795pt;}
.x36{left:517.599793pt;}
.x2b{left:522.399791pt;}
.x2f{left:523.359791pt;}
.x30{left:534.239786pt;}
.x14{left:545.439782pt;}
.x15{left:550.879780pt;}
.x59{left:556.959777pt;}
.x5a{left:567.839773pt;}
.x39{left:571.199772pt;}
.x3a{left:582.079767pt;}
.x43{left:585.919766pt;}
.x44{left:596.799761pt;}
.x4d{left:637.599745pt;}
.x47{left:647.039741pt;}
.x4e{left:648.479741pt;}
.x48{left:657.919737pt;}
.xa{left:674.879730pt;}
.x8{left:680.319728pt;}
}




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