
    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_397fc1bc5ed9cbd65113c75f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191895;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_6c1c622388ec1c77fedacb19.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_31e644c6d3735eaf2e9b6193.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b8dbfbed9b911ae9a9d83db6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d961e2682373143958f28972.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.518000px;}
.ls4{letter-spacing:-1.380000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.260000px;}
.ls5{letter-spacing:2.400000px;}
.lsc{letter-spacing:3.525900px;}
.ls9{letter-spacing:4.830000px;}
.ls7{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.300000px;}
.lsa{letter-spacing:6.825000px;}
.ls1{letter-spacing:7.260000px;}
.ls6{letter-spacing:7.950000px;}
.ls2{letter-spacing:8.400000px;}
.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;}
}
.ws5{word-spacing:-29.025000px;}
.ws9{word-spacing:-27.900000px;}
.wsd{word-spacing:-19.389000px;}
.ws6{word-spacing:-18.102000px;}
.wsa{word-spacing:-17.043000px;}
.wsb{word-spacing:-15.525000px;}
.wse{word-spacing:-14.820000px;}
.ws2{word-spacing:-8.400000px;}
.ws1{word-spacing:-7.260000px;}
.ws8{word-spacing:-6.000000px;}
.ws7{word-spacing:-2.400000px;}
.ws3{word-spacing:-1.260000px;}
.wsc{word-spacing:-0.897000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:1.380000px;}
._1a{margin-left:-19.848000px;}
._17{margin-left:-18.520200px;}
._f{margin-left:-6.504600px;}
._7{margin-left:-4.896000px;}
._1{margin-left:-3.078000px;}
._2{margin-left:-1.128000px;}
._4{width:1.339200px;}
._a{width:2.421600px;}
._5{width:3.423600px;}
._b{width:4.968900px;}
._6{width:5.994000px;}
._8{width:7.254000px;}
._9{width:8.592000px;}
._11{width:10.292400px;}
._12{width:11.657400px;}
._14{width:12.723600px;}
._c{width:13.758600px;}
._13{width:15.531900px;}
._10{width:17.384400px;}
._e{width:23.341500px;}
._d{width:447.450000px;}
._19{width:449.508000px;}
._0{width:578.400000px;}
._16{width:1016.617200px;}
._3{width:1019.737200px;}
._15{width:1023.787200px;}
._18{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:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y24{bottom:106.106550px;}
.y4d{bottom:106.165350px;}
.y73{bottom:106.268850px;}
.y23{bottom:126.547800px;}
.y4c{bottom:126.589350px;}
.y72{bottom:127.227600px;}
.y22{bottom:146.989050px;}
.y4b{bottom:147.013350px;}
.y71{bottom:148.186350px;}
.y21{bottom:167.430300px;}
.y4a{bottom:167.437350px;}
.y70{bottom:169.145100px;}
.y49{bottom:187.861350px;}
.y20{bottom:187.871550px;}
.y6f{bottom:190.103850px;}
.y48{bottom:208.285350px;}
.y1f{bottom:208.312800px;}
.y6e{bottom:211.062600px;}
.y47{bottom:228.709350px;}
.y1e{bottom:228.754050px;}
.y6d{bottom:232.021350px;}
.y46{bottom:249.133350px;}
.y1d{bottom:249.195300px;}
.y6c{bottom:252.980100px;}
.y45{bottom:269.557350px;}
.y1c{bottom:269.636550px;}
.y6b{bottom:273.938850px;}
.y44{bottom:289.981350px;}
.y1b{bottom:290.077800px;}
.y6a{bottom:294.897600px;}
.y43{bottom:310.405350px;}
.y1a{bottom:310.519050px;}
.y69{bottom:315.856350px;}
.y42{bottom:330.829350px;}
.y19{bottom:330.960300px;}
.y68{bottom:336.815100px;}
.y41{bottom:351.253350px;}
.y18{bottom:351.401550px;}
.y67{bottom:357.773850px;}
.y40{bottom:371.677350px;}
.y17{bottom:371.842800px;}
.y66{bottom:378.732600px;}
.y3f{bottom:392.101350px;}
.y16{bottom:392.284050px;}
.y65{bottom:399.691350px;}
.y3e{bottom:412.525350px;}
.y15{bottom:412.725300px;}
.y64{bottom:420.650100px;}
.y3d{bottom:432.949350px;}
.y14{bottom:433.166550px;}
.y63{bottom:441.608850px;}
.y3c{bottom:453.373350px;}
.y13{bottom:453.607800px;}
.y62{bottom:462.567600px;}
.y3b{bottom:473.797350px;}
.y12{bottom:474.049050px;}
.y61{bottom:483.526350px;}
.y3a{bottom:494.221350px;}
.y11{bottom:494.490300px;}
.y60{bottom:504.485100px;}
.y39{bottom:514.645350px;}
.y10{bottom:514.931550px;}
.y5f{bottom:525.443850px;}
.y38{bottom:535.069350px;}
.yf{bottom:535.372800px;}
.y5e{bottom:546.402600px;}
.y37{bottom:555.493350px;}
.ye{bottom:555.814050px;}
.y5d{bottom:567.361350px;}
.y36{bottom:575.917350px;}
.yd{bottom:576.255300px;}
.y5c{bottom:588.320100px;}
.y35{bottom:596.341350px;}
.yc{bottom:596.696550px;}
.y5b{bottom:609.278850px;}
.y34{bottom:616.765350px;}
.yb{bottom:617.137800px;}
.y7f{bottom:625.691550px;}
.y5a{bottom:630.237600px;}
.y33{bottom:637.189350px;}
.ya{bottom:637.579050px;}
.y7e{bottom:645.941550px;}
.y59{bottom:651.196350px;}
.y32{bottom:657.613350px;}
.y9{bottom:658.020300px;}
.y7d{bottom:666.191550px;}
.y58{bottom:672.155100px;}
.y31{bottom:678.037350px;}
.y7c{bottom:686.441550px;}
.y57{bottom:693.113850px;}
.y30{bottom:698.461350px;}
.y7b{bottom:706.691550px;}
.y56{bottom:714.072600px;}
.y2f{bottom:718.885350px;}
.y8{bottom:719.322600px;}
.y55{bottom:735.031350px;}
.y2e{bottom:739.309350px;}
.y7a{bottom:739.691550px;}
.y54{bottom:755.990100px;}
.y2d{bottom:759.733350px;}
.y53{bottom:776.948850px;}
.y2c{bottom:780.157350px;}
.y7{bottom:780.784800px;}
.y79{bottom:781.192350px;}
.y52{bottom:797.907600px;}
.y2b{bottom:800.581350px;}
.y78{bottom:801.443850px;}
.y6{bottom:810.469800px;}
.y51{bottom:818.866350px;}
.y2a{bottom:821.005350px;}
.y77{bottom:821.695350px;}
.y5{bottom:831.649800px;}
.y50{bottom:839.825100px;}
.y29{bottom:841.429350px;}
.y76{bottom:841.946850px;}
.y4f{bottom:860.783850px;}
.y4{bottom:861.334800px;}
.y28{bottom:861.853350px;}
.y75{bottom:862.198350px;}
.y4e{bottom:881.742600px;}
.y27{bottom:882.277350px;}
.y74{bottom:882.449850px;}
.y3{bottom:882.514800px;}
.y26{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y25{bottom:948.189000px;}
.h7{height:44.414062px;}
.h8{height:49.658203px;}
.h9{height:55.488281px;}
.h4{height:55.517578px;}
.h3{height:58.293457px;}
.h6{height:63.845215px;}
.h2{height:69.396973px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:82.770150px;}
.x6{left:83.776050px;}
.x1{left:85.039350px;}
.x5{left:104.044800px;}
.x4{left:105.683550px;}
.x3{left:232.218000px;}
.x2{left:233.635500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.349333pt;}
.ls4{letter-spacing:-1.226667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls5{letter-spacing:2.133333pt;}
.lsc{letter-spacing:3.134133pt;}
.ls9{letter-spacing:4.293333pt;}
.ls7{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.600000pt;}
.lsa{letter-spacing:6.066667pt;}
.ls1{letter-spacing:6.453333pt;}
.ls6{letter-spacing:7.066667pt;}
.ls2{letter-spacing:7.466667pt;}
.ws5{word-spacing:-25.800000pt;}
.ws9{word-spacing:-24.800000pt;}
.wsd{word-spacing:-17.234667pt;}
.ws6{word-spacing:-16.090667pt;}
.wsa{word-spacing:-15.149333pt;}
.wsb{word-spacing:-13.800000pt;}
.wse{word-spacing:-13.173333pt;}
.ws2{word-spacing:-7.466667pt;}
.ws1{word-spacing:-6.453333pt;}
.ws8{word-spacing:-5.333333pt;}
.ws7{word-spacing:-2.133333pt;}
.ws3{word-spacing:-1.120000pt;}
.wsc{word-spacing:-0.797333pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:1.226667pt;}
._1a{margin-left:-17.642667pt;}
._17{margin-left:-16.462400pt;}
._f{margin-left:-5.781867pt;}
._7{margin-left:-4.352000pt;}
._1{margin-left:-2.736000pt;}
._2{margin-left:-1.002667pt;}
._4{width:1.190400pt;}
._a{width:2.152533pt;}
._5{width:3.043200pt;}
._b{width:4.416800pt;}
._6{width:5.328000pt;}
._8{width:6.448000pt;}
._9{width:7.637333pt;}
._11{width:9.148800pt;}
._12{width:10.362133pt;}
._14{width:11.309867pt;}
._c{width:12.229867pt;}
._13{width:13.806133pt;}
._10{width:15.452800pt;}
._e{width:20.748000pt;}
._d{width:397.733333pt;}
._19{width:399.562667pt;}
._0{width:514.133333pt;}
._16{width:903.659733pt;}
._3{width:906.433067pt;}
._15{width:910.033067pt;}
._18{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:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y24{bottom:94.316933pt;}
.y4d{bottom:94.369200pt;}
.y73{bottom:94.461200pt;}
.y23{bottom:112.486933pt;}
.y4c{bottom:112.523867pt;}
.y72{bottom:113.091200pt;}
.y22{bottom:130.656933pt;}
.y4b{bottom:130.678533pt;}
.y71{bottom:131.721200pt;}
.y21{bottom:148.826933pt;}
.y4a{bottom:148.833200pt;}
.y70{bottom:150.351200pt;}
.y49{bottom:166.987867pt;}
.y20{bottom:166.996933pt;}
.y6f{bottom:168.981200pt;}
.y48{bottom:185.142533pt;}
.y1f{bottom:185.166933pt;}
.y6e{bottom:187.611200pt;}
.y47{bottom:203.297200pt;}
.y1e{bottom:203.336933pt;}
.y6d{bottom:206.241200pt;}
.y46{bottom:221.451867pt;}
.y1d{bottom:221.506933pt;}
.y6c{bottom:224.871200pt;}
.y45{bottom:239.606533pt;}
.y1c{bottom:239.676933pt;}
.y6b{bottom:243.501200pt;}
.y44{bottom:257.761200pt;}
.y1b{bottom:257.846933pt;}
.y6a{bottom:262.131200pt;}
.y43{bottom:275.915867pt;}
.y1a{bottom:276.016933pt;}
.y69{bottom:280.761200pt;}
.y42{bottom:294.070533pt;}
.y19{bottom:294.186933pt;}
.y68{bottom:299.391200pt;}
.y41{bottom:312.225200pt;}
.y18{bottom:312.356933pt;}
.y67{bottom:318.021200pt;}
.y40{bottom:330.379867pt;}
.y17{bottom:330.526933pt;}
.y66{bottom:336.651200pt;}
.y3f{bottom:348.534533pt;}
.y16{bottom:348.696933pt;}
.y65{bottom:355.281200pt;}
.y3e{bottom:366.689200pt;}
.y15{bottom:366.866933pt;}
.y64{bottom:373.911200pt;}
.y3d{bottom:384.843867pt;}
.y14{bottom:385.036933pt;}
.y63{bottom:392.541200pt;}
.y3c{bottom:402.998533pt;}
.y13{bottom:403.206933pt;}
.y62{bottom:411.171200pt;}
.y3b{bottom:421.153200pt;}
.y12{bottom:421.376933pt;}
.y61{bottom:429.801200pt;}
.y3a{bottom:439.307867pt;}
.y11{bottom:439.546933pt;}
.y60{bottom:448.431200pt;}
.y39{bottom:457.462533pt;}
.y10{bottom:457.716933pt;}
.y5f{bottom:467.061200pt;}
.y38{bottom:475.617200pt;}
.yf{bottom:475.886933pt;}
.y5e{bottom:485.691200pt;}
.y37{bottom:493.771867pt;}
.ye{bottom:494.056933pt;}
.y5d{bottom:504.321200pt;}
.y36{bottom:511.926533pt;}
.yd{bottom:512.226933pt;}
.y5c{bottom:522.951200pt;}
.y35{bottom:530.081200pt;}
.yc{bottom:530.396933pt;}
.y5b{bottom:541.581200pt;}
.y34{bottom:548.235867pt;}
.yb{bottom:548.566933pt;}
.y7f{bottom:556.170267pt;}
.y5a{bottom:560.211200pt;}
.y33{bottom:566.390533pt;}
.ya{bottom:566.736933pt;}
.y7e{bottom:574.170267pt;}
.y59{bottom:578.841200pt;}
.y32{bottom:584.545200pt;}
.y9{bottom:584.906933pt;}
.y7d{bottom:592.170267pt;}
.y58{bottom:597.471200pt;}
.y31{bottom:602.699867pt;}
.y7c{bottom:610.170267pt;}
.y57{bottom:616.101200pt;}
.y30{bottom:620.854533pt;}
.y7b{bottom:628.170267pt;}
.y56{bottom:634.731200pt;}
.y2f{bottom:639.009200pt;}
.y8{bottom:639.397867pt;}
.y55{bottom:653.361200pt;}
.y2e{bottom:657.163867pt;}
.y7a{bottom:657.503600pt;}
.y54{bottom:671.991200pt;}
.y2d{bottom:675.318533pt;}
.y53{bottom:690.621200pt;}
.y2c{bottom:693.473200pt;}
.y7{bottom:694.030933pt;}
.y79{bottom:694.393200pt;}
.y52{bottom:709.251200pt;}
.y2b{bottom:711.627867pt;}
.y78{bottom:712.394533pt;}
.y6{bottom:720.417600pt;}
.y51{bottom:727.881200pt;}
.y2a{bottom:729.782533pt;}
.y77{bottom:730.395867pt;}
.y5{bottom:739.244267pt;}
.y50{bottom:746.511200pt;}
.y29{bottom:747.937200pt;}
.y76{bottom:748.397200pt;}
.y4f{bottom:765.141200pt;}
.y4{bottom:765.630933pt;}
.y28{bottom:766.091867pt;}
.y75{bottom:766.398533pt;}
.y4e{bottom:783.771200pt;}
.y27{bottom:784.246533pt;}
.y74{bottom:784.399867pt;}
.y3{bottom:784.457600pt;}
.y26{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y25{bottom:842.834667pt;}
.h7{height:39.479167pt;}
.h8{height:44.140625pt;}
.h9{height:49.322917pt;}
.h4{height:49.348958pt;}
.h3{height:51.816406pt;}
.h6{height:56.751302pt;}
.h2{height:61.686198pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:73.573467pt;}
.x6{left:74.467600pt;}
.x1{left:75.590533pt;}
.x5{left:92.484267pt;}
.x4{left:93.940933pt;}
.x3{left:206.416000pt;}
.x2{left:207.676000pt;}
}




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