
    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_34b031c2e65dce6bd9ecaf8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_f3341ac53229011a456b94db.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_2a4cab7a58346ec23d98246a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137000;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_61ea30365f6dd89026e1dbe9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132000;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_cfebe31933851c0b19509308.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.132000px;}
.ls2{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.396000px;}
.lsf{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.594000px;}
.lse{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.726000px;}
.ls9{letter-spacing:0.924000px;}
.ls8{letter-spacing:1.320000px;}
.lsa{letter-spacing:2.442000px;}
.ls0{letter-spacing:10.656000px;}
.ls7{letter-spacing:833.121000px;}
.lsc{letter-spacing:889.799400px;}
.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:-12.000000px;}
.ws3{word-spacing:-10.500000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:836.118000px;}
.ws4{word-spacing:892.797600px;}
._1{margin-left:-10.656000px;}
._7{margin-left:-1.320000px;}
._5{width:1.584000px;}
._6{width:2.904000px;}
._4{width:4.686000px;}
._2{width:6.204000px;}
._3{width:8.250000px;}
._0{width:13.344000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:63.779100px;}
.y22{bottom:63.779850px;}
.y1e{bottom:115.219950px;}
.y4b{bottom:116.417400px;}
.y65{bottom:116.433900px;}
.y92{bottom:117.011400px;}
.y1d{bottom:133.221450px;}
.y4a{bottom:134.418900px;}
.y64{bottom:134.435400px;}
.y91{bottom:135.012900px;}
.y1c{bottom:151.222950px;}
.y49{bottom:152.420400px;}
.y63{bottom:152.436900px;}
.y90{bottom:163.211400px;}
.y6c{bottom:169.224450px;}
.y6f{bottom:170.421900px;}
.y62{bottom:170.438400px;}
.y1b{bottom:178.216950px;}
.y48{bottom:179.414400px;}
.y8f{bottom:181.212900px;}
.y6e{bottom:188.423400px;}
.y61{bottom:188.439900px;}
.y1a{bottom:196.218450px;}
.y47{bottom:197.415900px;}
.y8e{bottom:199.214400px;}
.y19{bottom:214.219950px;}
.y46{bottom:215.417400px;}
.y60{bottom:215.433900px;}
.y8d{bottom:217.215900px;}
.y18{bottom:232.221450px;}
.y45{bottom:233.418900px;}
.y5f{bottom:233.435400px;}
.y8c{bottom:235.217400px;}
.y17{bottom:250.222950px;}
.y44{bottom:251.420400px;}
.y5e{bottom:251.436900px;}
.y8b{bottom:263.415900px;}
.y16{bottom:268.224450px;}
.y43{bottom:269.421900px;}
.y5d{bottom:269.438400px;}
.y8a{bottom:281.417400px;}
.y15{bottom:286.225950px;}
.y42{bottom:287.423400px;}
.y5c{bottom:287.439900px;}
.y89{bottom:299.418900px;}
.y14{bottom:304.227450px;}
.y41{bottom:305.424900px;}
.y5b{bottom:305.441400px;}
.y88{bottom:317.420400px;}
.y13{bottom:322.228950px;}
.y40{bottom:323.426400px;}
.y5a{bottom:332.435400px;}
.y87{bottom:335.421900px;}
.y12{bottom:340.230450px;}
.y6d{bottom:341.427900px;}
.y3f{bottom:350.420400px;}
.y59{bottom:350.436900px;}
.y86{bottom:353.423400px;}
.y11{bottom:358.231950px;}
.y3e{bottom:368.421900px;}
.y58{bottom:368.438400px;}
.y6b{bottom:376.233450px;}
.y85{bottom:381.621900px;}
.y10{bottom:385.225950px;}
.y3d{bottom:386.423400px;}
.y57{bottom:386.439900px;}
.y84{bottom:399.623400px;}
.yf{bottom:403.227450px;}
.y3c{bottom:404.424900px;}
.y56{bottom:404.441400px;}
.y83{bottom:417.624900px;}
.ye{bottom:421.228950px;}
.y3b{bottom:422.426400px;}
.y55{bottom:431.435400px;}
.y82{bottom:435.626400px;}
.yd{bottom:439.230450px;}
.y3a{bottom:440.427900px;}
.y54{bottom:449.436900px;}
.y81{bottom:453.627900px;}
.yc{bottom:457.231950px;}
.y39{bottom:458.429400px;}
.y53{bottom:467.438400px;}
.yb{bottom:475.233450px;}
.y38{bottom:476.430900px;}
.y80{bottom:481.826400px;}
.y52{bottom:485.439900px;}
.ya{bottom:493.234950px;}
.y37{bottom:494.432400px;}
.y7f{bottom:499.827900px;}
.y51{bottom:503.441400px;}
.y9{bottom:511.236450px;}
.y36{bottom:512.433900px;}
.y7e{bottom:517.829400px;}
.y50{bottom:521.442900px;}
.y35{bottom:530.435400px;}
.y7d{bottom:535.830900px;}
.y8{bottom:538.230450px;}
.y4f{bottom:539.444400px;}
.y34{bottom:548.436900px;}
.y7c{bottom:553.832400px;}
.y7{bottom:556.231950px;}
.y33{bottom:566.438400px;}
.y7b{bottom:571.833900px;}
.y6{bottom:574.233450px;}
.y4e{bottom:584.439900px;}
.y7a{bottom:589.835400px;}
.y5{bottom:592.234950px;}
.y32{bottom:593.432400px;}
.y4d{bottom:602.441400px;}
.y4{bottom:610.236450px;}
.y31{bottom:611.433900px;}
.y79{bottom:618.033900px;}
.y4c{bottom:620.442900px;}
.y3{bottom:628.237950px;}
.y30{bottom:629.435400px;}
.y78{bottom:636.035400px;}
.y2f{bottom:647.436900px;}
.y6a{bottom:647.453400px;}
.y77{bottom:654.036900px;}
.y2e{bottom:665.438400px;}
.y69{bottom:665.454900px;}
.y76{bottom:672.038400px;}
.y2d{bottom:683.439900px;}
.y9d{bottom:692.448150px;}
.y68{bottom:692.448900px;}
.y75{bottom:700.236900px;}
.y2c{bottom:701.441400px;}
.y9c{bottom:710.449650px;}
.y74{bottom:718.238400px;}
.y2b{bottom:719.442900px;}
.y2{bottom:727.522800px;}
.y73{bottom:736.239900px;}
.y9b{bottom:737.443650px;}
.y2a{bottom:737.444400px;}
.y67{bottom:746.436900px;}
.y72{bottom:754.241400px;}
.y29{bottom:755.445900px;}
.y66{bottom:764.438400px;}
.y71{bottom:772.242900px;}
.y9a{bottom:773.446650px;}
.y28{bottom:782.439900px;}
.y70{bottom:790.244400px;}
.y99{bottom:800.440650px;}
.y27{bottom:800.441400px;}
.y98{bottom:818.442150px;}
.y26{bottom:818.442900px;}
.y97{bottom:836.443650px;}
.y25{bottom:836.444400px;}
.y96{bottom:854.445150px;}
.y24{bottom:854.445900px;}
.y95{bottom:872.446650px;}
.y23{bottom:872.447400px;}
.y1{bottom:892.730400px;}
.y93{bottom:909.920850px;}
.y21{bottom:909.921600px;}
.y20{bottom:927.404550px;}
.y1f{bottom:940.904550px;}
.h2{height:35.328000px;}
.h6{height:41.424000px;}
.h5{height:46.602000px;}
.h4{height:56.958000px;}
.h3{height:78.120000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:106.302000px;}
.x3{left:131.811000px;}
.x8{left:241.618500px;}
.x2{left:270.226050px;}
.xa{left:312.975300px;}
.x6{left:329.954400px;}
.xb{left:344.124000px;}
.x7{left:413.070000px;}
.x1{left:445.299000px;}
.x5{left:456.744900px;}
.x9{left:467.487000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.117333pt;}
.ls2{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.352000pt;}
.lsf{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.645333pt;}
.ls9{letter-spacing:0.821333pt;}
.ls8{letter-spacing:1.173333pt;}
.lsa{letter-spacing:2.170667pt;}
.ls0{letter-spacing:9.472000pt;}
.ls7{letter-spacing:740.552000pt;}
.lsc{letter-spacing:790.932800pt;}
.ws1{word-spacing:-10.666667pt;}
.ws3{word-spacing:-9.333333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:743.216000pt;}
.ws4{word-spacing:793.597867pt;}
._1{margin-left:-9.472000pt;}
._7{margin-left:-1.173333pt;}
._5{width:1.408000pt;}
._6{width:2.581333pt;}
._4{width:4.165333pt;}
._2{width:5.514667pt;}
._3{width:7.333333pt;}
._0{width:11.861333pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:56.692533pt;}
.y22{bottom:56.693200pt;}
.y1e{bottom:102.417733pt;}
.y4b{bottom:103.482133pt;}
.y65{bottom:103.496800pt;}
.y92{bottom:104.010133pt;}
.y1d{bottom:118.419067pt;}
.y4a{bottom:119.483467pt;}
.y64{bottom:119.498133pt;}
.y91{bottom:120.011467pt;}
.y1c{bottom:134.420400pt;}
.y49{bottom:135.484800pt;}
.y63{bottom:135.499467pt;}
.y90{bottom:145.076800pt;}
.y6c{bottom:150.421733pt;}
.y6f{bottom:151.486133pt;}
.y62{bottom:151.500800pt;}
.y1b{bottom:158.415067pt;}
.y48{bottom:159.479467pt;}
.y8f{bottom:161.078133pt;}
.y6e{bottom:167.487467pt;}
.y61{bottom:167.502133pt;}
.y1a{bottom:174.416400pt;}
.y47{bottom:175.480800pt;}
.y8e{bottom:177.079467pt;}
.y19{bottom:190.417733pt;}
.y46{bottom:191.482133pt;}
.y60{bottom:191.496800pt;}
.y8d{bottom:193.080800pt;}
.y18{bottom:206.419067pt;}
.y45{bottom:207.483467pt;}
.y5f{bottom:207.498133pt;}
.y8c{bottom:209.082133pt;}
.y17{bottom:222.420400pt;}
.y44{bottom:223.484800pt;}
.y5e{bottom:223.499467pt;}
.y8b{bottom:234.147467pt;}
.y16{bottom:238.421733pt;}
.y43{bottom:239.486133pt;}
.y5d{bottom:239.500800pt;}
.y8a{bottom:250.148800pt;}
.y15{bottom:254.423067pt;}
.y42{bottom:255.487467pt;}
.y5c{bottom:255.502133pt;}
.y89{bottom:266.150133pt;}
.y14{bottom:270.424400pt;}
.y41{bottom:271.488800pt;}
.y5b{bottom:271.503467pt;}
.y88{bottom:282.151467pt;}
.y13{bottom:286.425733pt;}
.y40{bottom:287.490133pt;}
.y5a{bottom:295.498133pt;}
.y87{bottom:298.152800pt;}
.y12{bottom:302.427067pt;}
.y6d{bottom:303.491467pt;}
.y3f{bottom:311.484800pt;}
.y59{bottom:311.499467pt;}
.y86{bottom:314.154133pt;}
.y11{bottom:318.428400pt;}
.y3e{bottom:327.486133pt;}
.y58{bottom:327.500800pt;}
.y6b{bottom:334.429733pt;}
.y85{bottom:339.219467pt;}
.y10{bottom:342.423067pt;}
.y3d{bottom:343.487467pt;}
.y57{bottom:343.502133pt;}
.y84{bottom:355.220800pt;}
.yf{bottom:358.424400pt;}
.y3c{bottom:359.488800pt;}
.y56{bottom:359.503467pt;}
.y83{bottom:371.222133pt;}
.ye{bottom:374.425733pt;}
.y3b{bottom:375.490133pt;}
.y55{bottom:383.498133pt;}
.y82{bottom:387.223467pt;}
.yd{bottom:390.427067pt;}
.y3a{bottom:391.491467pt;}
.y54{bottom:399.499467pt;}
.y81{bottom:403.224800pt;}
.yc{bottom:406.428400pt;}
.y39{bottom:407.492800pt;}
.y53{bottom:415.500800pt;}
.yb{bottom:422.429733pt;}
.y38{bottom:423.494133pt;}
.y80{bottom:428.290133pt;}
.y52{bottom:431.502133pt;}
.ya{bottom:438.431067pt;}
.y37{bottom:439.495467pt;}
.y7f{bottom:444.291467pt;}
.y51{bottom:447.503467pt;}
.y9{bottom:454.432400pt;}
.y36{bottom:455.496800pt;}
.y7e{bottom:460.292800pt;}
.y50{bottom:463.504800pt;}
.y35{bottom:471.498133pt;}
.y7d{bottom:476.294133pt;}
.y8{bottom:478.427067pt;}
.y4f{bottom:479.506133pt;}
.y34{bottom:487.499467pt;}
.y7c{bottom:492.295467pt;}
.y7{bottom:494.428400pt;}
.y33{bottom:503.500800pt;}
.y7b{bottom:508.296800pt;}
.y6{bottom:510.429733pt;}
.y4e{bottom:519.502133pt;}
.y7a{bottom:524.298133pt;}
.y5{bottom:526.431067pt;}
.y32{bottom:527.495467pt;}
.y4d{bottom:535.503467pt;}
.y4{bottom:542.432400pt;}
.y31{bottom:543.496800pt;}
.y79{bottom:549.363467pt;}
.y4c{bottom:551.504800pt;}
.y3{bottom:558.433733pt;}
.y30{bottom:559.498133pt;}
.y78{bottom:565.364800pt;}
.y2f{bottom:575.499467pt;}
.y6a{bottom:575.514133pt;}
.y77{bottom:581.366133pt;}
.y2e{bottom:591.500800pt;}
.y69{bottom:591.515467pt;}
.y76{bottom:597.367467pt;}
.y2d{bottom:607.502133pt;}
.y9d{bottom:615.509467pt;}
.y68{bottom:615.510133pt;}
.y75{bottom:622.432800pt;}
.y2c{bottom:623.503467pt;}
.y9c{bottom:631.510800pt;}
.y74{bottom:638.434133pt;}
.y2b{bottom:639.504800pt;}
.y2{bottom:646.686933pt;}
.y73{bottom:654.435467pt;}
.y9b{bottom:655.505467pt;}
.y2a{bottom:655.506133pt;}
.y67{bottom:663.499467pt;}
.y72{bottom:670.436800pt;}
.y29{bottom:671.507467pt;}
.y66{bottom:679.500800pt;}
.y71{bottom:686.438133pt;}
.y9a{bottom:687.508133pt;}
.y28{bottom:695.502133pt;}
.y70{bottom:702.439467pt;}
.y99{bottom:711.502800pt;}
.y27{bottom:711.503467pt;}
.y98{bottom:727.504133pt;}
.y26{bottom:727.504800pt;}
.y97{bottom:743.505467pt;}
.y25{bottom:743.506133pt;}
.y96{bottom:759.506800pt;}
.y24{bottom:759.507467pt;}
.y95{bottom:775.508133pt;}
.y23{bottom:775.508800pt;}
.y1{bottom:793.538133pt;}
.y93{bottom:808.818533pt;}
.y21{bottom:808.819200pt;}
.y20{bottom:824.359600pt;}
.y1f{bottom:836.359600pt;}
.h2{height:31.402667pt;}
.h6{height:36.821333pt;}
.h5{height:41.424000pt;}
.h4{height:50.629333pt;}
.h3{height:69.440000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:94.490667pt;}
.x3{left:117.165333pt;}
.x8{left:214.772000pt;}
.x2{left:240.200933pt;}
.xa{left:278.200267pt;}
.x6{left:293.292800pt;}
.xb{left:305.888000pt;}
.x7{left:367.173333pt;}
.x1{left:395.821333pt;}
.x5{left:405.995467pt;}
.x9{left:415.544000pt;}
}




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