
    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_b0975899203a5bf4c36b80de.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.890000;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_8951c59b2e4154b039ae5a5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.964877px;}
.ls2{letter-spacing:2.988780px;}
.ls0{letter-spacing:3.012698px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws6{word-spacing:-14.920027px;}
.ws36{word-spacing:-2.988780px;}
.ws26{word-spacing:-0.537980px;}
.ws49{word-spacing:-0.095641px;}
.ws4d{word-spacing:0.000000px;}
.ws28{word-spacing:0.298878px;}
.ws27{word-spacing:0.597756px;}
.wsf{word-spacing:1.135736px;}
.ws1a{word-spacing:1.733492px;}
.ws4b{word-spacing:1.912824px;}
.ws33{word-spacing:2.211697px;}
.ws35{word-spacing:2.689902px;}
.ws29{word-spacing:3.168107px;}
.ws3d{word-spacing:3.227882px;}
.ws15{word-spacing:3.347434px;}
.ws3c{word-spacing:3.706087px;}
.ws1d{word-spacing:3.765863px;}
.ws4c{word-spacing:3.825648px;}
.ws1c{word-spacing:4.004965px;}
.ws17{word-spacing:4.064741px;}
.ws45{word-spacing:4.638598px;}
.ws23{word-spacing:4.722272px;}
.ws1b{word-spacing:4.782048px;}
.ws46{word-spacing:4.782060px;}
.ws18{word-spacing:5.678682px;}
.ws10{word-spacing:5.738458px;}
.ws5{word-spacing:5.917754px;}
.ws2{word-spacing:5.977560px;}
.ws42{word-spacing:6.455765px;}
.ws16{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.ws13{word-spacing:6.635092px;}
.ws32{word-spacing:6.694867px;}
.ws20{word-spacing:6.933970px;}
.ws43{word-spacing:6.933987px;}
.ws19{word-spacing:7.053521px;}
.ws37{word-spacing:7.173072px;}
.wsa{word-spacing:7.531726px;}
.ws24{word-spacing:7.711052px;}
.ws3e{word-spacing:8.846789px;}
.ws34{word-spacing:9.384769px;}
.ws25{word-spacing:9.922750px;}
.ws22{word-spacing:10.042301px;}
.ws48{word-spacing:10.185788px;}
.ws38{word-spacing:10.221628px;}
.ws21{word-spacing:10.460730px;}
.ws2e{word-spacing:11.237813px;}
.ws11{word-spacing:11.775793px;}
.ws2f{word-spacing:12.313774px;}
.wse{word-spacing:12.433325px;}
.ws8{word-spacing:12.552876px;}
.ws31{word-spacing:12.911530px;}
.ws3a{word-spacing:13.150632px;}
.ws1e{word-spacing:13.210408px;}
.ws14{word-spacing:13.449510px;}
.ws12{word-spacing:13.927715px;}
.ws30{word-spacing:14.645022px;}
.ws3f{word-spacing:14.764573px;}
.ws39{word-spacing:14.824349px;}
.wsd{word-spacing:15.302554px;}
.ws41{word-spacing:15.422105px;}
.ws9{word-spacing:15.661207px;}
.ws44{word-spacing:15.972080px;}
.ws47{word-spacing:16.689389px;}
.wsb{word-spacing:16.737168px;}
.ws2b{word-spacing:17.155597px;}
.ws4a{word-spacing:17.358878px;}
.ws4{word-spacing:17.932680px;}
.ws40{word-spacing:18.351109px;}
.ws2c{word-spacing:18.590212px;}
.ws1f{word-spacing:19.247743px;}
.wsc{word-spacing:19.725948px;}
.ws2d{word-spacing:22.654952px;}
.ws2a{word-spacing:23.013606px;}
.ws7{word-spacing:27.496776px;}
.ws3b{word-spacing:29.469371px;}
.ws0{word-spacing:50.068168px;}
._6{margin-left:-7.711052px;}
._0{margin-left:-6.455781px;}
._2{margin-left:-4.483170px;}
._4{margin-left:-3.108324px;}
._1{margin-left:-1.494390px;}
._3{width:2.988780px;}
._7{width:18.649987px;}
._5{width:29.349812px;}
._9{width:31.083312px;}
._8{width:36.941321px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y32{bottom:113.332500px;}
.y31{bottom:131.265000px;}
.y30{bottom:149.067000px;}
.y2f{bottom:167.001000px;}
.y2e{bottom:184.933500px;}
.y5d{bottom:196.272000px;}
.y2d{bottom:202.866000px;}
.y5c{bottom:209.721000px;}
.y2c{bottom:220.798500px;}
.y5b{bottom:223.171500px;}
.y5a{bottom:236.620500px;}
.y2b{bottom:238.731000px;}
.y59{bottom:250.069500px;}
.y2a{bottom:256.663500px;}
.y58{bottom:263.520000px;}
.y29{bottom:274.597500px;}
.y57{bottom:276.969000px;}
.y56{bottom:290.418000px;}
.y28{bottom:297.106500px;}
.y55{bottom:303.868500px;}
.y54{bottom:317.317500px;}
.y27{bottom:324.342000px;}
.y53{bottom:330.768000px;}
.y26{bottom:342.274500px;}
.y52{bottom:344.217000px;}
.y51{bottom:357.666000px;}
.y25{bottom:360.207000px;}
.y50{bottom:371.116500px;}
.y24{bottom:378.139500px;}
.y4f{bottom:393.307500px;}
.y23{bottom:396.072000px;}
.y22{bottom:414.006000px;}
.y4e{bottom:421.327500px;}
.y21{bottom:431.938500px;}
.y4d{bottom:439.260000px;}
.y20{bottom:449.871000px;}
.y4c{bottom:457.192500px;}
.y1f{bottom:467.803500px;}
.y4b{bottom:475.126500px;}
.y1e{bottom:485.736000px;}
.y4a{bottom:493.059000px;}
.y1d{bottom:503.538000px;}
.y49{bottom:510.991500px;}
.y1c{bottom:521.470500px;}
.y48{bottom:528.924000px;}
.y1b{bottom:539.404500px;}
.y47{bottom:546.856500px;}
.y1a{bottom:557.337000px;}
.y46{bottom:564.790500px;}
.y19{bottom:575.269500px;}
.y45{bottom:582.723000px;}
.y18{bottom:593.202000px;}
.y44{bottom:600.655500px;}
.y17{bottom:611.134500px;}
.y43{bottom:618.588000px;}
.y16{bottom:629.068500px;}
.y42{bottom:636.520500px;}
.y15{bottom:647.001000px;}
.y41{bottom:654.453000px;}
.y14{bottom:664.803000px;}
.y40{bottom:672.387000px;}
.y13{bottom:682.735500px;}
.y3f{bottom:690.319500px;}
.y12{bottom:700.668000px;}
.y3e{bottom:712.959000px;}
.y11{bottom:718.600500px;}
.y10{bottom:736.533000px;}
.y3d{bottom:740.979000px;}
.yf{bottom:754.335000px;}
.y3c{bottom:758.911500px;}
.ye{bottom:772.269000px;}
.y3b{bottom:776.844000px;}
.yd{bottom:790.201500px;}
.y3a{bottom:794.778000px;}
.yc{bottom:808.134000px;}
.y39{bottom:812.710500px;}
.yb{bottom:826.066500px;}
.y38{bottom:830.643000px;}
.ya{bottom:843.999000px;}
.y37{bottom:848.575500px;}
.y9{bottom:861.931500px;}
.y36{bottom:866.508000px;}
.y8{bottom:879.865500px;}
.y35{bottom:884.440500px;}
.y7{bottom:897.798000px;}
.y34{bottom:902.374500px;}
.y6{bottom:915.730500px;}
.y33{bottom:920.307000px;}
.y5{bottom:938.239500px;}
.y4{bottom:996.781500px;}
.y3{bottom:1015.273500px;}
.y2{bottom:1033.989000px;}
.y1{bottom:1081.062000px;}
.h4{height:32.900573px;}
.h3{height:41.125613px;}
.h2{height:45.238339px;}
.h1{height:97.984409px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:73.446000px;}
.x6{left:88.389000px;}
.x1{left:172.275000px;}
.x5{left:191.854500px;}
.x8{left:224.193000px;}
.x3{left:391.977000px;}
.x4{left:393.523500px;}
.x2{left:407.728500px;}
.x9{left:467.967000px;}
.xd{left:473.944500px;}
.xa{left:482.910000px;}
.xe{left:495.355500px;}
.xb{left:574.981500px;}
.xc{left:614.418000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.635446pt;}
.ls2{letter-spacing:2.656693pt;}
.ls0{letter-spacing:2.677954pt;}
.ws3{word-spacing:-13.283467pt;}
.ws6{word-spacing:-13.262246pt;}
.ws36{word-spacing:-2.656693pt;}
.ws26{word-spacing:-0.478205pt;}
.ws49{word-spacing:-0.085014pt;}
.ws4d{word-spacing:0.000000pt;}
.ws28{word-spacing:0.265669pt;}
.ws27{word-spacing:0.531339pt;}
.wsf{word-spacing:1.009543pt;}
.ws1a{word-spacing:1.540882pt;}
.ws4b{word-spacing:1.700288pt;}
.ws33{word-spacing:1.965953pt;}
.ws35{word-spacing:2.391024pt;}
.ws29{word-spacing:2.816095pt;}
.ws3d{word-spacing:2.869229pt;}
.ws15{word-spacing:2.975497pt;}
.ws3c{word-spacing:3.294300pt;}
.ws1d{word-spacing:3.347434pt;}
.ws4c{word-spacing:3.400576pt;}
.ws1c{word-spacing:3.559969pt;}
.ws17{word-spacing:3.613103pt;}
.ws45{word-spacing:4.123198pt;}
.ws23{word-spacing:4.197575pt;}
.ws1b{word-spacing:4.250709pt;}
.ws46{word-spacing:4.250720pt;}
.ws18{word-spacing:5.047717pt;}
.ws10{word-spacing:5.100851pt;}
.ws5{word-spacing:5.260226pt;}
.ws2{word-spacing:5.313387pt;}
.ws42{word-spacing:5.738458pt;}
.ws16{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.ws13{word-spacing:5.897859pt;}
.ws32{word-spacing:5.950993pt;}
.ws20{word-spacing:6.163529pt;}
.ws43{word-spacing:6.163544pt;}
.ws19{word-spacing:6.269796pt;}
.ws37{word-spacing:6.376064pt;}
.wsa{word-spacing:6.694867pt;}
.ws24{word-spacing:6.854269pt;}
.ws3e{word-spacing:7.863812pt;}
.ws34{word-spacing:8.342017pt;}
.ws25{word-spacing:8.820222pt;}
.ws22{word-spacing:8.926490pt;}
.ws48{word-spacing:9.054034pt;}
.ws38{word-spacing:9.085891pt;}
.ws21{word-spacing:9.298427pt;}
.ws2e{word-spacing:9.989167pt;}
.ws11{word-spacing:10.467372pt;}
.ws2f{word-spacing:10.945577pt;}
.wse{word-spacing:11.051844pt;}
.ws8{word-spacing:11.158112pt;}
.ws31{word-spacing:11.476915pt;}
.ws3a{word-spacing:11.689451pt;}
.ws1e{word-spacing:11.742585pt;}
.ws14{word-spacing:11.955120pt;}
.ws12{word-spacing:12.380191pt;}
.ws30{word-spacing:13.017797pt;}
.ws3f{word-spacing:13.124065pt;}
.ws39{word-spacing:13.177199pt;}
.wsd{word-spacing:13.602270pt;}
.ws41{word-spacing:13.708538pt;}
.ws9{word-spacing:13.921073pt;}
.ws44{word-spacing:14.197405pt;}
.ws47{word-spacing:14.835013pt;}
.wsb{word-spacing:14.877483pt;}
.ws2b{word-spacing:15.249420pt;}
.ws4a{word-spacing:15.430114pt;}
.ws4{word-spacing:15.940160pt;}
.ws40{word-spacing:16.312097pt;}
.ws2c{word-spacing:16.524633pt;}
.ws1f{word-spacing:17.109105pt;}
.wsc{word-spacing:17.534176pt;}
.ws2d{word-spacing:20.137735pt;}
.ws2a{word-spacing:20.456539pt;}
.ws7{word-spacing:24.441579pt;}
.ws3b{word-spacing:26.194996pt;}
.ws0{word-spacing:44.505038pt;}
._6{margin-left:-6.854269pt;}
._0{margin-left:-5.738472pt;}
._2{margin-left:-3.985040pt;}
._4{margin-left:-2.762955pt;}
._1{margin-left:-1.328347pt;}
._3{width:2.656693pt;}
._7{width:16.577766pt;}
._5{width:26.088722pt;}
._9{width:27.629611pt;}
._8{width:32.836730pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:100.740000pt;}
.y31{bottom:116.680000pt;}
.y30{bottom:132.504000pt;}
.y2f{bottom:148.445333pt;}
.y2e{bottom:164.385333pt;}
.y5d{bottom:174.464000pt;}
.y2d{bottom:180.325333pt;}
.y5c{bottom:186.418667pt;}
.y2c{bottom:196.265333pt;}
.y5b{bottom:198.374667pt;}
.y5a{bottom:210.329333pt;}
.y2b{bottom:212.205333pt;}
.y59{bottom:222.284000pt;}
.y2a{bottom:228.145333pt;}
.y58{bottom:234.240000pt;}
.y29{bottom:244.086667pt;}
.y57{bottom:246.194667pt;}
.y56{bottom:258.149333pt;}
.y28{bottom:264.094667pt;}
.y55{bottom:270.105333pt;}
.y54{bottom:282.060000pt;}
.y27{bottom:288.304000pt;}
.y53{bottom:294.016000pt;}
.y26{bottom:304.244000pt;}
.y52{bottom:305.970667pt;}
.y51{bottom:317.925333pt;}
.y25{bottom:320.184000pt;}
.y50{bottom:329.881333pt;}
.y24{bottom:336.124000pt;}
.y4f{bottom:349.606667pt;}
.y23{bottom:352.064000pt;}
.y22{bottom:368.005333pt;}
.y4e{bottom:374.513333pt;}
.y21{bottom:383.945333pt;}
.y4d{bottom:390.453333pt;}
.y20{bottom:399.885333pt;}
.y4c{bottom:406.393333pt;}
.y1f{bottom:415.825333pt;}
.y4b{bottom:422.334667pt;}
.y1e{bottom:431.765333pt;}
.y4a{bottom:438.274667pt;}
.y1d{bottom:447.589333pt;}
.y49{bottom:454.214667pt;}
.y1c{bottom:463.529333pt;}
.y48{bottom:470.154667pt;}
.y1b{bottom:479.470667pt;}
.y47{bottom:486.094667pt;}
.y1a{bottom:495.410667pt;}
.y46{bottom:502.036000pt;}
.y19{bottom:511.350667pt;}
.y45{bottom:517.976000pt;}
.y18{bottom:527.290667pt;}
.y44{bottom:533.916000pt;}
.y17{bottom:543.230667pt;}
.y43{bottom:549.856000pt;}
.y16{bottom:559.172000pt;}
.y42{bottom:565.796000pt;}
.y15{bottom:575.112000pt;}
.y41{bottom:581.736000pt;}
.y14{bottom:590.936000pt;}
.y40{bottom:597.677333pt;}
.y13{bottom:606.876000pt;}
.y3f{bottom:613.617333pt;}
.y12{bottom:622.816000pt;}
.y3e{bottom:633.741333pt;}
.y11{bottom:638.756000pt;}
.y10{bottom:654.696000pt;}
.y3d{bottom:658.648000pt;}
.yf{bottom:670.520000pt;}
.y3c{bottom:674.588000pt;}
.ye{bottom:686.461333pt;}
.y3b{bottom:690.528000pt;}
.yd{bottom:702.401333pt;}
.y3a{bottom:706.469333pt;}
.yc{bottom:718.341333pt;}
.y39{bottom:722.409333pt;}
.yb{bottom:734.281333pt;}
.y38{bottom:738.349333pt;}
.ya{bottom:750.221333pt;}
.y37{bottom:754.289333pt;}
.y9{bottom:766.161333pt;}
.y36{bottom:770.229333pt;}
.y8{bottom:782.102667pt;}
.y35{bottom:786.169333pt;}
.y7{bottom:798.042667pt;}
.y34{bottom:802.110667pt;}
.y6{bottom:813.982667pt;}
.y33{bottom:818.050667pt;}
.y5{bottom:833.990667pt;}
.y4{bottom:886.028000pt;}
.y3{bottom:902.465333pt;}
.y2{bottom:919.101333pt;}
.y1{bottom:960.944000pt;}
.h4{height:29.244954pt;}
.h3{height:36.556100pt;}
.h2{height:40.211857pt;}
.h1{height:87.097253pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:65.285333pt;}
.x6{left:78.568000pt;}
.x1{left:153.133333pt;}
.x5{left:170.537333pt;}
.x8{left:199.282667pt;}
.x3{left:348.424000pt;}
.x4{left:349.798667pt;}
.x2{left:362.425333pt;}
.x9{left:415.970667pt;}
.xd{left:421.284000pt;}
.xa{left:429.253333pt;}
.xe{left:440.316000pt;}
.xb{left:511.094667pt;}
.xc{left:546.149333pt;}
}




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