
    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_e7fd499700cddeb7ffadf8d5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.183105;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_aac5d6a4fb0167fa78dc8a4e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_046e35ccc7e39d14d7dddf16.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_14b26f9696f994b6491c4bc7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.183105;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_e055c3cf1433574437162c3d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.074707;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;}
.lse{letter-spacing:-3.243000px;}
.lsc{letter-spacing:-1.449000px;}
.ls4{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.345000px;}
.ls2{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.138000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:2.400000px;}
.ls7{letter-spacing:4.950000px;}
.ls1{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.300000px;}
.lsb{letter-spacing:6.525000px;}
.lsd{letter-spacing:6.817200px;}
.ls9{letter-spacing:8.487000px;}
.lsf{letter-spacing:8.820000px;}
.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;}
}
.wsf{word-spacing:-27.600000px;}
.ws7{word-spacing:-26.025000px;}
.wsc{word-spacing:-19.389000px;}
.ws8{word-spacing:-18.102000px;}
.ws12{word-spacing:-17.703000px;}
.wsa{word-spacing:-17.043000px;}
.wsb{word-spacing:-16.905000px;}
.ws0{word-spacing:-16.698000px;}
.ws10{word-spacing:-15.594000px;}
.ws13{word-spacing:-15.561000px;}
.ws14{word-spacing:-14.820000px;}
.ws11{word-spacing:-13.800000px;}
.ws15{word-spacing:-8.820000px;}
.wsd{word-spacing:-8.487000px;}
.ws16{word-spacing:-6.300000px;}
.ws2{word-spacing:-6.000000px;}
.ws9{word-spacing:-2.400000px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:0.138000px;}
.ws3{word-spacing:0.240000px;}
.ws6{word-spacing:0.345000px;}
.ws4{word-spacing:0.648000px;}
.ws5{word-spacing:1.080000px;}
._1b{margin-left:-20.230800px;}
._b{margin-left:-11.133000px;}
._c{margin-left:-9.688800px;}
._9{margin-left:-8.424000px;}
._17{margin-left:-7.003500px;}
._f{margin-left:-5.994900px;}
._d{margin-left:-4.672200px;}
._8{margin-left:-3.413400px;}
._4{margin-left:-1.625400px;}
._3{width:1.335600px;}
._1{width:2.400000px;}
._a{width:4.209600px;}
._5{width:5.884800px;}
._6{width:7.472400px;}
._7{width:8.914800px;}
._10{width:10.843800px;}
._14{width:11.901600px;}
._12{width:12.927600px;}
._13{width:14.210100px;}
._19{width:15.355500px;}
._1d{width:16.377600px;}
._1f{width:19.064700px;}
._15{width:21.296400px;}
._1e{width:22.771200px;}
._18{width:23.984400px;}
._20{width:31.932300px;}
._21{width:33.092400px;}
._16{width:449.121000px;}
._1c{width:450.471600px;}
._e{width:452.774400px;}
._0{width:578.400000px;}
._2{width:964.861200px;}
._11{width:1016.319600px;}
._1a{width:1018.944600px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs4{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y4b{bottom:106.165350px;}
.y72{bottom:106.268850px;}
.y22{bottom:106.418400px;}
.y93{bottom:114.652200px;}
.y4a{bottom:126.589350px;}
.y21{bottom:126.945900px;}
.y71{bottom:127.227600px;}
.y92{bottom:134.902200px;}
.y49{bottom:147.013350px;}
.y20{bottom:147.473400px;}
.y70{bottom:148.186350px;}
.y91{bottom:155.152200px;}
.y48{bottom:167.437350px;}
.y1f{bottom:168.000900px;}
.y6f{bottom:169.145100px;}
.y90{bottom:175.402200px;}
.y47{bottom:187.861350px;}
.y1e{bottom:188.528400px;}
.y6e{bottom:190.103850px;}
.y8f{bottom:195.652200px;}
.y46{bottom:208.285350px;}
.y1d{bottom:209.055900px;}
.y6d{bottom:211.062600px;}
.y8e{bottom:228.652200px;}
.y45{bottom:228.709350px;}
.y1c{bottom:229.583400px;}
.y6c{bottom:232.021350px;}
.y44{bottom:249.133350px;}
.y1b{bottom:250.110900px;}
.y6b{bottom:252.980100px;}
.y43{bottom:269.557350px;}
.y8d{bottom:270.051600px;}
.y1a{bottom:270.638400px;}
.y6a{bottom:273.938850px;}
.y42{bottom:289.981350px;}
.y8c{bottom:290.306100px;}
.y19{bottom:291.165900px;}
.y69{bottom:294.897600px;}
.y41{bottom:310.405350px;}
.y18{bottom:311.693400px;}
.y68{bottom:315.856350px;}
.y8b{bottom:316.088850px;}
.y40{bottom:330.829350px;}
.y17{bottom:332.220900px;}
.y8a{bottom:336.343350px;}
.y67{bottom:336.815100px;}
.y3f{bottom:351.253350px;}
.y16{bottom:352.748400px;}
.y66{bottom:357.773850px;}
.y89{bottom:362.126100px;}
.y3e{bottom:371.677350px;}
.y15{bottom:373.275900px;}
.y65{bottom:378.732600px;}
.y88{bottom:382.380600px;}
.y3d{bottom:392.101350px;}
.y14{bottom:393.803400px;}
.y64{bottom:399.691350px;}
.y87{bottom:408.163350px;}
.y3c{bottom:412.525350px;}
.y13{bottom:414.330900px;}
.y63{bottom:420.650100px;}
.y3b{bottom:432.949350px;}
.y86{bottom:433.946100px;}
.y12{bottom:434.858400px;}
.y62{bottom:441.608850px;}
.y3a{bottom:453.373350px;}
.y85{bottom:454.200600px;}
.y11{bottom:455.385900px;}
.y61{bottom:462.567600px;}
.y39{bottom:473.797350px;}
.y10{bottom:475.913400px;}
.y84{bottom:479.983350px;}
.y60{bottom:483.526350px;}
.y38{bottom:494.221350px;}
.yf{bottom:496.440900px;}
.y5f{bottom:504.485100px;}
.y83{bottom:505.766100px;}
.y37{bottom:514.645350px;}
.ye{bottom:516.968400px;}
.y5e{bottom:525.443850px;}
.y82{bottom:526.020600px;}
.y36{bottom:535.069350px;}
.yd{bottom:537.495900px;}
.y81{bottom:546.275100px;}
.y5d{bottom:546.402600px;}
.y35{bottom:555.493350px;}
.y80{bottom:566.529600px;}
.y5c{bottom:567.361350px;}
.y34{bottom:575.917350px;}
.y5b{bottom:588.320100px;}
.y7f{bottom:592.312350px;}
.y33{bottom:596.341350px;}
.yc{bottom:599.052150px;}
.y5a{bottom:609.278850px;}
.y7e{bottom:612.566850px;}
.y32{bottom:616.765350px;}
.yb{bottom:629.346150px;}
.y59{bottom:630.237600px;}
.y31{bottom:637.189350px;}
.y7d{bottom:638.349600px;}
.y58{bottom:651.196350px;}
.y30{bottom:657.613350px;}
.y7c{bottom:658.604100px;}
.ya{bottom:659.640150px;}
.y57{bottom:672.155100px;}
.y2f{bottom:678.037350px;}
.y7b{bottom:678.858600px;}
.y9{bottom:689.934150px;}
.y56{bottom:693.113850px;}
.y2e{bottom:698.461350px;}
.y7a{bottom:699.113100px;}
.y55{bottom:714.072600px;}
.y2d{bottom:718.885350px;}
.y8{bottom:720.228150px;}
.y79{bottom:724.895850px;}
.y54{bottom:735.031350px;}
.y2c{bottom:739.309350px;}
.y78{bottom:745.150350px;}
.y53{bottom:755.990100px;}
.y2b{bottom:759.733350px;}
.y77{bottom:765.404850px;}
.y52{bottom:776.948850px;}
.y2a{bottom:780.157350px;}
.y7{bottom:780.265800px;}
.y76{bottom:791.187600px;}
.y51{bottom:797.907600px;}
.y29{bottom:800.581350px;}
.y6{bottom:810.055800px;}
.y50{bottom:818.866350px;}
.y28{bottom:821.005350px;}
.y5{bottom:831.340800px;}
.y4f{bottom:839.825100px;}
.y27{bottom:841.429350px;}
.y75{bottom:841.946850px;}
.y4{bottom:852.625800px;}
.y4e{bottom:860.783850px;}
.y26{bottom:861.853350px;}
.y74{bottom:862.198350px;}
.y4d{bottom:881.742600px;}
.y25{bottom:882.277350px;}
.y3{bottom:882.415800px;}
.y73{bottom:882.449850px;}
.y24{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:948.189000px;}
.y4c{bottom:966.189000px;}
.h7{height:44.460938px;}
.h8{height:51.884766px;}
.h4{height:55.576172px;}
.h3{height:58.354980px;}
.h6{height:63.912598px;}
.h2{height:69.470215px;}
.h5{height:100.037109px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.903850px;}
.x9{left:82.534050px;}
.x6{left:83.672550px;}
.x1{left:85.039350px;}
.x7{left:104.105100px;}
.x5{left:105.952200px;}
.x3{left:230.003400px;}
.x4{left:231.893400px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-2.882667pt;}
.lsc{letter-spacing:-1.288000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.306667pt;}
.ls2{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.122667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls7{letter-spacing:4.400000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.600000pt;}
.lsb{letter-spacing:5.800000pt;}
.lsd{letter-spacing:6.059733pt;}
.ls9{letter-spacing:7.544000pt;}
.lsf{letter-spacing:7.840000pt;}
.wsf{word-spacing:-24.533333pt;}
.ws7{word-spacing:-23.133333pt;}
.wsc{word-spacing:-17.234667pt;}
.ws8{word-spacing:-16.090667pt;}
.ws12{word-spacing:-15.736000pt;}
.wsa{word-spacing:-15.149333pt;}
.wsb{word-spacing:-15.026667pt;}
.ws0{word-spacing:-14.842667pt;}
.ws10{word-spacing:-13.861333pt;}
.ws13{word-spacing:-13.832000pt;}
.ws14{word-spacing:-13.173333pt;}
.ws11{word-spacing:-12.266667pt;}
.ws15{word-spacing:-7.840000pt;}
.wsd{word-spacing:-7.544000pt;}
.ws16{word-spacing:-5.600000pt;}
.ws2{word-spacing:-5.333333pt;}
.ws9{word-spacing:-2.133333pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:0.122667pt;}
.ws3{word-spacing:0.213333pt;}
.ws6{word-spacing:0.306667pt;}
.ws4{word-spacing:0.576000pt;}
.ws5{word-spacing:0.960000pt;}
._1b{margin-left:-17.982933pt;}
._b{margin-left:-9.896000pt;}
._c{margin-left:-8.612267pt;}
._9{margin-left:-7.488000pt;}
._17{margin-left:-6.225333pt;}
._f{margin-left:-5.328800pt;}
._d{margin-left:-4.153067pt;}
._8{margin-left:-3.034133pt;}
._4{margin-left:-1.444800pt;}
._3{width:1.187200pt;}
._1{width:2.133333pt;}
._a{width:3.741867pt;}
._5{width:5.230933pt;}
._6{width:6.642133pt;}
._7{width:7.924267pt;}
._10{width:9.638933pt;}
._14{width:10.579200pt;}
._12{width:11.491200pt;}
._13{width:12.631200pt;}
._19{width:13.649333pt;}
._1d{width:14.557867pt;}
._1f{width:16.946400pt;}
._15{width:18.930133pt;}
._1e{width:20.241067pt;}
._18{width:21.319467pt;}
._20{width:28.384267pt;}
._21{width:29.415467pt;}
._16{width:399.218667pt;}
._1c{width:400.419200pt;}
._e{width:402.466133pt;}
._0{width:514.133333pt;}
._2{width:857.654400pt;}
._11{width:903.395200pt;}
._1a{width:905.728533pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs4{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y4b{bottom:94.369200pt;}
.y72{bottom:94.461200pt;}
.y22{bottom:94.594133pt;}
.y93{bottom:101.913067pt;}
.y4a{bottom:112.523867pt;}
.y21{bottom:112.840800pt;}
.y71{bottom:113.091200pt;}
.y92{bottom:119.913067pt;}
.y49{bottom:130.678533pt;}
.y20{bottom:131.087467pt;}
.y70{bottom:131.721200pt;}
.y91{bottom:137.913067pt;}
.y48{bottom:148.833200pt;}
.y1f{bottom:149.334133pt;}
.y6f{bottom:150.351200pt;}
.y90{bottom:155.913067pt;}
.y47{bottom:166.987867pt;}
.y1e{bottom:167.580800pt;}
.y6e{bottom:168.981200pt;}
.y8f{bottom:173.913067pt;}
.y46{bottom:185.142533pt;}
.y1d{bottom:185.827467pt;}
.y6d{bottom:187.611200pt;}
.y8e{bottom:203.246400pt;}
.y45{bottom:203.297200pt;}
.y1c{bottom:204.074133pt;}
.y6c{bottom:206.241200pt;}
.y44{bottom:221.451867pt;}
.y1b{bottom:222.320800pt;}
.y6b{bottom:224.871200pt;}
.y43{bottom:239.606533pt;}
.y8d{bottom:240.045867pt;}
.y1a{bottom:240.567467pt;}
.y6a{bottom:243.501200pt;}
.y42{bottom:257.761200pt;}
.y8c{bottom:258.049867pt;}
.y19{bottom:258.814133pt;}
.y69{bottom:262.131200pt;}
.y41{bottom:275.915867pt;}
.y18{bottom:277.060800pt;}
.y68{bottom:280.761200pt;}
.y8b{bottom:280.967867pt;}
.y40{bottom:294.070533pt;}
.y17{bottom:295.307467pt;}
.y8a{bottom:298.971867pt;}
.y67{bottom:299.391200pt;}
.y3f{bottom:312.225200pt;}
.y16{bottom:313.554133pt;}
.y66{bottom:318.021200pt;}
.y89{bottom:321.889867pt;}
.y3e{bottom:330.379867pt;}
.y15{bottom:331.800800pt;}
.y65{bottom:336.651200pt;}
.y88{bottom:339.893867pt;}
.y3d{bottom:348.534533pt;}
.y14{bottom:350.047467pt;}
.y64{bottom:355.281200pt;}
.y87{bottom:362.811867pt;}
.y3c{bottom:366.689200pt;}
.y13{bottom:368.294133pt;}
.y63{bottom:373.911200pt;}
.y3b{bottom:384.843867pt;}
.y86{bottom:385.729867pt;}
.y12{bottom:386.540800pt;}
.y62{bottom:392.541200pt;}
.y3a{bottom:402.998533pt;}
.y85{bottom:403.733867pt;}
.y11{bottom:404.787467pt;}
.y61{bottom:411.171200pt;}
.y39{bottom:421.153200pt;}
.y10{bottom:423.034133pt;}
.y84{bottom:426.651867pt;}
.y60{bottom:429.801200pt;}
.y38{bottom:439.307867pt;}
.yf{bottom:441.280800pt;}
.y5f{bottom:448.431200pt;}
.y83{bottom:449.569867pt;}
.y37{bottom:457.462533pt;}
.ye{bottom:459.527467pt;}
.y5e{bottom:467.061200pt;}
.y82{bottom:467.573867pt;}
.y36{bottom:475.617200pt;}
.yd{bottom:477.774133pt;}
.y81{bottom:485.577867pt;}
.y5d{bottom:485.691200pt;}
.y35{bottom:493.771867pt;}
.y80{bottom:503.581867pt;}
.y5c{bottom:504.321200pt;}
.y34{bottom:511.926533pt;}
.y5b{bottom:522.951200pt;}
.y7f{bottom:526.499867pt;}
.y33{bottom:530.081200pt;}
.yc{bottom:532.490800pt;}
.y5a{bottom:541.581200pt;}
.y7e{bottom:544.503867pt;}
.y32{bottom:548.235867pt;}
.yb{bottom:559.418800pt;}
.y59{bottom:560.211200pt;}
.y31{bottom:566.390533pt;}
.y7d{bottom:567.421867pt;}
.y58{bottom:578.841200pt;}
.y30{bottom:584.545200pt;}
.y7c{bottom:585.425867pt;}
.ya{bottom:586.346800pt;}
.y57{bottom:597.471200pt;}
.y2f{bottom:602.699867pt;}
.y7b{bottom:603.429867pt;}
.y9{bottom:613.274800pt;}
.y56{bottom:616.101200pt;}
.y2e{bottom:620.854533pt;}
.y7a{bottom:621.433867pt;}
.y55{bottom:634.731200pt;}
.y2d{bottom:639.009200pt;}
.y8{bottom:640.202800pt;}
.y79{bottom:644.351867pt;}
.y54{bottom:653.361200pt;}
.y2c{bottom:657.163867pt;}
.y78{bottom:662.355867pt;}
.y53{bottom:671.991200pt;}
.y2b{bottom:675.318533pt;}
.y77{bottom:680.359867pt;}
.y52{bottom:690.621200pt;}
.y2a{bottom:693.473200pt;}
.y7{bottom:693.569600pt;}
.y76{bottom:703.277867pt;}
.y51{bottom:709.251200pt;}
.y29{bottom:711.627867pt;}
.y6{bottom:720.049600pt;}
.y50{bottom:727.881200pt;}
.y28{bottom:729.782533pt;}
.y5{bottom:738.969600pt;}
.y4f{bottom:746.511200pt;}
.y27{bottom:747.937200pt;}
.y75{bottom:748.397200pt;}
.y4{bottom:757.889600pt;}
.y4e{bottom:765.141200pt;}
.y26{bottom:766.091867pt;}
.y74{bottom:766.398533pt;}
.y4d{bottom:783.771200pt;}
.y25{bottom:784.246533pt;}
.y3{bottom:784.369600pt;}
.y73{bottom:784.399867pt;}
.y24{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:842.834667pt;}
.y4c{bottom:858.834667pt;}
.h7{height:39.520833pt;}
.h8{height:46.119792pt;}
.h4{height:49.401042pt;}
.h3{height:51.871094pt;}
.h6{height:56.811198pt;}
.h2{height:61.751302pt;}
.h5{height:88.921875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.914533pt;}
.x9{left:73.363600pt;}
.x6{left:74.375600pt;}
.x1{left:75.590533pt;}
.x7{left:92.537867pt;}
.x5{left:94.179733pt;}
.x3{left:204.447467pt;}
.x4{left:206.127467pt;}
.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; }
  