
    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_21c5911901f4154ac92e2f47.woff')format("woff");}.ff1{font-family:ff1;line-height:1.086914;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_065c0024f9f8589f5aa1592f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_e4c220d21046ff6ccf24aaf0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.404297;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_5b236598bd9f7369a4e7b823.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_af463245ae16baa06914f444.woff')format("woff");}.ff5{font-family:ff5;line-height:1.086914;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_2fac037561a1b9cfc59b4bae.woff')format("woff");}.ff6{font-family:ff6;line-height:1.404297;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;}
.v2{vertical-align:23.402400px;}
.v1{vertical-align:81.000000px;}
.ls3{letter-spacing:-4.956000px;}
.lsb{letter-spacing:-0.675000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001554px;}
.ls9{letter-spacing:0.002154px;}
.ls6{letter-spacing:2.100000px;}
.lsa{letter-spacing:2.400000px;}
.ls13{letter-spacing:2.822100px;}
.lsf{letter-spacing:3.174000px;}
.lse{letter-spacing:3.187800px;}
.ls8{letter-spacing:5.589000px;}
.ls2{letter-spacing:5.940000px;}
.lsc{letter-spacing:6.000000px;}
.ls4{letter-spacing:6.264000px;}
.ls5{letter-spacing:467.024400px;}
.ls12{letter-spacing:468.479400px;}
.ls10{letter-spacing:468.892200px;}
.ls11{letter-spacing:936.846000px;}
.lsd{letter-spacing:945.501000px;}
.ls0{letter-spacing:952.522800px;}
.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;}
}
.ws4{word-spacing:-20.400000px;}
.ws0{word-spacing:-18.648000px;}
.ws6{word-spacing:-17.043000px;}
.wsa{word-spacing:-14.820000px;}
.ws5{word-spacing:-13.902000px;}
.ws3{word-spacing:-6.264000px;}
.ws8{word-spacing:-6.000000px;}
.ws2{word-spacing:-5.940000px;}
.ws9{word-spacing:-3.174000px;}
.ws7{word-spacing:-2.400000px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-18.886200px;}
._b{margin-left:-6.328800px;}
._3{margin-left:-5.102700px;}
._2{margin-left:-3.143100px;}
._8{margin-left:-1.360800px;}
._4{width:1.272000px;}
._1{width:2.400000px;}
._a{width:4.006800px;}
._9{width:5.040000px;}
._5{width:6.180000px;}
._6{width:8.172000px;}
._7{width:9.744000px;}
._c{width:11.145900px;}
._d{width:12.315000px;}
._f{width:13.460400px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:40.227000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y51{bottom:106.165350px;}
.y48{bottom:106.275150px;}
.y1f{bottom:106.381350px;}
.y50{bottom:126.589350px;}
.y47{bottom:126.699150px;}
.y1e{bottom:127.046850px;}
.y4f{bottom:147.013350px;}
.y46{bottom:147.123150px;}
.y1d{bottom:147.712350px;}
.y4e{bottom:167.437350px;}
.y45{bottom:167.547150px;}
.y1c{bottom:168.377850px;}
.y4d{bottom:187.861350px;}
.y44{bottom:187.971150px;}
.y1b{bottom:189.043350px;}
.y4c{bottom:208.285350px;}
.y43{bottom:208.395150px;}
.y1a{bottom:209.708850px;}
.y71{bottom:220.691550px;}
.y4b{bottom:228.709350px;}
.y42{bottom:228.819150px;}
.y19{bottom:230.374350px;}
.y70{bottom:240.941550px;}
.y4a{bottom:249.133350px;}
.y41{bottom:249.239700px;}
.y18{bottom:251.039850px;}
.y6f{bottom:261.191550px;}
.y40{bottom:269.557350px;}
.y17{bottom:271.705350px;}
.y6e{bottom:281.441550px;}
.y3f{bottom:289.981350px;}
.y16{bottom:292.370850px;}
.y3e{bottom:310.405350px;}
.y15{bottom:313.036350px;}
.y6d{bottom:314.441550px;}
.y3d{bottom:330.829350px;}
.y14{bottom:333.701850px;}
.y3c{bottom:351.253350px;}
.y13{bottom:354.367350px;}
.y6c{bottom:355.910850px;}
.y3b{bottom:371.677350px;}
.y12{bottom:375.032850px;}
.y6b{bottom:376.162350px;}
.y3a{bottom:392.101350px;}
.y11{bottom:395.698350px;}
.y6a{bottom:396.413850px;}
.y39{bottom:412.525350px;}
.y10{bottom:416.363850px;}
.y69{bottom:416.665350px;}
.y38{bottom:432.949350px;}
.y68{bottom:436.916850px;}
.yf{bottom:437.029350px;}
.y37{bottom:453.373350px;}
.y67{bottom:457.168350px;}
.ye{bottom:457.694850px;}
.y36{bottom:473.797350px;}
.y66{bottom:477.419850px;}
.yd{bottom:478.360350px;}
.yc{bottom:478.361850px;}
.y35{bottom:494.221350px;}
.y65{bottom:497.671350px;}
.y34{bottom:514.645350px;}
.y64{bottom:517.922850px;}
.y33{bottom:535.069350px;}
.y63{bottom:538.174350px;}
.y32{bottom:555.493350px;}
.y62{bottom:558.425850px;}
.y31{bottom:575.917350px;}
.y61{bottom:578.677350px;}
.yb{bottom:590.386200px;}
.y30{bottom:596.341350px;}
.y60{bottom:598.928850px;}
.ya{bottom:611.806200px;}
.y2f{bottom:616.765350px;}
.y5f{bottom:619.180350px;}
.y2e{bottom:637.189350px;}
.y5e{bottom:639.431850px;}
.y2d{bottom:657.613350px;}
.y5d{bottom:659.683350px;}
.y9{bottom:662.990250px;}
.y2c{bottom:678.037350px;}
.y5c{bottom:679.934850px;}
.y8{bottom:694.916400px;}
.y2b{bottom:698.461350px;}
.y5b{bottom:700.186350px;}
.y2a{bottom:718.885350px;}
.y5a{bottom:720.437850px;}
.y7{bottom:726.830400px;}
.y29{bottom:739.309350px;}
.y59{bottom:740.689350px;}
.y6{bottom:758.750700px;}
.y28{bottom:759.733350px;}
.y58{bottom:760.940850px;}
.y27{bottom:780.157350px;}
.y57{bottom:781.192350px;}
.y5{bottom:790.670700px;}
.y26{bottom:800.581350px;}
.y56{bottom:801.443850px;}
.y25{bottom:821.005350px;}
.y55{bottom:821.695350px;}
.y24{bottom:841.429350px;}
.y54{bottom:841.946850px;}
.y4{bottom:852.353850px;}
.y23{bottom:861.853350px;}
.y53{bottom:862.198350px;}
.y22{bottom:882.277350px;}
.y3{bottom:882.278850px;}
.y52{bottom:882.449850px;}
.y21{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.ha{height:40.898438px;}
.h4{height:51.123047px;}
.h3{height:53.679199px;}
.he{height:55.576172px;}
.h9{height:58.791504px;}
.h7{height:61.347656px;}
.h2{height:63.903809px;}
.hb{height:63.912598px;}
.hd{height:63.926398px;}
.hc{height:64.337998px;}
.h5{height:71.572266px;}
.h6{height:92.021484px;}
.h8{height:169.737207px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.929950px;}
.x4{left:82.096650px;}
.x6{left:83.686650px;}
.x1{left:85.039350px;}
.x8{left:104.060700px;}
.x7{left:105.691200px;}
.x3{left:232.218000px;}
.x2{left:233.439750px;}
.x5{left:259.024350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.802133pt;}
.v1{vertical-align:72.000000pt;}
.ls3{letter-spacing:-4.405333pt;}
.lsb{letter-spacing:-0.600000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001381pt;}
.ls9{letter-spacing:0.001915pt;}
.ls6{letter-spacing:1.866667pt;}
.lsa{letter-spacing:2.133333pt;}
.ls13{letter-spacing:2.508533pt;}
.lsf{letter-spacing:2.821333pt;}
.lse{letter-spacing:2.833600pt;}
.ls8{letter-spacing:4.968000pt;}
.ls2{letter-spacing:5.280000pt;}
.lsc{letter-spacing:5.333333pt;}
.ls4{letter-spacing:5.568000pt;}
.ls5{letter-spacing:415.132800pt;}
.ls12{letter-spacing:416.426133pt;}
.ls10{letter-spacing:416.793067pt;}
.ls11{letter-spacing:832.752000pt;}
.lsd{letter-spacing:840.445333pt;}
.ls0{letter-spacing:846.686933pt;}
.ws4{word-spacing:-18.133333pt;}
.ws0{word-spacing:-16.576000pt;}
.ws6{word-spacing:-15.149333pt;}
.wsa{word-spacing:-13.173333pt;}
.ws5{word-spacing:-12.357333pt;}
.ws3{word-spacing:-5.568000pt;}
.ws8{word-spacing:-5.333333pt;}
.ws2{word-spacing:-5.280000pt;}
.ws9{word-spacing:-2.821333pt;}
.ws7{word-spacing:-2.133333pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-16.787733pt;}
._b{margin-left:-5.625600pt;}
._3{margin-left:-4.535733pt;}
._2{margin-left:-2.793867pt;}
._8{margin-left:-1.209600pt;}
._4{width:1.130667pt;}
._1{width:2.133333pt;}
._a{width:3.561600pt;}
._9{width:4.480000pt;}
._5{width:5.493333pt;}
._6{width:7.264000pt;}
._7{width:8.661333pt;}
._c{width:9.907467pt;}
._d{width:10.946667pt;}
._f{width:11.964800pt;}
._0{width:514.133333pt;}
.fsa{font-size:35.757333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y51{bottom:94.369200pt;}
.y48{bottom:94.466800pt;}
.y1f{bottom:94.561200pt;}
.y50{bottom:112.523867pt;}
.y47{bottom:112.621467pt;}
.y1e{bottom:112.930533pt;}
.y4f{bottom:130.678533pt;}
.y46{bottom:130.776133pt;}
.y1d{bottom:131.299867pt;}
.y4e{bottom:148.833200pt;}
.y45{bottom:148.930800pt;}
.y1c{bottom:149.669200pt;}
.y4d{bottom:166.987867pt;}
.y44{bottom:167.085467pt;}
.y1b{bottom:168.038533pt;}
.y4c{bottom:185.142533pt;}
.y43{bottom:185.240133pt;}
.y1a{bottom:186.407867pt;}
.y71{bottom:196.170267pt;}
.y4b{bottom:203.297200pt;}
.y42{bottom:203.394800pt;}
.y19{bottom:204.777200pt;}
.y70{bottom:214.170267pt;}
.y4a{bottom:221.451867pt;}
.y41{bottom:221.546400pt;}
.y18{bottom:223.146533pt;}
.y6f{bottom:232.170267pt;}
.y40{bottom:239.606533pt;}
.y17{bottom:241.515867pt;}
.y6e{bottom:250.170267pt;}
.y3f{bottom:257.761200pt;}
.y16{bottom:259.885200pt;}
.y3e{bottom:275.915867pt;}
.y15{bottom:278.254533pt;}
.y6d{bottom:279.503600pt;}
.y3d{bottom:294.070533pt;}
.y14{bottom:296.623867pt;}
.y3c{bottom:312.225200pt;}
.y13{bottom:314.993200pt;}
.y6c{bottom:316.365200pt;}
.y3b{bottom:330.379867pt;}
.y12{bottom:333.362533pt;}
.y6b{bottom:334.366533pt;}
.y3a{bottom:348.534533pt;}
.y11{bottom:351.731867pt;}
.y6a{bottom:352.367867pt;}
.y39{bottom:366.689200pt;}
.y10{bottom:370.101200pt;}
.y69{bottom:370.369200pt;}
.y38{bottom:384.843867pt;}
.y68{bottom:388.370533pt;}
.yf{bottom:388.470533pt;}
.y37{bottom:402.998533pt;}
.y67{bottom:406.371867pt;}
.ye{bottom:406.839867pt;}
.y36{bottom:421.153200pt;}
.y66{bottom:424.373200pt;}
.yd{bottom:425.209200pt;}
.yc{bottom:425.210533pt;}
.y35{bottom:439.307867pt;}
.y65{bottom:442.374533pt;}
.y34{bottom:457.462533pt;}
.y64{bottom:460.375867pt;}
.y33{bottom:475.617200pt;}
.y63{bottom:478.377200pt;}
.y32{bottom:493.771867pt;}
.y62{bottom:496.378533pt;}
.y31{bottom:511.926533pt;}
.y61{bottom:514.379867pt;}
.yb{bottom:524.787733pt;}
.y30{bottom:530.081200pt;}
.y60{bottom:532.381200pt;}
.ya{bottom:543.827733pt;}
.y2f{bottom:548.235867pt;}
.y5f{bottom:550.382533pt;}
.y2e{bottom:566.390533pt;}
.y5e{bottom:568.383867pt;}
.y2d{bottom:584.545200pt;}
.y5d{bottom:586.385200pt;}
.y9{bottom:589.324667pt;}
.y2c{bottom:602.699867pt;}
.y5c{bottom:604.386533pt;}
.y8{bottom:617.703467pt;}
.y2b{bottom:620.854533pt;}
.y5b{bottom:622.387867pt;}
.y2a{bottom:639.009200pt;}
.y5a{bottom:640.389200pt;}
.y7{bottom:646.071467pt;}
.y29{bottom:657.163867pt;}
.y59{bottom:658.390533pt;}
.y6{bottom:674.445067pt;}
.y28{bottom:675.318533pt;}
.y58{bottom:676.391867pt;}
.y27{bottom:693.473200pt;}
.y57{bottom:694.393200pt;}
.y5{bottom:702.818400pt;}
.y26{bottom:711.627867pt;}
.y56{bottom:712.394533pt;}
.y25{bottom:729.782533pt;}
.y55{bottom:730.395867pt;}
.y24{bottom:747.937200pt;}
.y54{bottom:748.397200pt;}
.y4{bottom:757.647867pt;}
.y23{bottom:766.091867pt;}
.y53{bottom:766.398533pt;}
.y22{bottom:784.246533pt;}
.y3{bottom:784.247867pt;}
.y52{bottom:784.399867pt;}
.y21{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.ha{height:36.354167pt;}
.h4{height:45.442708pt;}
.h3{height:47.714844pt;}
.he{height:49.401042pt;}
.h9{height:52.259115pt;}
.h7{height:54.531250pt;}
.h2{height:56.803385pt;}
.hb{height:56.811198pt;}
.hd{height:56.823465pt;}
.hc{height:57.189331pt;}
.h5{height:63.619792pt;}
.h6{height:81.796875pt;}
.h8{height:150.877517pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.937733pt;}
.x4{left:72.974800pt;}
.x6{left:74.388133pt;}
.x1{left:75.590533pt;}
.x8{left:92.498400pt;}
.x7{left:93.947733pt;}
.x3{left:206.416000pt;}
.x2{left:207.502000pt;}
.x5{left:230.243867pt;}
}




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