
    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_9b4157b7f6bd432692f9701d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_5ab40bae5d50bdeeb5cbeeb4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_c1f28be6e848bdee3b33f496.woff')format("woff");}.ff3{font-family:ff3;line-height:1.335449;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_d291239ceab51f251f35b65b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_304539a01f7c5a8581aaa0a2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_626233d7473a5b9b6b25e9f1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024414;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;}
.ls7{letter-spacing:-5.184000px;}
.ls10{letter-spacing:-3.243000px;}
.lsf{letter-spacing:-2.760000px;}
.lsb{letter-spacing:-2.001000px;}
.lsc{letter-spacing:-1.449000px;}
.ls6{letter-spacing:-1.092000px;}
.lse{letter-spacing:-0.960000px;}
.ls1{letter-spacing:-0.441000px;}
.lsd{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:1.260000px;}
.ls8{letter-spacing:2.400000px;}
.ls9{letter-spacing:5.550000px;}
.ls3{letter-spacing:5.760000px;}
.ls2{letter-spacing:6.000000px;}
.lsa{letter-spacing:6.300000px;}
.ls11{letter-spacing:8.175000px;}
.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;}
}
.ws13{word-spacing:-29.250000px;}
.ws8{word-spacing:-26.625000px;}
.ws0{word-spacing:-25.164000px;}
.ws9{word-spacing:-18.102000px;}
.wsa{word-spacing:-17.043000px;}
.wsc{word-spacing:-15.594000px;}
.wsb{word-spacing:-15.042000px;}
.ws14{word-spacing:-14.820000px;}
.wse{word-spacing:-14.283000px;}
.wsf{word-spacing:-13.800000px;}
.ws15{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.ws4{word-spacing:-5.760000px;}
.wsd{word-spacing:-2.400000px;}
.ws6{word-spacing:-1.260000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.180000px;}
.ws10{word-spacing:0.420000px;}
.ws2{word-spacing:0.441000px;}
.ws12{word-spacing:0.552000px;}
.ws11{word-spacing:0.960000px;}
.ws7{word-spacing:1.092000px;}
._b{margin-left:-9.008400px;}
._a{margin-left:-7.431600px;}
._7{margin-left:-5.395200px;}
._9{margin-left:-3.367200px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._5{width:2.973600px;}
._4{width:4.025100px;}
._6{width:5.826000px;}
._8{width:7.452000px;}
._d{width:8.707800px;}
._e{width:9.848700px;}
._f{width:11.043900px;}
._10{width:12.108900px;}
._13{width:13.676400px;}
._12{width:445.668000px;}
._c{width:456.441600px;}
._0{width:578.400000px;}
._11{width:940.057200px;}
._3{width:947.227200px;}
._14{width:949.207200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y6d{bottom:106.165350px;}
.y44{bottom:106.268850px;}
.y1c{bottom:106.315650px;}
.y6c{bottom:126.589350px;}
.y1b{bottom:127.222650px;}
.y43{bottom:127.227600px;}
.y6b{bottom:147.013350px;}
.y1a{bottom:148.129650px;}
.y42{bottom:148.186350px;}
.y6a{bottom:167.437350px;}
.y19{bottom:169.036650px;}
.y41{bottom:169.145100px;}
.y69{bottom:187.861350px;}
.y18{bottom:189.943650px;}
.y40{bottom:190.103850px;}
.y68{bottom:208.285350px;}
.y17{bottom:210.850650px;}
.y3f{bottom:211.062600px;}
.y67{bottom:228.709350px;}
.y16{bottom:231.757650px;}
.y3e{bottom:232.021350px;}
.y66{bottom:249.133350px;}
.y15{bottom:252.664650px;}
.y3d{bottom:252.980100px;}
.y65{bottom:269.557350px;}
.y14{bottom:273.571650px;}
.y3c{bottom:273.938850px;}
.y64{bottom:289.981350px;}
.y13{bottom:294.478650px;}
.y3b{bottom:294.897600px;}
.y63{bottom:310.405350px;}
.y85{bottom:314.919900px;}
.y12{bottom:315.385650px;}
.y3a{bottom:315.856350px;}
.y62{bottom:330.829350px;}
.y84{bottom:335.169900px;}
.y39{bottom:336.815100px;}
.y61{bottom:351.253350px;}
.y83{bottom:355.419900px;}
.y38{bottom:357.773850px;}
.y60{bottom:371.677350px;}
.y82{bottom:375.669900px;}
.y37{bottom:378.732600px;}
.y11{bottom:386.965350px;}
.y5f{bottom:392.101350px;}
.y81{bottom:395.919900px;}
.y36{bottom:399.691350px;}
.y10{bottom:408.625350px;}
.y5e{bottom:412.525350px;}
.y35{bottom:420.650100px;}
.y5d{bottom:432.949350px;}
.y80{bottom:436.419900px;}
.y34{bottom:441.608850px;}
.y5c{bottom:453.373350px;}
.y7f{bottom:456.669900px;}
.yf{bottom:460.055850px;}
.y33{bottom:462.567600px;}
.y5b{bottom:473.797350px;}
.y7e{bottom:476.919900px;}
.y32{bottom:483.526350px;}
.ye{bottom:492.212850px;}
.y5a{bottom:494.221350px;}
.y7d{bottom:497.169900px;}
.y31{bottom:504.485100px;}
.y59{bottom:514.645350px;}
.y7c{bottom:517.419900px;}
.yd{bottom:524.369850px;}
.y30{bottom:525.443850px;}
.y58{bottom:535.069350px;}
.y7b{bottom:537.669900px;}
.y2f{bottom:546.402600px;}
.y57{bottom:555.493350px;}
.yc{bottom:556.526850px;}
.y2e{bottom:567.361350px;}
.y7a{bottom:570.669900px;}
.y56{bottom:575.917350px;}
.y2d{bottom:588.320100px;}
.yb{bottom:588.683850px;}
.y55{bottom:596.341350px;}
.y2c{bottom:609.278850px;}
.y79{bottom:612.155100px;}
.y54{bottom:616.765350px;}
.ya{bottom:620.840850px;}
.y2b{bottom:630.237600px;}
.y78{bottom:632.409600px;}
.y53{bottom:637.189350px;}
.y2a{bottom:651.196350px;}
.y9{bottom:652.999500px;}
.y52{bottom:657.613350px;}
.y77{bottom:661.169100px;}
.y29{bottom:672.155100px;}
.y51{bottom:678.037350px;}
.y76{bottom:681.423600px;}
.y28{bottom:693.113850px;}
.y50{bottom:698.461350px;}
.y75{bottom:701.678100px;}
.y27{bottom:714.072600px;}
.y4f{bottom:718.885350px;}
.y74{bottom:730.437600px;}
.y26{bottom:735.031350px;}
.y4e{bottom:739.309350px;}
.y25{bottom:755.990100px;}
.y8{bottom:756.730350px;}
.y4d{bottom:759.733350px;}
.y24{bottom:776.948850px;}
.y4c{bottom:780.157350px;}
.y73{bottom:781.192350px;}
.y7{bottom:786.895350px;}
.y23{bottom:797.907600px;}
.y4b{bottom:800.581350px;}
.y72{bottom:801.443850px;}
.y6{bottom:808.555350px;}
.y22{bottom:818.866350px;}
.y4a{bottom:821.005350px;}
.y71{bottom:821.695350px;}
.y5{bottom:830.215350px;}
.y21{bottom:839.825100px;}
.y49{bottom:841.429350px;}
.y70{bottom:841.946850px;}
.y4{bottom:860.380350px;}
.y20{bottom:860.783850px;}
.y48{bottom:861.853350px;}
.y6f{bottom:862.198350px;}
.y1f{bottom:881.742600px;}
.y3{bottom:882.040350px;}
.y47{bottom:882.277350px;}
.y6e{bottom:882.449850px;}
.y1e{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1d{bottom:948.189000px;}
.y46{bottom:966.189000px;}
.y45{bottom:984.189000px;}
.h8{height:40.757812px;}
.ha{height:46.992188px;}
.h4{height:50.947266px;}
.hb{height:52.141113px;}
.h3{height:53.494629px;}
.h7{height:58.589355px;}
.h2{height:63.684082px;}
.hd{height:64.687500px;}
.hc{height:67.921875px;}
.h5{height:71.326172px;}
.h9{height:74.390625px;}
.h6{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:80.907450px;}
.x5{left:82.214250px;}
.x4{left:83.999100px;}
.x1{left:85.039350px;}
.x8{left:104.364000px;}
.x3{left:105.613350px;}
.x2{left:233.415450px;}
.x7{left:234.513450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-4.608000pt;}
.ls10{letter-spacing:-2.882667pt;}
.lsf{letter-spacing:-2.453333pt;}
.lsb{letter-spacing:-1.778667pt;}
.lsc{letter-spacing:-1.288000pt;}
.ls6{letter-spacing:-0.970667pt;}
.lse{letter-spacing:-0.853333pt;}
.ls1{letter-spacing:-0.392000pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:1.120000pt;}
.ls8{letter-spacing:2.133333pt;}
.ls9{letter-spacing:4.933333pt;}
.ls3{letter-spacing:5.120000pt;}
.ls2{letter-spacing:5.333333pt;}
.lsa{letter-spacing:5.600000pt;}
.ls11{letter-spacing:7.266667pt;}
.ws13{word-spacing:-26.000000pt;}
.ws8{word-spacing:-23.666667pt;}
.ws0{word-spacing:-22.368000pt;}
.ws9{word-spacing:-16.090667pt;}
.wsa{word-spacing:-15.149333pt;}
.wsc{word-spacing:-13.861333pt;}
.wsb{word-spacing:-13.370667pt;}
.ws14{word-spacing:-13.173333pt;}
.wse{word-spacing:-12.696000pt;}
.wsf{word-spacing:-12.266667pt;}
.ws15{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.ws4{word-spacing:-5.120000pt;}
.wsd{word-spacing:-2.133333pt;}
.ws6{word-spacing:-1.120000pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.160000pt;}
.ws10{word-spacing:0.373333pt;}
.ws2{word-spacing:0.392000pt;}
.ws12{word-spacing:0.490667pt;}
.ws11{word-spacing:0.853333pt;}
.ws7{word-spacing:0.970667pt;}
._b{margin-left:-8.007467pt;}
._a{margin-left:-6.605867pt;}
._7{margin-left:-4.795733pt;}
._9{margin-left:-2.993067pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._5{width:2.643200pt;}
._4{width:3.577867pt;}
._6{width:5.178667pt;}
._8{width:6.624000pt;}
._d{width:7.740267pt;}
._e{width:8.754400pt;}
._f{width:9.816800pt;}
._10{width:10.763467pt;}
._13{width:12.156800pt;}
._12{width:396.149333pt;}
._c{width:405.725867pt;}
._0{width:514.133333pt;}
._11{width:835.606400pt;}
._3{width:841.979733pt;}
._14{width:843.739733pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y6d{bottom:94.369200pt;}
.y44{bottom:94.461200pt;}
.y1c{bottom:94.502800pt;}
.y6c{bottom:112.523867pt;}
.y1b{bottom:113.086800pt;}
.y43{bottom:113.091200pt;}
.y6b{bottom:130.678533pt;}
.y1a{bottom:131.670800pt;}
.y42{bottom:131.721200pt;}
.y6a{bottom:148.833200pt;}
.y19{bottom:150.254800pt;}
.y41{bottom:150.351200pt;}
.y69{bottom:166.987867pt;}
.y18{bottom:168.838800pt;}
.y40{bottom:168.981200pt;}
.y68{bottom:185.142533pt;}
.y17{bottom:187.422800pt;}
.y3f{bottom:187.611200pt;}
.y67{bottom:203.297200pt;}
.y16{bottom:206.006800pt;}
.y3e{bottom:206.241200pt;}
.y66{bottom:221.451867pt;}
.y15{bottom:224.590800pt;}
.y3d{bottom:224.871200pt;}
.y65{bottom:239.606533pt;}
.y14{bottom:243.174800pt;}
.y3c{bottom:243.501200pt;}
.y64{bottom:257.761200pt;}
.y13{bottom:261.758800pt;}
.y3b{bottom:262.131200pt;}
.y63{bottom:275.915867pt;}
.y85{bottom:279.928800pt;}
.y12{bottom:280.342800pt;}
.y3a{bottom:280.761200pt;}
.y62{bottom:294.070533pt;}
.y84{bottom:297.928800pt;}
.y39{bottom:299.391200pt;}
.y61{bottom:312.225200pt;}
.y83{bottom:315.928800pt;}
.y38{bottom:318.021200pt;}
.y60{bottom:330.379867pt;}
.y82{bottom:333.928800pt;}
.y37{bottom:336.651200pt;}
.y11{bottom:343.969200pt;}
.y5f{bottom:348.534533pt;}
.y81{bottom:351.928800pt;}
.y36{bottom:355.281200pt;}
.y10{bottom:363.222533pt;}
.y5e{bottom:366.689200pt;}
.y35{bottom:373.911200pt;}
.y5d{bottom:384.843867pt;}
.y80{bottom:387.928800pt;}
.y34{bottom:392.541200pt;}
.y5c{bottom:402.998533pt;}
.y7f{bottom:405.928800pt;}
.yf{bottom:408.938533pt;}
.y33{bottom:411.171200pt;}
.y5b{bottom:421.153200pt;}
.y7e{bottom:423.928800pt;}
.y32{bottom:429.801200pt;}
.ye{bottom:437.522533pt;}
.y5a{bottom:439.307867pt;}
.y7d{bottom:441.928800pt;}
.y31{bottom:448.431200pt;}
.y59{bottom:457.462533pt;}
.y7c{bottom:459.928800pt;}
.yd{bottom:466.106533pt;}
.y30{bottom:467.061200pt;}
.y58{bottom:475.617200pt;}
.y7b{bottom:477.928800pt;}
.y2f{bottom:485.691200pt;}
.y57{bottom:493.771867pt;}
.yc{bottom:494.690533pt;}
.y2e{bottom:504.321200pt;}
.y7a{bottom:507.262133pt;}
.y56{bottom:511.926533pt;}
.y2d{bottom:522.951200pt;}
.yb{bottom:523.274533pt;}
.y55{bottom:530.081200pt;}
.y2c{bottom:541.581200pt;}
.y79{bottom:544.137867pt;}
.y54{bottom:548.235867pt;}
.ya{bottom:551.858533pt;}
.y2b{bottom:560.211200pt;}
.y78{bottom:562.141867pt;}
.y53{bottom:566.390533pt;}
.y2a{bottom:578.841200pt;}
.y9{bottom:580.444000pt;}
.y52{bottom:584.545200pt;}
.y77{bottom:587.705867pt;}
.y29{bottom:597.471200pt;}
.y51{bottom:602.699867pt;}
.y76{bottom:605.709867pt;}
.y28{bottom:616.101200pt;}
.y50{bottom:620.854533pt;}
.y75{bottom:623.713867pt;}
.y27{bottom:634.731200pt;}
.y4f{bottom:639.009200pt;}
.y74{bottom:649.277867pt;}
.y26{bottom:653.361200pt;}
.y4e{bottom:657.163867pt;}
.y25{bottom:671.991200pt;}
.y8{bottom:672.649200pt;}
.y4d{bottom:675.318533pt;}
.y24{bottom:690.621200pt;}
.y4c{bottom:693.473200pt;}
.y73{bottom:694.393200pt;}
.y7{bottom:699.462533pt;}
.y23{bottom:709.251200pt;}
.y4b{bottom:711.627867pt;}
.y72{bottom:712.394533pt;}
.y6{bottom:718.715867pt;}
.y22{bottom:727.881200pt;}
.y4a{bottom:729.782533pt;}
.y71{bottom:730.395867pt;}
.y5{bottom:737.969200pt;}
.y21{bottom:746.511200pt;}
.y49{bottom:747.937200pt;}
.y70{bottom:748.397200pt;}
.y4{bottom:764.782533pt;}
.y20{bottom:765.141200pt;}
.y48{bottom:766.091867pt;}
.y6f{bottom:766.398533pt;}
.y1f{bottom:783.771200pt;}
.y3{bottom:784.035867pt;}
.y47{bottom:784.246533pt;}
.y6e{bottom:784.399867pt;}
.y1e{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1d{bottom:842.834667pt;}
.y46{bottom:858.834667pt;}
.y45{bottom:874.834667pt;}
.h8{height:36.229167pt;}
.ha{height:41.770833pt;}
.h4{height:45.286458pt;}
.hb{height:46.347656pt;}
.h3{height:47.550781pt;}
.h7{height:52.079427pt;}
.h2{height:56.608073pt;}
.hd{height:57.500000pt;}
.hc{height:60.375000pt;}
.h5{height:63.401042pt;}
.h9{height:66.125000pt;}
.h6{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:71.917733pt;}
.x5{left:73.079333pt;}
.x4{left:74.665867pt;}
.x1{left:75.590533pt;}
.x8{left:92.768000pt;}
.x3{left:93.878533pt;}
.x2{left:207.480400pt;}
.x7{left:208.456400pt;}
}




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