
    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_396d0d24dd54bfdac28881dc.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_5f5155056c625090f5b7f5a7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_e68b7f88e22e0ca0c99dc252.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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:-3.240000px;}
.ls9{letter-spacing:-1.539000px;}
.ls6{letter-spacing:-0.567000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.296000px;}
.ls4{letter-spacing:1.488000px;}
.ls5{letter-spacing:5.850000px;}
.ls1{letter-spacing:6.000000px;}
.ls3{letter-spacing:6.300000px;}
.ls8{letter-spacing:7.530000px;}
.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;}
}
.ws8{word-spacing:-28.605000px;}
.ws3{word-spacing:-26.925000px;}
.ws9{word-spacing:-21.222000px;}
.ws7{word-spacing:-19.521000px;}
.ws4{word-spacing:-18.102000px;}
.ws1{word-spacing:-6.000000px;}
.ws5{word-spacing:-1.488000px;}
.ws2{word-spacing:-1.296000px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.567000px;}
._8{margin-left:-7.096500px;}
._b{margin-left:-5.848200px;}
._7{margin-left:-4.506000px;}
._1{margin-left:-3.078000px;}
._2{margin-left:-1.128000px;}
._5{width:1.417500px;}
._4{width:3.017700px;}
._e{width:4.304700px;}
._a{width:5.595000px;}
._6{width:6.729000px;}
._d{width:449.928000px;}
._9{width:451.005000px;}
._0{width:578.400000px;}
._c{width:1017.112200px;}
._f{width:1019.737200px;}
._3{width:1025.767200px;}
.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:81.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y25{bottom:106.060800px;}
.y4b{bottom:106.076550px;}
.y70{bottom:106.429050px;}
.y24{bottom:126.433050px;}
.y4a{bottom:126.448800px;}
.y6f{bottom:126.732300px;}
.y23{bottom:146.805300px;}
.y49{bottom:146.821050px;}
.y6e{bottom:147.035550px;}
.y22{bottom:167.177550px;}
.y48{bottom:167.193300px;}
.y6d{bottom:167.338800px;}
.y21{bottom:187.549800px;}
.y47{bottom:187.565550px;}
.y6c{bottom:187.642050px;}
.y8f{bottom:188.403750px;}
.yaf{bottom:191.395200px;}
.y20{bottom:207.922050px;}
.y46{bottom:207.937800px;}
.y6b{bottom:207.945300px;}
.y8e{bottom:208.655250px;}
.yae{bottom:211.646700px;}
.y6a{bottom:228.248550px;}
.y1f{bottom:228.294300px;}
.y45{bottom:228.310050px;}
.y8d{bottom:228.906750px;}
.yad{bottom:231.898200px;}
.y69{bottom:248.551800px;}
.y1e{bottom:248.666550px;}
.y44{bottom:248.682300px;}
.y8c{bottom:249.158250px;}
.yac{bottom:252.149700px;}
.y68{bottom:268.855050px;}
.y1d{bottom:269.038800px;}
.y43{bottom:269.054550px;}
.y8b{bottom:269.409750px;}
.yab{bottom:272.401200px;}
.y67{bottom:289.158300px;}
.y1c{bottom:289.411050px;}
.y42{bottom:289.426800px;}
.y8a{bottom:289.661250px;}
.yaa{bottom:292.652700px;}
.y66{bottom:309.461550px;}
.y1b{bottom:309.783300px;}
.y41{bottom:309.799050px;}
.y89{bottom:309.912750px;}
.ya9{bottom:312.904200px;}
.y65{bottom:329.764800px;}
.y1a{bottom:330.155550px;}
.y88{bottom:330.164250px;}
.y40{bottom:330.171300px;}
.ya8{bottom:333.155700px;}
.y64{bottom:350.068050px;}
.y87{bottom:350.415750px;}
.y19{bottom:350.527800px;}
.y3f{bottom:350.543550px;}
.ya7{bottom:353.407200px;}
.y63{bottom:370.371300px;}
.y86{bottom:370.667250px;}
.y18{bottom:370.900050px;}
.y3e{bottom:370.915800px;}
.ya6{bottom:373.658700px;}
.y62{bottom:390.674550px;}
.y85{bottom:390.918750px;}
.y17{bottom:391.272300px;}
.y3d{bottom:391.288050px;}
.ya5{bottom:393.910200px;}
.y61{bottom:410.977800px;}
.y16{bottom:411.644550px;}
.y3c{bottom:411.660300px;}
.ya4{bottom:414.161700px;}
.y60{bottom:431.281050px;}
.y15{bottom:432.016800px;}
.y3b{bottom:432.032550px;}
.y84{bottom:432.428700px;}
.ya3{bottom:434.413200px;}
.y5f{bottom:451.584300px;}
.y14{bottom:452.389050px;}
.y3a{bottom:452.404800px;}
.ya2{bottom:454.664700px;}
.y5e{bottom:471.887550px;}
.y13{bottom:472.761300px;}
.y39{bottom:472.777050px;}
.ya1{bottom:474.916200px;}
.y5d{bottom:492.190800px;}
.y12{bottom:493.133550px;}
.y38{bottom:493.149300px;}
.y83{bottom:494.669400px;}
.ya0{bottom:495.167700px;}
.y5c{bottom:512.494050px;}
.y11{bottom:513.505800px;}
.y37{bottom:513.521550px;}
.y82{bottom:514.920900px;}
.y9f{bottom:515.419200px;}
.y5b{bottom:532.797300px;}
.y10{bottom:533.878050px;}
.y36{bottom:533.893800px;}
.y81{bottom:535.172400px;}
.y9e{bottom:535.670700px;}
.y5a{bottom:553.100550px;}
.yf{bottom:554.250300px;}
.y35{bottom:554.266050px;}
.y80{bottom:555.423900px;}
.y9d{bottom:555.922200px;}
.ye{bottom:574.622550px;}
.y34{bottom:574.638300px;}
.y7f{bottom:575.675400px;}
.y9c{bottom:576.173700px;}
.y59{bottom:586.165650px;}
.yd{bottom:594.994800px;}
.y33{bottom:595.010550px;}
.y7e{bottom:595.926900px;}
.yc{bottom:615.367050px;}
.y32{bottom:615.382800px;}
.y7d{bottom:616.178400px;}
.y9b{bottom:617.683650px;}
.yb{bottom:635.739300px;}
.y31{bottom:635.755050px;}
.y7c{bottom:636.429900px;}
.y58{bottom:644.305350px;}
.ya{bottom:656.111550px;}
.y30{bottom:656.127300px;}
.y7b{bottom:656.681400px;}
.y57{bottom:664.608600px;}
.y9{bottom:676.483800px;}
.y2f{bottom:676.499550px;}
.y7a{bottom:676.932900px;}
.y9a{bottom:679.934850px;}
.y56{bottom:684.911850px;}
.y8{bottom:696.856050px;}
.y2e{bottom:696.871800px;}
.y79{bottom:697.184400px;}
.y99{bottom:700.186350px;}
.y55{bottom:705.215100px;}
.y7{bottom:717.228300px;}
.y78{bottom:717.435900px;}
.y98{bottom:720.437850px;}
.y54{bottom:725.518350px;}
.y6{bottom:737.600550px;}
.y77{bottom:737.687400px;}
.y2d{bottom:738.496200px;}
.y97{bottom:740.689350px;}
.y53{bottom:745.821600px;}
.y76{bottom:757.938900px;}
.y96{bottom:760.940850px;}
.y52{bottom:766.124850px;}
.y75{bottom:778.190400px;}
.y5{bottom:779.221800px;}
.y95{bottom:781.192350px;}
.y51{bottom:786.428100px;}
.y74{bottom:798.441900px;}
.y2c{bottom:800.840100px;}
.y94{bottom:801.443850px;}
.y4{bottom:803.339550px;}
.y50{bottom:806.731350px;}
.y73{bottom:818.693400px;}
.y2b{bottom:821.212350px;}
.y93{bottom:821.695350px;}
.y4f{bottom:827.034600px;}
.y72{bottom:838.944900px;}
.y2a{bottom:841.584600px;}
.y92{bottom:841.946850px;}
.y4e{bottom:847.337850px;}
.y71{bottom:859.196400px;}
.y29{bottom:861.956850px;}
.y91{bottom:862.198350px;}
.y4d{bottom:867.641100px;}
.y28{bottom:882.329100px;}
.y90{bottom:882.449850px;}
.y3{bottom:882.584400px;}
.y4c{bottom:900.706200px;}
.y27{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y26{bottom:948.189000px;}
.h8{height:41.396484px;}
.h7{height:44.414062px;}
.h4{height:55.517578px;}
.h3{height:58.293457px;}
.h6{height:63.845215px;}
.h2{height:69.396973px;}
.h5{height:74.948730px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:83.672550px;}
.x1{left:85.039350px;}
.x5{left:229.740300px;}
.x2{left:232.076250px;}
.x3{left:233.542350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-2.880000pt;}
.ls9{letter-spacing:-1.368000pt;}
.ls6{letter-spacing:-0.504000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.152000pt;}
.ls4{letter-spacing:1.322667pt;}
.ls5{letter-spacing:5.200000pt;}
.ls1{letter-spacing:5.333333pt;}
.ls3{letter-spacing:5.600000pt;}
.ls8{letter-spacing:6.693333pt;}
.ws8{word-spacing:-25.426667pt;}
.ws3{word-spacing:-23.933333pt;}
.ws9{word-spacing:-18.864000pt;}
.ws7{word-spacing:-17.352000pt;}
.ws4{word-spacing:-16.090667pt;}
.ws1{word-spacing:-5.333333pt;}
.ws5{word-spacing:-1.322667pt;}
.ws2{word-spacing:-1.152000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.504000pt;}
._8{margin-left:-6.308000pt;}
._b{margin-left:-5.198400pt;}
._7{margin-left:-4.005333pt;}
._1{margin-left:-2.736000pt;}
._2{margin-left:-1.002667pt;}
._5{width:1.260000pt;}
._4{width:2.682400pt;}
._e{width:3.826400pt;}
._a{width:4.973333pt;}
._6{width:5.981333pt;}
._d{width:399.936000pt;}
._9{width:400.893333pt;}
._0{width:514.133333pt;}
._c{width:904.099733pt;}
._f{width:906.433067pt;}
._3{width:911.793067pt;}
.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:72.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y25{bottom:94.276267pt;}
.y4b{bottom:94.290267pt;}
.y70{bottom:94.603600pt;}
.y24{bottom:112.384933pt;}
.y4a{bottom:112.398933pt;}
.y6f{bottom:112.650933pt;}
.y23{bottom:130.493600pt;}
.y49{bottom:130.507600pt;}
.y6e{bottom:130.698267pt;}
.y22{bottom:148.602267pt;}
.y48{bottom:148.616267pt;}
.y6d{bottom:148.745600pt;}
.y21{bottom:166.710933pt;}
.y47{bottom:166.724933pt;}
.y6c{bottom:166.792933pt;}
.y8f{bottom:167.470000pt;}
.yaf{bottom:170.129067pt;}
.y20{bottom:184.819600pt;}
.y46{bottom:184.833600pt;}
.y6b{bottom:184.840267pt;}
.y8e{bottom:185.471333pt;}
.yae{bottom:188.130400pt;}
.y6a{bottom:202.887600pt;}
.y1f{bottom:202.928267pt;}
.y45{bottom:202.942267pt;}
.y8d{bottom:203.472667pt;}
.yad{bottom:206.131733pt;}
.y69{bottom:220.934933pt;}
.y1e{bottom:221.036933pt;}
.y44{bottom:221.050933pt;}
.y8c{bottom:221.474000pt;}
.yac{bottom:224.133067pt;}
.y68{bottom:238.982267pt;}
.y1d{bottom:239.145600pt;}
.y43{bottom:239.159600pt;}
.y8b{bottom:239.475333pt;}
.yab{bottom:242.134400pt;}
.y67{bottom:257.029600pt;}
.y1c{bottom:257.254267pt;}
.y42{bottom:257.268267pt;}
.y8a{bottom:257.476667pt;}
.yaa{bottom:260.135733pt;}
.y66{bottom:275.076933pt;}
.y1b{bottom:275.362933pt;}
.y41{bottom:275.376933pt;}
.y89{bottom:275.478000pt;}
.ya9{bottom:278.137067pt;}
.y65{bottom:293.124267pt;}
.y1a{bottom:293.471600pt;}
.y88{bottom:293.479333pt;}
.y40{bottom:293.485600pt;}
.ya8{bottom:296.138400pt;}
.y64{bottom:311.171600pt;}
.y87{bottom:311.480667pt;}
.y19{bottom:311.580267pt;}
.y3f{bottom:311.594267pt;}
.ya7{bottom:314.139733pt;}
.y63{bottom:329.218933pt;}
.y86{bottom:329.482000pt;}
.y18{bottom:329.688933pt;}
.y3e{bottom:329.702933pt;}
.ya6{bottom:332.141067pt;}
.y62{bottom:347.266267pt;}
.y85{bottom:347.483333pt;}
.y17{bottom:347.797600pt;}
.y3d{bottom:347.811600pt;}
.ya5{bottom:350.142400pt;}
.y61{bottom:365.313600pt;}
.y16{bottom:365.906267pt;}
.y3c{bottom:365.920267pt;}
.ya4{bottom:368.143733pt;}
.y60{bottom:383.360933pt;}
.y15{bottom:384.014933pt;}
.y3b{bottom:384.028933pt;}
.y84{bottom:384.381067pt;}
.ya3{bottom:386.145067pt;}
.y5f{bottom:401.408267pt;}
.y14{bottom:402.123600pt;}
.y3a{bottom:402.137600pt;}
.ya2{bottom:404.146400pt;}
.y5e{bottom:419.455600pt;}
.y13{bottom:420.232267pt;}
.y39{bottom:420.246267pt;}
.ya1{bottom:422.147733pt;}
.y5d{bottom:437.502933pt;}
.y12{bottom:438.340933pt;}
.y38{bottom:438.354933pt;}
.y83{bottom:439.706133pt;}
.ya0{bottom:440.149067pt;}
.y5c{bottom:455.550267pt;}
.y11{bottom:456.449600pt;}
.y37{bottom:456.463600pt;}
.y82{bottom:457.707467pt;}
.y9f{bottom:458.150400pt;}
.y5b{bottom:473.597600pt;}
.y10{bottom:474.558267pt;}
.y36{bottom:474.572267pt;}
.y81{bottom:475.708800pt;}
.y9e{bottom:476.151733pt;}
.y5a{bottom:491.644933pt;}
.yf{bottom:492.666933pt;}
.y35{bottom:492.680933pt;}
.y80{bottom:493.710133pt;}
.y9d{bottom:494.153067pt;}
.ye{bottom:510.775600pt;}
.y34{bottom:510.789600pt;}
.y7f{bottom:511.711467pt;}
.y9c{bottom:512.154400pt;}
.y59{bottom:521.036133pt;}
.yd{bottom:528.884267pt;}
.y33{bottom:528.898267pt;}
.y7e{bottom:529.712800pt;}
.yc{bottom:546.992933pt;}
.y32{bottom:547.006933pt;}
.y7d{bottom:547.714133pt;}
.y9b{bottom:549.052133pt;}
.yb{bottom:565.101600pt;}
.y31{bottom:565.115600pt;}
.y7c{bottom:565.715467pt;}
.y58{bottom:572.715867pt;}
.ya{bottom:583.210267pt;}
.y30{bottom:583.224267pt;}
.y7b{bottom:583.716800pt;}
.y57{bottom:590.763200pt;}
.y9{bottom:601.318933pt;}
.y2f{bottom:601.332933pt;}
.y7a{bottom:601.718133pt;}
.y9a{bottom:604.386533pt;}
.y56{bottom:608.810533pt;}
.y8{bottom:619.427600pt;}
.y2e{bottom:619.441600pt;}
.y79{bottom:619.719467pt;}
.y99{bottom:622.387867pt;}
.y55{bottom:626.857867pt;}
.y7{bottom:637.536267pt;}
.y78{bottom:637.720800pt;}
.y98{bottom:640.389200pt;}
.y54{bottom:644.905200pt;}
.y6{bottom:655.644933pt;}
.y77{bottom:655.722133pt;}
.y2d{bottom:656.441067pt;}
.y97{bottom:658.390533pt;}
.y53{bottom:662.952533pt;}
.y76{bottom:673.723467pt;}
.y96{bottom:676.391867pt;}
.y52{bottom:680.999867pt;}
.y75{bottom:691.724800pt;}
.y5{bottom:692.641600pt;}
.y95{bottom:694.393200pt;}
.y51{bottom:699.047200pt;}
.y74{bottom:709.726133pt;}
.y2c{bottom:711.857867pt;}
.y94{bottom:712.394533pt;}
.y4{bottom:714.079600pt;}
.y50{bottom:717.094533pt;}
.y73{bottom:727.727467pt;}
.y2b{bottom:729.966533pt;}
.y93{bottom:730.395867pt;}
.y4f{bottom:735.141867pt;}
.y72{bottom:745.728800pt;}
.y2a{bottom:748.075200pt;}
.y92{bottom:748.397200pt;}
.y4e{bottom:753.189200pt;}
.y71{bottom:763.730133pt;}
.y29{bottom:766.183867pt;}
.y91{bottom:766.398533pt;}
.y4d{bottom:771.236533pt;}
.y28{bottom:784.292533pt;}
.y90{bottom:784.399867pt;}
.y3{bottom:784.519467pt;}
.y4c{bottom:800.627733pt;}
.y27{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y26{bottom:842.834667pt;}
.h8{height:36.796875pt;}
.h7{height:39.479167pt;}
.h4{height:49.348958pt;}
.h3{height:51.816406pt;}
.h6{height:56.751302pt;}
.h2{height:61.686198pt;}
.h5{height:66.621094pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:74.375600pt;}
.x1{left:75.590533pt;}
.x5{left:204.213600pt;}
.x2{left:206.290000pt;}
.x3{left:207.593200pt;}
}




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