
    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_eeac9ee6d615db1a0498c29a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_4b245ae68ed9afe12043a8d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_0c59b2624b9bcd1d1d58765e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.833000;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_92b155275c11001d67e86e54.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f3b093473cd100878de387b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;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:ff6;src:url('chunks/assets/font_fdb5463be95a82579d2189bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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:ff7;src:url('chunks/assets/font_ada750e9b80a3f44798bb71d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.173999px;}
.ls9{letter-spacing:0.178498px;}
.ls8{letter-spacing:0.427951px;}
.ls6{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.552000px;}
.ls2{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.744000px;}
.lsa{letter-spacing:0.899988px;}
.ls7{letter-spacing:0.942000px;}
.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:-13.740000px;}
.ws0{word-spacing:-13.620000px;}
.ws6{word-spacing:-11.678863px;}
.ws8{word-spacing:-11.576864px;}
.ws2{word-spacing:-9.407882px;}
.ws3{word-spacing:-8.819882px;}
.ws4{word-spacing:-8.231765px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:145.710451px;}
._8{margin-left:-2.442000px;}
._7{margin-left:-1.254000px;}
._5{width:1.758000px;}
._4{width:2.961000px;}
._3{width:4.189500px;}
._0{width:5.972400px;}
._1{width:7.190400px;}
._2{width:8.895600px;}
._a{width:9.906000px;}
._9{width:10.919969px;}
._6{width:12.234002px;}
._b{width:13.260019px;}
._e{width:15.924000px;}
._f{width:20.001965px;}
._d{width:77.358733px;}
._c{width:89.894830px;}
._10{width:159.063910px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,20,126);}
.fs3{font-size:31.314600px;}
.fs2{font-size:36.115800px;}
.fs6{font-size:39.995400px;}
.fs9{font-size:41.998800px;}
.fs8{font-size:44.999400px;}
.fs7{font-size:47.999400px;}
.fsa{font-size:50.999400px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:29.764478px;}
.y39{bottom:41.755135px;}
.y38{bottom:53.745793px;}
.y37{bottom:65.735400px;}
.y33{bottom:82.148174px;}
.y6c{bottom:89.971650px;}
.y32{bottom:98.646768px;}
.y31{bottom:112.081800px;}
.y6b{bottom:117.014100px;}
.y30{bottom:147.801000px;}
.y2f{bottom:165.828000px;}
.y6a{bottom:172.375226px;}
.y2e{bottom:183.856500px;}
.y69{bottom:187.341000px;}
.y2d{bottom:201.799500px;}
.y68{bottom:214.384500px;}
.y2c{bottom:219.828000px;}
.y2b{bottom:237.856500px;}
.y2a{bottom:255.799500px;}
.y67{bottom:266.261604px;}
.y29{bottom:273.828000px;}
.y66{bottom:281.312801px;}
.y28{bottom:291.856500px;}
.y65{bottom:296.279850px;}
.y27{bottom:309.799500px;}
.y64{bottom:311.246899px;}
.y63{bottom:326.298097px;}
.y26{bottom:327.828000px;}
.y62{bottom:341.265146px;}
.y25{bottom:345.856500px;}
.y61{bottom:356.316344px;}
.y24{bottom:363.799500px;}
.y60{bottom:371.283393px;}
.y23{bottom:381.828000px;}
.y5f{bottom:386.250442px;}
.y22{bottom:399.855000px;}
.y5e{bottom:401.302915px;}
.y5d{bottom:416.268689px;}
.y21{bottom:417.798000px;}
.y1f{bottom:417.799500px;}
.y20{bottom:424.516500px;}
.y5c{bottom:431.321162px;}
.y1e{bottom:435.828000px;}
.y5b{bottom:446.288211px;}
.y1d{bottom:453.856500px;}
.y5a{bottom:461.255259px;}
.y1c{bottom:471.799500px;}
.y59{bottom:476.306457px;}
.y1b{bottom:489.828000px;}
.y58{bottom:491.273506px;}
.y57{bottom:506.324704px;}
.y1a{bottom:507.855000px;}
.y18{bottom:507.856500px;}
.y19{bottom:514.488000px;}
.y86{bottom:519.167850px;}
.y56{bottom:521.291753px;}
.y17{bottom:525.799500px;}
.y85{bottom:534.219048px;}
.y55{bottom:536.258802px;}
.y16{bottom:543.828000px;}
.y84{bottom:549.186097px;}
.y54{bottom:551.310000px;}
.y15{bottom:561.856500px;}
.y83{bottom:564.153146px;}
.y53{bottom:578.268000px;}
.y82{bottom:579.204344px;}
.y14{bottom:579.799500px;}
.y81{bottom:594.171393px;}
.y13{bottom:597.828000px;}
.y80{bottom:609.223866px;}
.y12{bottom:615.856500px;}
.y7f{bottom:624.190915px;}
.y51{bottom:630.228000px;}
.y11{bottom:633.799500px;}
.y52{bottom:636.859500px;}
.y7e{bottom:639.156689px;}
.y50{bottom:648.171000px;}
.y10{bottom:651.828000px;}
.y7d{bottom:654.209162px;}
.y4f{bottom:666.199500px;}
.y7c{bottom:669.176211px;}
.yf{bottom:669.856500px;}
.y7b{bottom:684.143259px;}
.y4e{bottom:684.226500px;}
.y4c{bottom:684.229500px;}
.ye{bottom:687.799500px;}
.y4d{bottom:690.859500px;}
.y7a{bottom:699.194457px;}
.y4b{bottom:702.172500px;}
.yd{bottom:705.828000px;}
.y79{bottom:714.161506px;}
.y4a{bottom:720.201000px;}
.yc{bottom:723.771000px;}
.y78{bottom:729.212704px;}
.y49{bottom:738.228000px;}
.yb{bottom:741.798000px;}
.y9{bottom:741.799500px;}
.y77{bottom:744.179753px;}
.ya{bottom:748.516500px;}
.y48{bottom:756.172500px;}
.y76{bottom:759.146802px;}
.y8{bottom:759.826500px;}
.y75{bottom:774.198000px;}
.y47{bottom:774.199500px;}
.y46{bottom:792.228000px;}
.y74{bottom:801.156000px;}
.y45{bottom:810.171000px;}
.y7{bottom:813.656850px;}
.y44{bottom:828.199500px;}
.y6{bottom:828.708000px;}
.y5{bottom:833.215500px;}
.y73{bottom:846.141000px;}
.y43{bottom:846.228000px;}
.y3{bottom:856.431000px;}
.y4{bottom:861.958500px;}
.y42{bottom:864.171000px;}
.y72{bottom:873.184500px;}
.y41{bottom:882.199500px;}
.y2{bottom:884.921100px;}
.y40{bottom:900.228000px;}
.y1{bottom:908.901000px;}
.y71{bottom:918.170704px;}
.y3f{bottom:918.171000px;}
.y70{bottom:933.223177px;}
.y3e{bottom:936.199500px;}
.y6f{bottom:948.190226px;}
.y3d{bottom:954.228000px;}
.y6e{bottom:963.156000px;}
.y3c{bottom:972.171000px;}
.y36{bottom:980.929111px;}
.y3b{bottom:990.198000px;}
.y35{bottom:994.450305px;}
.y34{bottom:1007.971500px;}
.y6d{bottom:1030.252500px;}
.h4{height:22.389939px;}
.h3{height:25.642218px;}
.h7{height:28.636706px;}
.ha{height:30.029142px;}
.hc{height:31.949574px;}
.h9{height:32.174571px;}
.h8{height:34.319571px;}
.hb{height:36.515570px;}
.h5{height:38.610000px;}
.h6{height:42.960000px;}
.h2{height:44.730000px;}
.h1{height:60.564000px;}
.h0{height:1080.000000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x1{left:72.028200px;}
.x3{left:75.940050px;}
.x12{left:86.993974px;}
.x8{left:89.974500px;}
.x10{left:91.502250px;}
.x11{left:108.423851px;}
.x2{left:183.855000px;}
.x6{left:234.964500px;}
.xd{left:241.681500px;}
.x7{left:244.063500px;}
.xe{left:251.206500px;}
.xf{left:255.288000px;}
.x13{left:267.534000px;}
.xb{left:293.215500px;}
.xc{left:304.525500px;}
.x4{left:349.936500px;}
.x5{left:354.444000px;}
.x9{left:616.875000px;}
.xa{left:625.890000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.154666pt;}
.ls9{letter-spacing:0.158665pt;}
.ls8{letter-spacing:0.380401pt;}
.ls6{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.490667pt;}
.ls2{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.661333pt;}
.lsa{letter-spacing:0.799989pt;}
.ls7{letter-spacing:0.837333pt;}
.ws1{word-spacing:-12.213333pt;}
.ws0{word-spacing:-12.106667pt;}
.ws6{word-spacing:-10.381211pt;}
.ws8{word-spacing:-10.290546pt;}
.ws2{word-spacing:-8.362562pt;}
.ws3{word-spacing:-7.839895pt;}
.ws4{word-spacing:-7.317124pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:129.520401pt;}
._8{margin-left:-2.170667pt;}
._7{margin-left:-1.114667pt;}
._5{width:1.562667pt;}
._4{width:2.632000pt;}
._3{width:3.724000pt;}
._0{width:5.308800pt;}
._1{width:6.391467pt;}
._2{width:7.907200pt;}
._a{width:8.805333pt;}
._9{width:9.706639pt;}
._6{width:10.874669pt;}
._b{width:11.786684pt;}
._e{width:14.154667pt;}
._f{width:17.779524pt;}
._d{width:68.763318pt;}
._c{width:79.906516pt;}
._10{width:141.390142pt;}
.fs3{font-size:27.835200pt;}
.fs2{font-size:32.102933pt;}
.fs6{font-size:35.551467pt;}
.fs9{font-size:37.332267pt;}
.fs8{font-size:39.999467pt;}
.fs7{font-size:42.666133pt;}
.fsa{font-size:45.332800pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:26.457314pt;}
.y39{bottom:37.115676pt;}
.y38{bottom:47.774038pt;}
.y37{bottom:58.431467pt;}
.y33{bottom:73.020599pt;}
.y6c{bottom:79.974800pt;}
.y32{bottom:87.686016pt;}
.y31{bottom:99.628267pt;}
.y6b{bottom:104.012533pt;}
.y30{bottom:131.378667pt;}
.y2f{bottom:147.402667pt;}
.y6a{bottom:153.222423pt;}
.y2e{bottom:163.428000pt;}
.y69{bottom:166.525333pt;}
.y2d{bottom:179.377333pt;}
.y68{bottom:190.564000pt;}
.y2c{bottom:195.402667pt;}
.y2b{bottom:211.428000pt;}
.y2a{bottom:227.377333pt;}
.y67{bottom:236.676981pt;}
.y29{bottom:243.402667pt;}
.y66{bottom:250.055824pt;}
.y28{bottom:259.428000pt;}
.y65{bottom:263.359867pt;}
.y27{bottom:275.377333pt;}
.y64{bottom:276.663910pt;}
.y63{bottom:290.042753pt;}
.y26{bottom:291.402667pt;}
.y62{bottom:303.346797pt;}
.y25{bottom:307.428000pt;}
.y61{bottom:316.725639pt;}
.y24{bottom:323.377333pt;}
.y60{bottom:330.029683pt;}
.y23{bottom:339.402667pt;}
.y5f{bottom:343.333726pt;}
.y22{bottom:355.426667pt;}
.y5e{bottom:356.713702pt;}
.y5d{bottom:370.016612pt;}
.y21{bottom:371.376000pt;}
.y1f{bottom:371.377333pt;}
.y20{bottom:377.348000pt;}
.y5c{bottom:383.396588pt;}
.y1e{bottom:387.402667pt;}
.y5b{bottom:396.700632pt;}
.y1d{bottom:403.428000pt;}
.y5a{bottom:410.004675pt;}
.y1c{bottom:419.377333pt;}
.y59{bottom:423.383518pt;}
.y1b{bottom:435.402667pt;}
.y58{bottom:436.687561pt;}
.y57{bottom:450.066404pt;}
.y1a{bottom:451.426667pt;}
.y18{bottom:451.428000pt;}
.y19{bottom:457.322667pt;}
.y86{bottom:461.482534pt;}
.y56{bottom:463.370447pt;}
.y17{bottom:467.377333pt;}
.y85{bottom:474.861376pt;}
.y55{bottom:476.674491pt;}
.y16{bottom:483.402667pt;}
.y84{bottom:488.165420pt;}
.y54{bottom:490.053333pt;}
.y15{bottom:499.428000pt;}
.y83{bottom:501.469463pt;}
.y53{bottom:514.016000pt;}
.y82{bottom:514.848306pt;}
.y14{bottom:515.377333pt;}
.y81{bottom:528.152349pt;}
.y13{bottom:531.402667pt;}
.y80{bottom:541.532325pt;}
.y12{bottom:547.428000pt;}
.y7f{bottom:554.836369pt;}
.y51{bottom:560.202667pt;}
.y11{bottom:563.377333pt;}
.y52{bottom:566.097333pt;}
.y7e{bottom:568.139279pt;}
.y50{bottom:576.152000pt;}
.y10{bottom:579.402667pt;}
.y7d{bottom:581.519255pt;}
.y4f{bottom:592.177333pt;}
.y7c{bottom:594.823298pt;}
.yf{bottom:595.428000pt;}
.y7b{bottom:608.127342pt;}
.y4e{bottom:608.201333pt;}
.y4c{bottom:608.204000pt;}
.ye{bottom:611.377333pt;}
.y4d{bottom:614.097333pt;}
.y7a{bottom:621.506184pt;}
.y4b{bottom:624.153333pt;}
.yd{bottom:627.402667pt;}
.y79{bottom:634.810228pt;}
.y4a{bottom:640.178667pt;}
.yc{bottom:643.352000pt;}
.y78{bottom:648.189070pt;}
.y49{bottom:656.202667pt;}
.yb{bottom:659.376000pt;}
.y9{bottom:659.377333pt;}
.y77{bottom:661.493114pt;}
.ya{bottom:665.348000pt;}
.y48{bottom:672.153333pt;}
.y76{bottom:674.797157pt;}
.y8{bottom:675.401333pt;}
.y75{bottom:688.176000pt;}
.y47{bottom:688.177333pt;}
.y46{bottom:704.202667pt;}
.y74{bottom:712.138667pt;}
.y45{bottom:720.152000pt;}
.y7{bottom:723.250533pt;}
.y44{bottom:736.177333pt;}
.y6{bottom:736.629333pt;}
.y5{bottom:740.636000pt;}
.y73{bottom:752.125333pt;}
.y43{bottom:752.202667pt;}
.y3{bottom:761.272000pt;}
.y4{bottom:766.185333pt;}
.y42{bottom:768.152000pt;}
.y72{bottom:776.164000pt;}
.y41{bottom:784.177333pt;}
.y2{bottom:786.596533pt;}
.y40{bottom:800.202667pt;}
.y1{bottom:807.912000pt;}
.y71{bottom:816.151737pt;}
.y3f{bottom:816.152000pt;}
.y70{bottom:829.531713pt;}
.y3e{bottom:832.177333pt;}
.y6f{bottom:842.835757pt;}
.y3d{bottom:848.202667pt;}
.y6e{bottom:856.138667pt;}
.y3c{bottom:864.152000pt;}
.y36{bottom:871.936987pt;}
.y3b{bottom:880.176000pt;}
.y35{bottom:883.955827pt;}
.y34{bottom:895.974667pt;}
.y6d{bottom:915.780000pt;}
.h4{height:19.902168pt;}
.h3{height:22.793083pt;}
.h7{height:25.454850pt;}
.ha{height:26.692571pt;}
.hc{height:28.399621pt;}
.h9{height:28.599619pt;}
.h8{height:30.506285pt;}
.hb{height:32.458285pt;}
.h5{height:34.320000pt;}
.h6{height:38.186667pt;}
.h2{height:39.760000pt;}
.h1{height:53.834667pt;}
.h0{height:960.000000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x1{left:64.025067pt;}
.x3{left:67.502267pt;}
.x12{left:77.327977pt;}
.x8{left:79.977333pt;}
.x10{left:81.335333pt;}
.x11{left:96.376756pt;}
.x2{left:163.426667pt;}
.x6{left:208.857333pt;}
.xd{left:214.828000pt;}
.x7{left:216.945333pt;}
.xe{left:223.294667pt;}
.xf{left:226.922667pt;}
.x13{left:237.808000pt;}
.xb{left:260.636000pt;}
.xc{left:270.689333pt;}
.x4{left:311.054667pt;}
.x5{left:315.061333pt;}
.x9{left:548.333333pt;}
.xa{left:556.346667pt;}
}




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