
    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_632a71152274729b31deaed4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.970000;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_189a71fbe2988e15a49836c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982000;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_3eeb8dd8b6ce99540db9d9de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112667;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_2fc13b6d0bdc81cfedf23cac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.948000px;}
.v2{vertical-align:23.976000px;}
.ls13{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-1.224000px;}
.ls5{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.480000px;}
.ls2{letter-spacing:-0.396000px;}
.lsa{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.060000px;}
.lse{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.840000px;}
.ls12{letter-spacing:1.020000px;}
.lsb{letter-spacing:1.092000px;}
.ls6{letter-spacing:1.404000px;}
.ls0{letter-spacing:1.482000px;}
.ls3{letter-spacing:1.560000px;}
.lsc{letter-spacing:11.580000px;}
.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:-17.082000px;}
.ws2{word-spacing:-17.004000px;}
.ws8{word-spacing:-16.926000px;}
.wsb{word-spacing:-16.614000px;}
.ws3{word-spacing:-14.328000px;}
.ws9{word-spacing:-14.040000px;}
.wsa{word-spacing:-13.104000px;}
.wse{word-spacing:-12.960000px;}
.wsc{word-spacing:-12.660000px;}
.wsd{word-spacing:-11.940000px;}
.ws6{word-spacing:-10.746000px;}
.wsf{word-spacing:-10.620000px;}
.ws4{word-spacing:-8.353224px;}
.ws0{word-spacing:-7.657122px;}
.ws5{word-spacing:-6.264918px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-9.828000px;}
._5{margin-left:-7.722000px;}
._4{margin-left:-5.850000px;}
._8{margin-left:-4.026000px;}
._2{margin-left:-2.964000px;}
._1{margin-left:-1.560000px;}
._0{width:1.326000px;}
._6{width:3.048000px;}
._9{width:4.680000px;}
._7{width:5.808000px;}
._b{width:7.260000px;}
._c{width:8.538000px;}
._11{width:9.660000px;}
._10{width:11.016000px;}
._e{width:12.312000px;}
._f{width:13.494000px;}
._12{width:14.688000px;}
._d{width:289.602000px;}
._a{width:577.908000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.482000px;}
.fs2{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:109.313100px;}
.y21{bottom:114.241200px;}
.y67{bottom:116.550150px;}
.y54{bottom:120.150150px;}
.y43{bottom:121.580550px;}
.y37{bottom:125.513100px;}
.y9d{bottom:133.125150px;}
.y74{bottom:134.550150px;}
.y20{bottom:134.936700px;}
.y42{bottom:137.780550px;}
.y66{bottom:138.150150px;}
.y36{bottom:141.713100px;}
.y53{bottom:141.750150px;}
.y9c{bottom:151.125150px;}
.y1f{bottom:151.136700px;}
.y73{bottom:152.550150px;}
.y41{bottom:153.980550px;}
.y35{bottom:157.913100px;}
.y65{bottom:159.750150px;}
.y52{bottom:163.350150px;}
.y1e{bottom:167.336700px;}
.y9b{bottom:169.125150px;}
.y72{bottom:170.550150px;}
.y34{bottom:174.113100px;}
.y1d{bottom:179.041200px;}
.y64{bottom:181.350150px;}
.y51{bottom:184.950150px;}
.y9a{bottom:187.125150px;}
.y71{bottom:188.550150px;}
.y1c{bottom:199.736700px;}
.y63{bottom:202.950150px;}
.y99{bottom:205.125150px;}
.y50{bottom:206.550150px;}
.y1b{bottom:211.441200px;}
.y70{bottom:215.550150px;}
.y98{bottom:223.125150px;}
.y62{bottom:224.550150px;}
.y4f{bottom:228.150150px;}
.y1a{bottom:232.136700px;}
.y97{bottom:241.125150px;}
.y61{bottom:246.150150px;}
.y6f{bottom:247.950150px;}
.y4e{bottom:249.750150px;}
.y96{bottom:259.125150px;}
.y19{bottom:264.862650px;}
.y60{bottom:267.750150px;}
.y6e{bottom:269.550150px;}
.y4d{bottom:271.350150px;}
.y95{bottom:277.125150px;}
.y18{bottom:286.462650px;}
.y5f{bottom:289.350150px;}
.y6d{bottom:291.150150px;}
.y4c{bottom:292.950150px;}
.y94{bottom:295.125150px;}
.y17{bottom:308.062650px;}
.y5e{bottom:310.950150px;}
.y6c{bottom:312.750150px;}
.y93{bottom:313.125150px;}
.y4b{bottom:314.550150px;}
.y16{bottom:329.662650px;}
.y92{bottom:331.125150px;}
.y5d{bottom:332.550150px;}
.y6b{bottom:334.350150px;}
.y4a{bottom:336.150150px;}
.y91{bottom:349.125150px;}
.y15{bottom:351.262650px;}
.y5c{bottom:354.150150px;}
.y6a{bottom:355.950150px;}
.y49{bottom:366.750150px;}
.y90{bottom:367.125150px;}
.y5b{bottom:375.750150px;}
.y69{bottom:377.550150px;}
.y14{bottom:381.862650px;}
.y8f{bottom:385.125150px;}
.y5a{bottom:397.350150px;}
.y48{bottom:399.150150px;}
.y8e{bottom:403.125150px;}
.y68{bottom:408.150150px;}
.y13{bottom:414.262650px;}
.y59{bottom:418.950150px;}
.y47{bottom:420.750150px;}
.y8d{bottom:421.125150px;}
.y12{bottom:435.862650px;}
.y8c{bottom:439.125150px;}
.y58{bottom:440.550150px;}
.y46{bottom:442.350150px;}
.y8b{bottom:457.125150px;}
.y11{bottom:457.462650px;}
.y57{bottom:462.150150px;}
.y45{bottom:463.950150px;}
.y8a{bottom:475.125150px;}
.y10{bottom:479.062650px;}
.y56{bottom:483.750150px;}
.y44{bottom:485.550150px;}
.y89{bottom:493.125150px;}
.yf{bottom:500.662650px;}
.y55{bottom:505.350150px;}
.y33{bottom:507.150150px;}
.y88{bottom:511.125150px;}
.ye{bottom:522.262650px;}
.y40{bottom:526.950150px;}
.y32{bottom:528.750150px;}
.y87{bottom:529.125150px;}
.yd{bottom:543.862650px;}
.y86{bottom:547.125150px;}
.y3f{bottom:548.550150px;}
.y31{bottom:550.350150px;}
.y85{bottom:565.125150px;}
.yc{bottom:565.462650px;}
.y3e{bottom:570.150150px;}
.y30{bottom:571.950150px;}
.y84{bottom:583.125150px;}
.yb{bottom:587.062650px;}
.y3d{bottom:591.750150px;}
.y2f{bottom:593.550150px;}
.y83{bottom:601.125150px;}
.ya{bottom:608.662650px;}
.y3c{bottom:613.350150px;}
.y82{bottom:619.125150px;}
.y2e{bottom:624.150150px;}
.y9{bottom:630.262650px;}
.y3b{bottom:634.950150px;}
.y81{bottom:637.125150px;}
.y80{bottom:655.125150px;}
.y2d{bottom:656.550150px;}
.y8{bottom:660.862650px;}
.y7f{bottom:673.125150px;}
.y2c{bottom:678.150150px;}
.y7e{bottom:691.125150px;}
.y7{bottom:693.270150px;}
.y2b{bottom:699.750150px;}
.y7d{bottom:709.125150px;}
.y2a{bottom:721.350150px;}
.y6{bottom:722.070150px;}
.y7c{bottom:727.125150px;}
.y29{bottom:742.950150px;}
.y7b{bottom:745.125150px;}
.y5{bottom:750.862650px;}
.y7a{bottom:763.125150px;}
.y28{bottom:764.550150px;}
.y4{bottom:779.662650px;}
.y79{bottom:781.125150px;}
.y27{bottom:786.150150px;}
.y78{bottom:799.125150px;}
.y3{bottom:803.062650px;}
.y26{bottom:807.750150px;}
.y77{bottom:817.125150px;}
.y2{bottom:826.462650px;}
.y25{bottom:829.350150px;}
.y76{bottom:835.125150px;}
.y1{bottom:849.862650px;}
.y24{bottom:850.950150px;}
.y75{bottom:853.125150px;}
.y22{bottom:873.300150px;}
.y3a{bottom:882.556650px;}
.y39{bottom:883.312650px;}
.y23{bottom:886.012500px;}
.h5{height:27.144000px;}
.h7{height:40.112000px;}
.h6{height:45.126000px;}
.h8{height:50.140000px;}
.h2{height:55.154000px;}
.h1{height:55.614000px;}
.h4{height:60.168000px;}
.h3{height:65.182000px;}
.h0{height:972.000000px;}
.w0{width:648.000000px;}
.x0{left:0.000000px;}
.xd{left:67.500000px;}
.xa{left:75.600000px;}
.xf{left:85.499850px;}
.x2{left:89.091450px;}
.x9{left:93.600000px;}
.x15{left:102.600000px;}
.x3{left:104.262450px;}
.x6{left:112.081650px;}
.x1{left:119.491950px;}
.xe{left:191.009400px;}
.x13{left:214.642200px;}
.x4{left:221.535450px;}
.xb{left:248.160900px;}
.x14{left:259.920750px;}
.x12{left:261.139800px;}
.x7{left:275.553450px;}
.x8{left:277.039050px;}
.x11{left:279.527250px;}
.x5{left:320.674650px;}
.x10{left:564.000000px;}
.xc{left:565.200000px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.509333pt;}
.v2{vertical-align:21.312000pt;}
.ls13{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-1.088000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls2{letter-spacing:-0.352000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.746667pt;}
.ls12{letter-spacing:0.906667pt;}
.lsb{letter-spacing:0.970667pt;}
.ls6{letter-spacing:1.248000pt;}
.ls0{letter-spacing:1.317333pt;}
.ls3{letter-spacing:1.386667pt;}
.lsc{letter-spacing:10.293333pt;}
.ws1{word-spacing:-15.184000pt;}
.ws2{word-spacing:-15.114667pt;}
.ws8{word-spacing:-15.045333pt;}
.wsb{word-spacing:-14.768000pt;}
.ws3{word-spacing:-12.736000pt;}
.ws9{word-spacing:-12.480000pt;}
.wsa{word-spacing:-11.648000pt;}
.wse{word-spacing:-11.520000pt;}
.wsc{word-spacing:-11.253333pt;}
.wsd{word-spacing:-10.613333pt;}
.ws6{word-spacing:-9.552000pt;}
.wsf{word-spacing:-9.440000pt;}
.ws4{word-spacing:-7.425088pt;}
.ws0{word-spacing:-6.806331pt;}
.ws5{word-spacing:-5.568816pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-8.736000pt;}
._5{margin-left:-6.864000pt;}
._4{margin-left:-5.200000pt;}
._8{margin-left:-3.578667pt;}
._2{margin-left:-2.634667pt;}
._1{margin-left:-1.386667pt;}
._0{width:1.178667pt;}
._6{width:2.709333pt;}
._9{width:4.160000pt;}
._7{width:5.162667pt;}
._b{width:6.453333pt;}
._c{width:7.589333pt;}
._11{width:8.586667pt;}
._10{width:9.792000pt;}
._e{width:10.944000pt;}
._f{width:11.994667pt;}
._12{width:13.056000pt;}
._d{width:257.424000pt;}
._a{width:513.696000pt;}
.fs5{font-size:27.984000pt;}
.fs2{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:97.167200pt;}
.y21{bottom:101.547733pt;}
.y67{bottom:103.600133pt;}
.y54{bottom:106.800133pt;}
.y43{bottom:108.071600pt;}
.y37{bottom:111.567200pt;}
.y9d{bottom:118.333467pt;}
.y74{bottom:119.600133pt;}
.y20{bottom:119.943733pt;}
.y42{bottom:122.471600pt;}
.y66{bottom:122.800133pt;}
.y36{bottom:125.967200pt;}
.y53{bottom:126.000133pt;}
.y9c{bottom:134.333467pt;}
.y1f{bottom:134.343733pt;}
.y73{bottom:135.600133pt;}
.y41{bottom:136.871600pt;}
.y35{bottom:140.367200pt;}
.y65{bottom:142.000133pt;}
.y52{bottom:145.200133pt;}
.y1e{bottom:148.743733pt;}
.y9b{bottom:150.333467pt;}
.y72{bottom:151.600133pt;}
.y34{bottom:154.767200pt;}
.y1d{bottom:159.147733pt;}
.y64{bottom:161.200133pt;}
.y51{bottom:164.400133pt;}
.y9a{bottom:166.333467pt;}
.y71{bottom:167.600133pt;}
.y1c{bottom:177.543733pt;}
.y63{bottom:180.400133pt;}
.y99{bottom:182.333467pt;}
.y50{bottom:183.600133pt;}
.y1b{bottom:187.947733pt;}
.y70{bottom:191.600133pt;}
.y98{bottom:198.333467pt;}
.y62{bottom:199.600133pt;}
.y4f{bottom:202.800133pt;}
.y1a{bottom:206.343733pt;}
.y97{bottom:214.333467pt;}
.y61{bottom:218.800133pt;}
.y6f{bottom:220.400133pt;}
.y4e{bottom:222.000133pt;}
.y96{bottom:230.333467pt;}
.y19{bottom:235.433467pt;}
.y60{bottom:238.000133pt;}
.y6e{bottom:239.600133pt;}
.y4d{bottom:241.200133pt;}
.y95{bottom:246.333467pt;}
.y18{bottom:254.633467pt;}
.y5f{bottom:257.200133pt;}
.y6d{bottom:258.800133pt;}
.y4c{bottom:260.400133pt;}
.y94{bottom:262.333467pt;}
.y17{bottom:273.833467pt;}
.y5e{bottom:276.400133pt;}
.y6c{bottom:278.000133pt;}
.y93{bottom:278.333467pt;}
.y4b{bottom:279.600133pt;}
.y16{bottom:293.033467pt;}
.y92{bottom:294.333467pt;}
.y5d{bottom:295.600133pt;}
.y6b{bottom:297.200133pt;}
.y4a{bottom:298.800133pt;}
.y91{bottom:310.333467pt;}
.y15{bottom:312.233467pt;}
.y5c{bottom:314.800133pt;}
.y6a{bottom:316.400133pt;}
.y49{bottom:326.000133pt;}
.y90{bottom:326.333467pt;}
.y5b{bottom:334.000133pt;}
.y69{bottom:335.600133pt;}
.y14{bottom:339.433467pt;}
.y8f{bottom:342.333467pt;}
.y5a{bottom:353.200133pt;}
.y48{bottom:354.800133pt;}
.y8e{bottom:358.333467pt;}
.y68{bottom:362.800133pt;}
.y13{bottom:368.233467pt;}
.y59{bottom:372.400133pt;}
.y47{bottom:374.000133pt;}
.y8d{bottom:374.333467pt;}
.y12{bottom:387.433467pt;}
.y8c{bottom:390.333467pt;}
.y58{bottom:391.600133pt;}
.y46{bottom:393.200133pt;}
.y8b{bottom:406.333467pt;}
.y11{bottom:406.633467pt;}
.y57{bottom:410.800133pt;}
.y45{bottom:412.400133pt;}
.y8a{bottom:422.333467pt;}
.y10{bottom:425.833467pt;}
.y56{bottom:430.000133pt;}
.y44{bottom:431.600133pt;}
.y89{bottom:438.333467pt;}
.yf{bottom:445.033467pt;}
.y55{bottom:449.200133pt;}
.y33{bottom:450.800133pt;}
.y88{bottom:454.333467pt;}
.ye{bottom:464.233467pt;}
.y40{bottom:468.400133pt;}
.y32{bottom:470.000133pt;}
.y87{bottom:470.333467pt;}
.yd{bottom:483.433467pt;}
.y86{bottom:486.333467pt;}
.y3f{bottom:487.600133pt;}
.y31{bottom:489.200133pt;}
.y85{bottom:502.333467pt;}
.yc{bottom:502.633467pt;}
.y3e{bottom:506.800133pt;}
.y30{bottom:508.400133pt;}
.y84{bottom:518.333467pt;}
.yb{bottom:521.833467pt;}
.y3d{bottom:526.000133pt;}
.y2f{bottom:527.600133pt;}
.y83{bottom:534.333467pt;}
.ya{bottom:541.033467pt;}
.y3c{bottom:545.200133pt;}
.y82{bottom:550.333467pt;}
.y2e{bottom:554.800133pt;}
.y9{bottom:560.233467pt;}
.y3b{bottom:564.400133pt;}
.y81{bottom:566.333467pt;}
.y80{bottom:582.333467pt;}
.y2d{bottom:583.600133pt;}
.y8{bottom:587.433467pt;}
.y7f{bottom:598.333467pt;}
.y2c{bottom:602.800133pt;}
.y7e{bottom:614.333467pt;}
.y7{bottom:616.240133pt;}
.y2b{bottom:622.000133pt;}
.y7d{bottom:630.333467pt;}
.y2a{bottom:641.200133pt;}
.y6{bottom:641.840133pt;}
.y7c{bottom:646.333467pt;}
.y29{bottom:660.400133pt;}
.y7b{bottom:662.333467pt;}
.y5{bottom:667.433467pt;}
.y7a{bottom:678.333467pt;}
.y28{bottom:679.600133pt;}
.y4{bottom:693.033467pt;}
.y79{bottom:694.333467pt;}
.y27{bottom:698.800133pt;}
.y78{bottom:710.333467pt;}
.y3{bottom:713.833467pt;}
.y26{bottom:718.000133pt;}
.y77{bottom:726.333467pt;}
.y2{bottom:734.633467pt;}
.y25{bottom:737.200133pt;}
.y76{bottom:742.333467pt;}
.y1{bottom:755.433467pt;}
.y24{bottom:756.400133pt;}
.y75{bottom:758.333467pt;}
.y22{bottom:776.266800pt;}
.y3a{bottom:784.494800pt;}
.y39{bottom:785.166800pt;}
.y23{bottom:787.566667pt;}
.h5{height:24.128000pt;}
.h7{height:35.655111pt;}
.h6{height:40.112000pt;}
.h8{height:44.568889pt;}
.h2{height:49.025778pt;}
.h1{height:49.434667pt;}
.h4{height:53.482667pt;}
.h3{height:57.939556pt;}
.h0{height:864.000000pt;}
.w0{width:576.000000pt;}
.x0{left:0.000000pt;}
.xd{left:60.000000pt;}
.xa{left:67.200000pt;}
.xf{left:75.999867pt;}
.x2{left:79.192400pt;}
.x9{left:83.200000pt;}
.x15{left:91.200000pt;}
.x3{left:92.677733pt;}
.x6{left:99.628133pt;}
.x1{left:106.215067pt;}
.xe{left:169.786133pt;}
.x13{left:190.793067pt;}
.x4{left:196.920400pt;}
.xb{left:220.587467pt;}
.x14{left:231.040667pt;}
.x12{left:232.124267pt;}
.x7{left:244.936400pt;}
.x8{left:246.256933pt;}
.x11{left:248.468667pt;}
.x5{left:285.044133pt;}
.x10{left:501.333333pt;}
.xc{left:502.400000pt;}
}




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