
    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_9ceeac9598da295149c1d4d3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_19dd7912b88f3e34aaa37f8d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_c7cf4766abd3d19fc0f2797b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_15077af5995e9d8d7b464dc9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7297faa889dcbeeb10947d18.woff')format("woff");}.ff5{font-family:ff5;line-height:1.182129;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_47811a70a0ed3f08767a63d9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.016113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ee3b7112459e631a924f20b8.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.lsb{letter-spacing:-2.691000px;}
.lsa{letter-spacing:-1.725000px;}
.lse{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.260000px;}
.ls6{letter-spacing:2.400000px;}
.ls9{letter-spacing:2.497800px;}
.lsc{letter-spacing:3.339600px;}
.lsd{letter-spacing:4.347000px;}
.ls8{letter-spacing:5.460000px;}
.ls3{letter-spacing:5.820000px;}
.ls2{letter-spacing:6.000000px;}
.lsf{letter-spacing:6.300000px;}
.ls7{letter-spacing:6.525000px;}
.ls1{letter-spacing:7.260000px;}
.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;}
}
.ws6{word-spacing:-27.600000px;}
.wsd{word-spacing:-22.050000px;}
.wsb{word-spacing:-19.389000px;}
.ws7{word-spacing:-17.262000px;}
.ws9{word-spacing:-17.043000px;}
.wse{word-spacing:-15.561000px;}
.wsa{word-spacing:-15.318000px;}
.wsf{word-spacing:-14.553000px;}
.ws1{word-spacing:-7.260000px;}
.ws10{word-spacing:-6.300000px;}
.ws2{word-spacing:-6.000000px;}
.ws3{word-spacing:-5.820000px;}
.ws8{word-spacing:-2.400000px;}
.ws4{word-spacing:-1.260000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.720000px;}
.wsc{word-spacing:2.691000px;}
._1a{margin-left:-18.338100px;}
._a{margin-left:-9.881100px;}
._b{margin-left:-8.095800px;}
._7{margin-left:-6.234000px;}
._15{margin-left:-5.226000px;}
._8{margin-left:-4.131300px;}
._5{margin-left:-2.580000px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._4{width:2.765100px;}
._c{width:3.788400px;}
._6{width:5.586000px;}
._9{width:7.194000px;}
._e{width:9.083100px;}
._d{width:10.872900px;}
._10{width:12.692700px;}
._11{width:13.899300px;}
._19{width:16.259700px;}
._18{width:23.143200px;}
._12{width:30.066000px;}
._13{width:31.375500px;}
._f{width:449.548200px;}
._17{width:450.693000px;}
._0{width:578.400000px;}
._3{width:940.552200px;}
._14{width:943.177200px;}
._16{width:947.227200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y8c{bottom:106.118850px;}
.y45{bottom:106.165350px;}
.y69{bottom:106.269000px;}
.y1c{bottom:106.287300px;}
.y44{bottom:126.589350px;}
.y8b{bottom:126.719850px;}
.y68{bottom:127.074750px;}
.y1b{bottom:127.970550px;}
.y43{bottom:147.013350px;}
.y67{bottom:147.880500px;}
.y1a{bottom:149.653800px;}
.y8a{bottom:155.825850px;}
.y42{bottom:167.437350px;}
.y66{bottom:168.686250px;}
.y19{bottom:171.337050px;}
.y89{bottom:176.426850px;}
.y41{bottom:187.861350px;}
.y65{bottom:189.492000px;}
.y18{bottom:193.020300px;}
.y88{bottom:205.532850px;}
.y40{bottom:208.285350px;}
.y17{bottom:214.703550px;}
.y64{bottom:218.802750px;}
.y87{bottom:226.133850px;}
.y3f{bottom:228.709350px;}
.y16{bottom:236.386800px;}
.y63{bottom:239.608500px;}
.y86{bottom:246.734850px;}
.y3e{bottom:249.133350px;}
.y15{bottom:258.070050px;}
.y62{bottom:260.414250px;}
.y85{bottom:267.335850px;}
.y3d{bottom:269.557350px;}
.y14{bottom:279.753300px;}
.y84{bottom:287.936850px;}
.y61{bottom:289.725000px;}
.y3c{bottom:289.981350px;}
.y13{bottom:301.436550px;}
.y83{bottom:308.537850px;}
.y3b{bottom:310.405350px;}
.y12{bottom:323.119800px;}
.y3a{bottom:330.829350px;}
.y82{bottom:337.643850px;}
.y11{bottom:344.803050px;}
.y39{bottom:351.253350px;}
.y81{bottom:358.244850px;}
.y60{bottom:361.810350px;}
.y38{bottom:371.677350px;}
.y80{bottom:378.845850px;}
.y5f{bottom:382.613850px;}
.y37{bottom:392.101350px;}
.y5e{bottom:403.417350px;}
.y7f{bottom:407.951850px;}
.y36{bottom:412.525350px;}
.y10{bottom:417.938250px;}
.y5d{bottom:424.220850px;}
.y7e{bottom:428.552850px;}
.y35{bottom:432.949350px;}
.yf{bottom:440.363250px;}
.y5c{bottom:445.024350px;}
.y7d{bottom:449.153850px;}
.y34{bottom:453.373350px;}
.y5b{bottom:465.827850px;}
.y33{bottom:473.797350px;}
.y7c{bottom:478.259850px;}
.y5a{bottom:486.631350px;}
.ye{bottom:492.582450px;}
.y32{bottom:494.221350px;}
.y7b{bottom:498.860850px;}
.y59{bottom:507.434850px;}
.y31{bottom:514.645350px;}
.y7a{bottom:519.461850px;}
.yd{bottom:525.502950px;}
.y58{bottom:528.238350px;}
.y30{bottom:535.069350px;}
.y79{bottom:540.062850px;}
.y57{bottom:549.041850px;}
.y2f{bottom:555.493350px;}
.yc{bottom:558.423450px;}
.y78{bottom:569.168850px;}
.y56{bottom:569.845350px;}
.y2e{bottom:575.917350px;}
.y77{bottom:589.769850px;}
.y55{bottom:590.648850px;}
.yb{bottom:591.340050px;}
.y2d{bottom:596.341350px;}
.y76{bottom:610.370850px;}
.y54{bottom:611.452350px;}
.y2c{bottom:616.765350px;}
.ya{bottom:624.280050px;}
.y75{bottom:630.971850px;}
.y53{bottom:632.255850px;}
.y2b{bottom:637.189350px;}
.y52{bottom:653.059350px;}
.y9{bottom:657.220050px;}
.y2a{bottom:657.613350px;}
.y74{bottom:660.077850px;}
.y51{bottom:673.862850px;}
.y29{bottom:678.037350px;}
.y73{bottom:680.678850px;}
.y8{bottom:690.152100px;}
.y50{bottom:694.666350px;}
.y28{bottom:698.461350px;}
.y72{bottom:701.279850px;}
.y4f{bottom:715.469850px;}
.y27{bottom:718.885350px;}
.y71{bottom:721.880850px;}
.y93{bottom:727.939050px;}
.y4e{bottom:736.273350px;}
.y26{bottom:739.309350px;}
.y92{bottom:748.189050px;}
.y70{bottom:750.986850px;}
.y4d{bottom:757.076850px;}
.y25{bottom:759.733350px;}
.y91{bottom:768.439050px;}
.y6f{bottom:771.587850px;}
.y7{bottom:774.556800px;}
.y4c{bottom:777.880350px;}
.y24{bottom:780.157350px;}
.y6e{bottom:792.188850px;}
.y4b{bottom:798.683850px;}
.y23{bottom:800.581350px;}
.y90{bottom:801.439050px;}
.y6{bottom:805.486800px;}
.y6d{bottom:812.789850px;}
.y4a{bottom:819.487350px;}
.y22{bottom:821.005350px;}
.y5{bottom:827.911800px;}
.y49{bottom:840.290850px;}
.y21{bottom:841.429350px;}
.y6c{bottom:841.895850px;}
.y8f{bottom:842.935350px;}
.y4{bottom:858.841800px;}
.y48{bottom:861.094350px;}
.y20{bottom:861.853350px;}
.y6b{bottom:862.496850px;}
.y8e{bottom:863.189850px;}
.y3{bottom:881.266800px;}
.y47{bottom:881.897850px;}
.y1f{bottom:882.277350px;}
.y6a{bottom:883.097850px;}
.y8d{bottom:883.444350px;}
.y1e{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1d{bottom:948.189000px;}
.y46{bottom:966.189000px;}
.h9{height:44.414062px;}
.hc{height:49.341797px;}
.hb{height:51.884766px;}
.h4{height:55.517578px;}
.h3{height:58.293457px;}
.h8{height:63.845215px;}
.he{height:67.236328px;}
.h2{height:69.396973px;}
.hd{height:70.598145px;}
.ha{height:77.321777px;}
.h5{height:77.724609px;}
.h7{height:94.379883px;}
.h6{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:80.938650px;}
.x7{left:82.456650px;}
.x4{left:83.672550px;}
.x1{left:85.039350px;}
.x5{left:103.750350px;}
.x3{left:105.683550px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-2.392000pt;}
.lsa{letter-spacing:-1.533333pt;}
.lse{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.120000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls9{letter-spacing:2.220267pt;}
.lsc{letter-spacing:2.968533pt;}
.lsd{letter-spacing:3.864000pt;}
.ls8{letter-spacing:4.853333pt;}
.ls3{letter-spacing:5.173333pt;}
.ls2{letter-spacing:5.333333pt;}
.lsf{letter-spacing:5.600000pt;}
.ls7{letter-spacing:5.800000pt;}
.ls1{letter-spacing:6.453333pt;}
.ws6{word-spacing:-24.533333pt;}
.wsd{word-spacing:-19.600000pt;}
.wsb{word-spacing:-17.234667pt;}
.ws7{word-spacing:-15.344000pt;}
.ws9{word-spacing:-15.149333pt;}
.wse{word-spacing:-13.832000pt;}
.wsa{word-spacing:-13.616000pt;}
.wsf{word-spacing:-12.936000pt;}
.ws1{word-spacing:-6.453333pt;}
.ws10{word-spacing:-5.600000pt;}
.ws2{word-spacing:-5.333333pt;}
.ws3{word-spacing:-5.173333pt;}
.ws8{word-spacing:-2.133333pt;}
.ws4{word-spacing:-1.120000pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.640000pt;}
.wsc{word-spacing:2.392000pt;}
._1a{margin-left:-16.300533pt;}
._a{margin-left:-8.783200pt;}
._b{margin-left:-7.196267pt;}
._7{margin-left:-5.541333pt;}
._15{margin-left:-4.645333pt;}
._8{margin-left:-3.672267pt;}
._5{margin-left:-2.293333pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._4{width:2.457867pt;}
._c{width:3.367467pt;}
._6{width:4.965333pt;}
._9{width:6.394667pt;}
._e{width:8.073867pt;}
._d{width:9.664800pt;}
._10{width:11.282400pt;}
._11{width:12.354933pt;}
._19{width:14.453067pt;}
._18{width:20.571733pt;}
._12{width:26.725333pt;}
._13{width:27.889333pt;}
._f{width:399.598400pt;}
._17{width:400.616000pt;}
._0{width:514.133333pt;}
._3{width:836.046400pt;}
._14{width:838.379733pt;}
._16{width:841.979733pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y8c{bottom:94.327867pt;}
.y45{bottom:94.369200pt;}
.y69{bottom:94.461333pt;}
.y1c{bottom:94.477600pt;}
.y44{bottom:112.523867pt;}
.y8b{bottom:112.639867pt;}
.y68{bottom:112.955333pt;}
.y1b{bottom:113.751600pt;}
.y43{bottom:130.678533pt;}
.y67{bottom:131.449333pt;}
.y1a{bottom:133.025600pt;}
.y8a{bottom:138.511867pt;}
.y42{bottom:148.833200pt;}
.y66{bottom:149.943333pt;}
.y19{bottom:152.299600pt;}
.y89{bottom:156.823867pt;}
.y41{bottom:166.987867pt;}
.y65{bottom:168.437333pt;}
.y18{bottom:171.573600pt;}
.y88{bottom:182.695867pt;}
.y40{bottom:185.142533pt;}
.y17{bottom:190.847600pt;}
.y64{bottom:194.491333pt;}
.y87{bottom:201.007867pt;}
.y3f{bottom:203.297200pt;}
.y16{bottom:210.121600pt;}
.y63{bottom:212.985333pt;}
.y86{bottom:219.319867pt;}
.y3e{bottom:221.451867pt;}
.y15{bottom:229.395600pt;}
.y62{bottom:231.479333pt;}
.y85{bottom:237.631867pt;}
.y3d{bottom:239.606533pt;}
.y14{bottom:248.669600pt;}
.y84{bottom:255.943867pt;}
.y61{bottom:257.533333pt;}
.y3c{bottom:257.761200pt;}
.y13{bottom:267.943600pt;}
.y83{bottom:274.255867pt;}
.y3b{bottom:275.915867pt;}
.y12{bottom:287.217600pt;}
.y3a{bottom:294.070533pt;}
.y82{bottom:300.127867pt;}
.y11{bottom:306.491600pt;}
.y39{bottom:312.225200pt;}
.y81{bottom:318.439867pt;}
.y60{bottom:321.609200pt;}
.y38{bottom:330.379867pt;}
.y80{bottom:336.751867pt;}
.y5f{bottom:340.101200pt;}
.y37{bottom:348.534533pt;}
.y5e{bottom:358.593200pt;}
.y7f{bottom:362.623867pt;}
.y36{bottom:366.689200pt;}
.y10{bottom:371.500667pt;}
.y5d{bottom:377.085200pt;}
.y7e{bottom:380.935867pt;}
.y35{bottom:384.843867pt;}
.yf{bottom:391.434000pt;}
.y5c{bottom:395.577200pt;}
.y7d{bottom:399.247867pt;}
.y34{bottom:402.998533pt;}
.y5b{bottom:414.069200pt;}
.y33{bottom:421.153200pt;}
.y7c{bottom:425.119867pt;}
.y5a{bottom:432.561200pt;}
.ye{bottom:437.851067pt;}
.y32{bottom:439.307867pt;}
.y7b{bottom:443.431867pt;}
.y59{bottom:451.053200pt;}
.y31{bottom:457.462533pt;}
.y7a{bottom:461.743867pt;}
.yd{bottom:467.113733pt;}
.y58{bottom:469.545200pt;}
.y30{bottom:475.617200pt;}
.y79{bottom:480.055867pt;}
.y57{bottom:488.037200pt;}
.y2f{bottom:493.771867pt;}
.yc{bottom:496.376400pt;}
.y78{bottom:505.927867pt;}
.y56{bottom:506.529200pt;}
.y2e{bottom:511.926533pt;}
.y77{bottom:524.239867pt;}
.y55{bottom:525.021200pt;}
.yb{bottom:525.635600pt;}
.y2d{bottom:530.081200pt;}
.y76{bottom:542.551867pt;}
.y54{bottom:543.513200pt;}
.y2c{bottom:548.235867pt;}
.ya{bottom:554.915600pt;}
.y75{bottom:560.863867pt;}
.y53{bottom:562.005200pt;}
.y2b{bottom:566.390533pt;}
.y52{bottom:580.497200pt;}
.y9{bottom:584.195600pt;}
.y2a{bottom:584.545200pt;}
.y74{bottom:586.735867pt;}
.y51{bottom:598.989200pt;}
.y29{bottom:602.699867pt;}
.y73{bottom:605.047867pt;}
.y8{bottom:613.468533pt;}
.y50{bottom:617.481200pt;}
.y28{bottom:620.854533pt;}
.y72{bottom:623.359867pt;}
.y4f{bottom:635.973200pt;}
.y27{bottom:639.009200pt;}
.y71{bottom:641.671867pt;}
.y93{bottom:647.056933pt;}
.y4e{bottom:654.465200pt;}
.y26{bottom:657.163867pt;}
.y92{bottom:665.056933pt;}
.y70{bottom:667.543867pt;}
.y4d{bottom:672.957200pt;}
.y25{bottom:675.318533pt;}
.y91{bottom:683.056933pt;}
.y6f{bottom:685.855867pt;}
.y7{bottom:688.494933pt;}
.y4c{bottom:691.449200pt;}
.y24{bottom:693.473200pt;}
.y6e{bottom:704.167867pt;}
.y4b{bottom:709.941200pt;}
.y23{bottom:711.627867pt;}
.y90{bottom:712.390267pt;}
.y6{bottom:715.988267pt;}
.y6d{bottom:722.479867pt;}
.y4a{bottom:728.433200pt;}
.y22{bottom:729.782533pt;}
.y5{bottom:735.921600pt;}
.y49{bottom:746.925200pt;}
.y21{bottom:747.937200pt;}
.y6c{bottom:748.351867pt;}
.y8f{bottom:749.275867pt;}
.y4{bottom:763.414933pt;}
.y48{bottom:765.417200pt;}
.y20{bottom:766.091867pt;}
.y6b{bottom:766.663867pt;}
.y8e{bottom:767.279867pt;}
.y3{bottom:783.348267pt;}
.y47{bottom:783.909200pt;}
.y1f{bottom:784.246533pt;}
.y6a{bottom:784.975867pt;}
.y8d{bottom:785.283867pt;}
.y1e{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1d{bottom:842.834667pt;}
.y46{bottom:858.834667pt;}
.h9{height:39.479167pt;}
.hc{height:43.859375pt;}
.hb{height:46.119792pt;}
.h4{height:49.348958pt;}
.h3{height:51.816406pt;}
.h8{height:56.751302pt;}
.he{height:59.765625pt;}
.h2{height:61.686198pt;}
.hd{height:62.753906pt;}
.ha{height:68.730469pt;}
.h5{height:69.088542pt;}
.h7{height:83.893229pt;}
.h6{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:71.945467pt;}
.x7{left:73.294800pt;}
.x4{left:74.375600pt;}
.x1{left:75.590533pt;}
.x5{left:92.222533pt;}
.x3{left:93.940933pt;}
.x2{left:207.480400pt;}
}




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