
    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_e294ff6381dc9bcbaa362592.woff')format("woff");}.ff1{font-family:ff1;line-height:1.134277;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_2a762a2443f7d04d88b74e1c.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_e8c261776ce43e5d6f8bfe33.woff')format("woff");}.ff3{font-family:ff3;line-height:1.456055;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_e34f3bc98408e1ed0ecb1749.woff')format("woff");}.ff4{font-family:ff4;line-height:1.134277;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_37f723d9b31f767d83726fb3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:81.000000px;}
.lsa{letter-spacing:-2.025000px;}
.ls6{letter-spacing:-1.980000px;}
.lse{letter-spacing:-1.863000px;}
.ls5{letter-spacing:-1.836000px;}
.lsf{letter-spacing:-1.656000px;}
.ls4{letter-spacing:-1.380000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:1.131600px;}
.ls3{letter-spacing:1.260000px;}
.ls8{letter-spacing:2.100000px;}
.ls9{letter-spacing:2.400000px;}
.lsc{letter-spacing:2.553000px;}
.ls2{letter-spacing:6.000000px;}
.ls10{letter-spacing:466.724400px;}
.ls12{letter-spacing:467.324400px;}
.ls14{letter-spacing:467.512200px;}
.ls7{letter-spacing:469.949400px;}
.lsb{letter-spacing:936.846000px;}
.ls11{letter-spacing:939.471000px;}
.ls13{letter-spacing:943.521000px;}
.ls0{letter-spacing:945.501000px;}
.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;}
}
.ws0{word-spacing:-28.512000px;}
.wsc{word-spacing:-21.075000px;}
.wsd{word-spacing:-19.389000px;}
.ws6{word-spacing:-19.050000px;}
.ws8{word-spacing:-17.043000px;}
.wsb{word-spacing:-15.387000px;}
.wsa{word-spacing:-15.180000px;}
.wse{word-spacing:-14.820000px;}
.ws7{word-spacing:-13.902000px;}
.ws2{word-spacing:-6.000000px;}
.ws9{word-spacing:-2.400000px;}
.ws3{word-spacing:-1.260000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:1.380000px;}
.ws5{word-spacing:1.980000px;}
._11{margin-left:-18.783000px;}
._12{margin-left:-16.572000px;}
._b{margin-left:-10.141200px;}
._14{margin-left:-6.844800px;}
._a{margin-left:-5.334000px;}
._c{margin-left:-4.164000px;}
._8{margin-left:-2.574000px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._3{width:2.379000px;}
._9{width:3.915000px;}
._4{width:5.553000px;}
._6{width:6.612000px;}
._5{width:8.136000px;}
._7{width:9.234000px;}
._f{width:10.467000px;}
._d{width:12.331800px;}
._e{width:13.356900px;}
._10{width:14.871300px;}
._15{width:16.340400px;}
._13{width:17.853900px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.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;}
.y4a{bottom:106.165350px;}
.y21{bottom:106.191900px;}
.y70{bottom:106.268850px;}
.y49{bottom:126.589350px;}
.y20{bottom:126.909150px;}
.y6f{bottom:127.227600px;}
.y48{bottom:147.013350px;}
.y1f{bottom:147.626400px;}
.y6e{bottom:148.186350px;}
.y47{bottom:167.437350px;}
.y1e{bottom:168.343650px;}
.y6d{bottom:169.145100px;}
.y46{bottom:187.861350px;}
.y1d{bottom:189.060900px;}
.y6c{bottom:190.103850px;}
.y45{bottom:208.285350px;}
.y1c{bottom:209.778150px;}
.y6b{bottom:211.062600px;}
.y44{bottom:228.709350px;}
.y1b{bottom:230.495400px;}
.y6a{bottom:232.021350px;}
.y43{bottom:249.133350px;}
.y1a{bottom:251.212650px;}
.y69{bottom:252.980100px;}
.y42{bottom:269.557350px;}
.y19{bottom:271.929900px;}
.y68{bottom:273.938850px;}
.y41{bottom:289.981350px;}
.y18{bottom:292.647150px;}
.y67{bottom:294.897600px;}
.y40{bottom:310.405350px;}
.y17{bottom:313.364400px;}
.y66{bottom:315.856350px;}
.y3f{bottom:330.829350px;}
.y16{bottom:334.081650px;}
.y65{bottom:336.815100px;}
.y3e{bottom:351.253350px;}
.y15{bottom:354.798900px;}
.y64{bottom:357.773850px;}
.y3d{bottom:371.677350px;}
.y14{bottom:375.516150px;}
.y63{bottom:378.732600px;}
.y3c{bottom:392.101350px;}
.y13{bottom:396.233400px;}
.y62{bottom:399.691350px;}
.y3b{bottom:412.525350px;}
.y12{bottom:416.950650px;}
.y61{bottom:420.650100px;}
.y3a{bottom:432.949350px;}
.y11{bottom:437.667900px;}
.y60{bottom:441.608850px;}
.y39{bottom:453.373350px;}
.y10{bottom:458.385150px;}
.y5f{bottom:462.567600px;}
.y38{bottom:473.797350px;}
.yf{bottom:479.102400px;}
.y5e{bottom:483.526350px;}
.y37{bottom:494.221350px;}
.ye{bottom:499.819650px;}
.yd{bottom:499.821150px;}
.y5d{bottom:504.485100px;}
.y36{bottom:514.645350px;}
.y5c{bottom:525.443850px;}
.y35{bottom:535.069350px;}
.y5b{bottom:546.402600px;}
.y34{bottom:555.493350px;}
.y5a{bottom:567.361350px;}
.yc{bottom:570.543300px;}
.y33{bottom:575.917350px;}
.y59{bottom:588.320100px;}
.yb{bottom:592.008300px;}
.y32{bottom:596.341350px;}
.y58{bottom:609.278850px;}
.y31{bottom:616.765350px;}
.y57{bottom:630.237600px;}
.y30{bottom:637.189350px;}
.ya{bottom:643.221150px;}
.y56{bottom:651.196350px;}
.y2f{bottom:657.613350px;}
.y7a{bottom:666.191550px;}
.y55{bottom:672.155100px;}
.y9{bottom:675.189150px;}
.y2e{bottom:678.037350px;}
.y79{bottom:686.441550px;}
.y54{bottom:693.113850px;}
.y2d{bottom:698.461350px;}
.y78{bottom:706.691550px;}
.y8{bottom:707.157150px;}
.y53{bottom:714.072600px;}
.y2c{bottom:718.885350px;}
.y77{bottom:726.941550px;}
.y52{bottom:735.031350px;}
.y7{bottom:739.118850px;}
.y2b{bottom:739.309350px;}
.y51{bottom:755.990100px;}
.y2a{bottom:759.733350px;}
.y76{bottom:759.941550px;}
.y50{bottom:776.948850px;}
.y29{bottom:780.157350px;}
.y4f{bottom:797.907600px;}
.y28{bottom:800.581350px;}
.y6{bottom:800.832150px;}
.y75{bottom:801.443850px;}
.y4e{bottom:818.866350px;}
.y27{bottom:821.005350px;}
.y74{bottom:821.695350px;}
.y5{bottom:830.802150px;}
.y4d{bottom:839.825100px;}
.y26{bottom:841.429350px;}
.y73{bottom:841.946850px;}
.y4{bottom:852.267150px;}
.y4c{bottom:860.783850px;}
.y25{bottom:861.853350px;}
.y72{bottom:862.198350px;}
.y4b{bottom:881.742600px;}
.y3{bottom:882.237150px;}
.y24{bottom:882.277350px;}
.y71{bottom:882.449850px;}
.y23{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:948.189000px;}
.ha{height:41.648438px;}
.h4{height:52.060547px;}
.h3{height:54.663574px;}
.h9{height:59.869629px;}
.hc{height:60.234375px;}
.h2{height:65.075684px;}
.h8{height:69.269531px;}
.h5{height:72.884766px;}
.h6{height:93.708984px;}
.h7{height:172.849866px;}
.hb{height:1020.472500px;}
.h0{height:1020.472503px;}
.h1{height:1020.750000px;}
.w2{width:722.835000px;}
.w0{width:722.835022px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:82.096650px;}
.x7{left:83.643600px;}
.x1{left:85.039350px;}
.x9{left:104.088750px;}
.x8{left:105.689100px;}
.x4{left:230.000700px;}
.x2{left:232.076250px;}
.x3{left:233.523450px;}
.x6{left:263.164350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.000000pt;}
.lsa{letter-spacing:-1.800000pt;}
.ls6{letter-spacing:-1.760000pt;}
.lse{letter-spacing:-1.656000pt;}
.ls5{letter-spacing:-1.632000pt;}
.lsf{letter-spacing:-1.472000pt;}
.ls4{letter-spacing:-1.226667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:1.005867pt;}
.ls3{letter-spacing:1.120000pt;}
.ls8{letter-spacing:1.866667pt;}
.ls9{letter-spacing:2.133333pt;}
.lsc{letter-spacing:2.269333pt;}
.ls2{letter-spacing:5.333333pt;}
.ls10{letter-spacing:414.866133pt;}
.ls12{letter-spacing:415.399467pt;}
.ls14{letter-spacing:415.566400pt;}
.ls7{letter-spacing:417.732800pt;}
.lsb{letter-spacing:832.752000pt;}
.ls11{letter-spacing:835.085333pt;}
.ls13{letter-spacing:838.685333pt;}
.ls0{letter-spacing:840.445333pt;}
.ws0{word-spacing:-25.344000pt;}
.wsc{word-spacing:-18.733333pt;}
.wsd{word-spacing:-17.234667pt;}
.ws6{word-spacing:-16.933333pt;}
.ws8{word-spacing:-15.149333pt;}
.wsb{word-spacing:-13.677333pt;}
.wsa{word-spacing:-13.493333pt;}
.wse{word-spacing:-13.173333pt;}
.ws7{word-spacing:-12.357333pt;}
.ws2{word-spacing:-5.333333pt;}
.ws9{word-spacing:-2.133333pt;}
.ws3{word-spacing:-1.120000pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:1.226667pt;}
.ws5{word-spacing:1.760000pt;}
._11{margin-left:-16.696000pt;}
._12{margin-left:-14.730667pt;}
._b{margin-left:-9.014400pt;}
._14{margin-left:-6.084267pt;}
._a{margin-left:-4.741333pt;}
._c{margin-left:-3.701333pt;}
._8{margin-left:-2.288000pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._3{width:2.114667pt;}
._9{width:3.480000pt;}
._4{width:4.936000pt;}
._6{width:5.877333pt;}
._5{width:7.232000pt;}
._7{width:8.208000pt;}
._f{width:9.304000pt;}
._d{width:10.961600pt;}
._e{width:11.872800pt;}
._10{width:13.218933pt;}
._15{width:14.524800pt;}
._13{width:15.870133pt;}
._0{width:514.133333pt;}
.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;}
.y4a{bottom:94.369200pt;}
.y21{bottom:94.392800pt;}
.y70{bottom:94.461200pt;}
.y49{bottom:112.523867pt;}
.y20{bottom:112.808133pt;}
.y6f{bottom:113.091200pt;}
.y48{bottom:130.678533pt;}
.y1f{bottom:131.223467pt;}
.y6e{bottom:131.721200pt;}
.y47{bottom:148.833200pt;}
.y1e{bottom:149.638800pt;}
.y6d{bottom:150.351200pt;}
.y46{bottom:166.987867pt;}
.y1d{bottom:168.054133pt;}
.y6c{bottom:168.981200pt;}
.y45{bottom:185.142533pt;}
.y1c{bottom:186.469467pt;}
.y6b{bottom:187.611200pt;}
.y44{bottom:203.297200pt;}
.y1b{bottom:204.884800pt;}
.y6a{bottom:206.241200pt;}
.y43{bottom:221.451867pt;}
.y1a{bottom:223.300133pt;}
.y69{bottom:224.871200pt;}
.y42{bottom:239.606533pt;}
.y19{bottom:241.715467pt;}
.y68{bottom:243.501200pt;}
.y41{bottom:257.761200pt;}
.y18{bottom:260.130800pt;}
.y67{bottom:262.131200pt;}
.y40{bottom:275.915867pt;}
.y17{bottom:278.546133pt;}
.y66{bottom:280.761200pt;}
.y3f{bottom:294.070533pt;}
.y16{bottom:296.961467pt;}
.y65{bottom:299.391200pt;}
.y3e{bottom:312.225200pt;}
.y15{bottom:315.376800pt;}
.y64{bottom:318.021200pt;}
.y3d{bottom:330.379867pt;}
.y14{bottom:333.792133pt;}
.y63{bottom:336.651200pt;}
.y3c{bottom:348.534533pt;}
.y13{bottom:352.207467pt;}
.y62{bottom:355.281200pt;}
.y3b{bottom:366.689200pt;}
.y12{bottom:370.622800pt;}
.y61{bottom:373.911200pt;}
.y3a{bottom:384.843867pt;}
.y11{bottom:389.038133pt;}
.y60{bottom:392.541200pt;}
.y39{bottom:402.998533pt;}
.y10{bottom:407.453467pt;}
.y5f{bottom:411.171200pt;}
.y38{bottom:421.153200pt;}
.yf{bottom:425.868800pt;}
.y5e{bottom:429.801200pt;}
.y37{bottom:439.307867pt;}
.ye{bottom:444.284133pt;}
.yd{bottom:444.285467pt;}
.y5d{bottom:448.431200pt;}
.y36{bottom:457.462533pt;}
.y5c{bottom:467.061200pt;}
.y35{bottom:475.617200pt;}
.y5b{bottom:485.691200pt;}
.y34{bottom:493.771867pt;}
.y5a{bottom:504.321200pt;}
.yc{bottom:507.149600pt;}
.y33{bottom:511.926533pt;}
.y59{bottom:522.951200pt;}
.yb{bottom:526.229600pt;}
.y32{bottom:530.081200pt;}
.y58{bottom:541.581200pt;}
.y31{bottom:548.235867pt;}
.y57{bottom:560.211200pt;}
.y30{bottom:566.390533pt;}
.ya{bottom:571.752133pt;}
.y56{bottom:578.841200pt;}
.y2f{bottom:584.545200pt;}
.y7a{bottom:592.170267pt;}
.y55{bottom:597.471200pt;}
.y9{bottom:600.168133pt;}
.y2e{bottom:602.699867pt;}
.y79{bottom:610.170267pt;}
.y54{bottom:616.101200pt;}
.y2d{bottom:620.854533pt;}
.y78{bottom:628.170267pt;}
.y8{bottom:628.584133pt;}
.y53{bottom:634.731200pt;}
.y2c{bottom:639.009200pt;}
.y77{bottom:646.170267pt;}
.y52{bottom:653.361200pt;}
.y7{bottom:656.994533pt;}
.y2b{bottom:657.163867pt;}
.y51{bottom:671.991200pt;}
.y2a{bottom:675.318533pt;}
.y76{bottom:675.503600pt;}
.y50{bottom:690.621200pt;}
.y29{bottom:693.473200pt;}
.y4f{bottom:709.251200pt;}
.y28{bottom:711.627867pt;}
.y6{bottom:711.850800pt;}
.y75{bottom:712.394533pt;}
.y4e{bottom:727.881200pt;}
.y27{bottom:729.782533pt;}
.y74{bottom:730.395867pt;}
.y5{bottom:738.490800pt;}
.y4d{bottom:746.511200pt;}
.y26{bottom:747.937200pt;}
.y73{bottom:748.397200pt;}
.y4{bottom:757.570800pt;}
.y4c{bottom:765.141200pt;}
.y25{bottom:766.091867pt;}
.y72{bottom:766.398533pt;}
.y4b{bottom:783.771200pt;}
.y3{bottom:784.210800pt;}
.y24{bottom:784.246533pt;}
.y71{bottom:784.399867pt;}
.y23{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:842.834667pt;}
.ha{height:37.020833pt;}
.h4{height:46.276042pt;}
.h3{height:48.589844pt;}
.h9{height:53.217448pt;}
.hc{height:53.541667pt;}
.h2{height:57.845052pt;}
.h8{height:61.572917pt;}
.h5{height:64.786458pt;}
.h6{height:83.296875pt;}
.h7{height:153.644325pt;}
.hb{height:907.086667pt;}
.h0{height:907.086669pt;}
.h1{height:907.333333pt;}
.w2{width:642.520000pt;}
.w0{width:642.520020pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:72.974800pt;}
.x7{left:74.349867pt;}
.x1{left:75.590533pt;}
.x9{left:92.523333pt;}
.x8{left:93.945867pt;}
.x4{left:204.445067pt;}
.x2{left:206.290000pt;}
.x3{left:207.576400pt;}
.x6{left:233.923867pt;}
}




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