
    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_ab0e4b574ec9012217f3152c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_24817ef0a41562f41c7d5c4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.719000;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_ebab2467f171ffc7262d74bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.698000;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_a174df159dfabeca9c9d1d80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910000;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_4a5af189c44a3a4157d6d9ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.725000;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_bf9a9d8fa1da4a7b648c4f3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.701000;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:ff7;src:url('chunks/assets/font_19bc0831c364af8b31b67017.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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:ff8;src:url('chunks/assets/font_d3c75e42308eff1028da9d78.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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:ff9;src:url('chunks/assets/font_e3b06205b320d84161325062.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1f{word-spacing:-55.726250px;}
.ws23{word-spacing:-18.757709px;}
.ws2a{word-spacing:-18.685978px;}
.ws19{word-spacing:-18.644278px;}
.ws24{word-spacing:-18.540986px;}
.ws22{word-spacing:-18.399053px;}
.wse{word-spacing:-16.820966px;}
.ws1d{word-spacing:-15.242880px;}
.ws1b{word-spacing:-14.382106px;}
.ws3{word-spacing:-14.085830px;}
.ws1a{word-spacing:-13.951718px;}
.ws29{word-spacing:-13.808256px;}
.ws17{word-spacing:-13.234406px;}
.ws1e{word-spacing:-13.066489px;}
.wsb{word-spacing:-12.056737px;}
.wsf{word-spacing:-11.728051px;}
.ws1c{word-spacing:-11.656320px;}
.ws2c{word-spacing:-11.225933px;}
.ws9{word-spacing:-11.140373px;}
.ws28{word-spacing:-11.010739px;}
.wsc{word-spacing:-10.878555px;}
.ws13{word-spacing:-10.436890px;}
.ws2b{word-spacing:-10.006502px;}
.ws7{word-spacing:-9.765826px;}
.ws5{word-spacing:-8.980371px;}
.ws30{word-spacing:-8.356685px;}
.ws27{word-spacing:-8.284954px;}
.ws2e{word-spacing:-8.069760px;}
.wsa{word-spacing:-7.213097px;}
.ws15{word-spacing:-7.137254px;}
.ws20{word-spacing:-6.993792px;}
.ws26{word-spacing:-6.348211px;}
.ws6{word-spacing:-6.296733px;}
.ws25{word-spacing:-6.276480px;}
.ws14{word-spacing:-4.841856px;}
.ws11{word-spacing:-4.483200px;}
.ws8{word-spacing:-3.809458px;}
.ws12{word-spacing:-2.976845px;}
.ws31{word-spacing:-2.761651px;}
.ws2d{word-spacing:-0.071731px;}
.ws18{word-spacing:0.000000px;}
.wsd{word-spacing:18.291456px;}
.ws4{word-spacing:20.225471px;}
.ws16{word-spacing:20.299930px;}
.ws21{word-spacing:21.734554px;}
.ws2f{word-spacing:25.034189px;}
.ws2{word-spacing:27.200395px;}
.ws32{word-spacing:33.211546px;}
.ws0{word-spacing:38.060325px;}
.ws1{word-spacing:38.184300px;}
.ws10{word-spacing:55.726250px;}
._c{margin-left:-12.291796px;}
._2{margin-left:-9.546075px;}
._1{margin-left:-6.322725px;}
._4{margin-left:-5.039465px;}
._0{margin-left:-3.099375px;}
._5{margin-left:-1.767274px;}
._6{width:1.832729px;}
._3{width:3.099375px;}
._7{width:21.964681px;}
._a{width:23.803686px;}
._8{width:26.516961px;}
._b{width:29.200875px;}
._d{width:35.148288px;}
._9{width:111.452500px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:61.467000px;}
.y34{bottom:106.299000px;}
.y4c{bottom:110.043000px;}
.y1a{bottom:122.493000px;}
.y4b{bottom:136.933500px;}
.y33{bottom:147.427500px;}
.y19{bottom:149.385000px;}
.y18{bottom:176.275500px;}
.y4a{bottom:178.768500px;}
.y32{bottom:188.556000px;}
.y17{bottom:203.166000px;}
.y49{bottom:205.659000px;}
.y31{bottom:229.686000px;}
.y16{bottom:230.056500px;}
.y48{bottom:250.303500px;}
.y15{bottom:256.947000px;}
.y30{bottom:269.401500px;}
.y14{bottom:283.839000px;}
.y2f{bottom:296.293500px;}
.y13{bottom:310.729500px;}
.y47{bottom:318.121500px;}
.y12{bottom:337.620000px;}
.y2e{bottom:340.938000px;}
.y46{bottom:345.012000px;}
.y11{bottom:382.264500px;}
.y45{bottom:389.656500px;}
.y2d{bottom:408.390000px;}
.y2c{bottom:435.280500px;}
.y10{bottom:450.082500px;}
.y44{bottom:457.474500px;}
.y2b{bottom:474.997500px;}
.yf{bottom:476.973000px;}
.y43{bottom:484.365000px;}
.y42{bottom:511.255500px;}
.y2a{bottom:516.126000px;}
.ye{bottom:521.796000px;}
.y41{bottom:538.146000px;}
.yd{bottom:547.018500px;}
.y29{bottom:557.254500px;}
.y40{bottom:565.036500px;}
.yc{bottom:572.239500px;}
.y28{bottom:596.971500px;}
.yb{bottom:597.462000px;}
.y3f{bottom:609.682500px;}
.ya{bottom:622.683000px;}
.y27{bottom:623.862000px;}
.y9{bottom:647.905500px;}
.y26{bottom:668.508000px;}
.y8{bottom:673.126500px;}
.y3e{bottom:677.499000px;}
.y7{bottom:698.349000px;}
.y3d{bottom:704.389500px;}
.y25{bottom:709.308000px;}
.y6{bottom:723.570000px;}
.y3c{bottom:731.281500px;}
.y5{bottom:758.872500px;}
.y3b{bottom:775.926000px;}
.y24{bottom:776.760000px;}
.y23{bottom:803.650500px;}
.y4{bottom:829.854000px;}
.y22{bottom:843.367500px;}
.y3a{bottom:843.742500px;}
.y39{bottom:870.633000px;}
.y21{bottom:884.496000px;}
.y3{bottom:889.567500px;}
.y38{bottom:897.525000px;}
.y50{bottom:899.425500px;}
.y37{bottom:924.415500px;}
.y20{bottom:925.624500px;}
.y4f{bottom:926.316000px;}
.y2{bottom:935.931000px;}
.y1f{bottom:952.515000px;}
.y4e{bottom:968.151000px;}
.y36{bottom:969.060000px;}
.y1{bottom:982.294500px;}
.y1e{bottom:992.232000px;}
.y4d{bottom:995.043000px;}
.y1d{bottom:1019.122500px;}
.y35{bottom:1036.876500px;}
.y1c{bottom:1063.768500px;}
.h3{height:44.967310px;}
.h4{height:46.145493px;}
.h5{height:53.870131px;}
.h2{height:60.426194px;}
.h6{height:72.511265px;}
.h1{height:87.402375px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:106.323000px;}
.x7{left:132.637500px;}
.x6{left:150.196500px;}
.x9{left:155.829000px;}
.x2{left:173.781000px;}
.x3{left:213.945000px;}
.x4{left:364.929000px;}
.x5{left:421.611000px;}
.x8{left:454.611000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1f{word-spacing:-49.534444pt;}
.ws23{word-spacing:-16.673519pt;}
.ws2a{word-spacing:-16.609758pt;}
.ws19{word-spacing:-16.572692pt;}
.ws24{word-spacing:-16.480876pt;}
.ws22{word-spacing:-16.354714pt;}
.wse{word-spacing:-14.951970pt;}
.ws1d{word-spacing:-13.549227pt;}
.ws1b{word-spacing:-12.784094pt;}
.ws3{word-spacing:-12.520738pt;}
.ws1a{word-spacing:-12.401527pt;}
.ws29{word-spacing:-12.274005pt;}
.ws17{word-spacing:-11.763917pt;}
.ws1e{word-spacing:-11.614657pt;}
.wsb{word-spacing:-10.717100pt;}
.wsf{word-spacing:-10.424934pt;}
.ws1c{word-spacing:-10.361173pt;}
.ws2c{word-spacing:-9.978607pt;}
.ws9{word-spacing:-9.902554pt;}
.ws28{word-spacing:-9.787324pt;}
.wsc{word-spacing:-9.669826pt;}
.ws13{word-spacing:-9.277235pt;}
.ws2b{word-spacing:-8.894669pt;}
.ws7{word-spacing:-8.680735pt;}
.ws5{word-spacing:-7.982552pt;}
.ws30{word-spacing:-7.428164pt;}
.ws27{word-spacing:-7.364403pt;}
.ws2e{word-spacing:-7.173120pt;}
.wsa{word-spacing:-6.411642pt;}
.ws15{word-spacing:-6.344226pt;}
.ws20{word-spacing:-6.216704pt;}
.ws26{word-spacing:-5.642854pt;}
.ws6{word-spacing:-5.597096pt;}
.ws25{word-spacing:-5.579093pt;}
.ws14{word-spacing:-4.303872pt;}
.ws11{word-spacing:-3.985067pt;}
.ws8{word-spacing:-3.386185pt;}
.ws12{word-spacing:-2.646084pt;}
.ws31{word-spacing:-2.454801pt;}
.ws2d{word-spacing:-0.063761pt;}
.ws18{word-spacing:0.000000pt;}
.wsd{word-spacing:16.259072pt;}
.ws4{word-spacing:17.978197pt;}
.ws16{word-spacing:18.044382pt;}
.ws21{word-spacing:19.319603pt;}
.ws2f{word-spacing:22.252612pt;}
.ws2{word-spacing:24.178129pt;}
.ws32{word-spacing:29.521374pt;}
.ws0{word-spacing:33.831400pt;}
.ws1{word-spacing:33.941600pt;}
.ws10{word-spacing:49.534444pt;}
._c{margin-left:-10.926041pt;}
._2{margin-left:-8.485400pt;}
._1{margin-left:-5.620200pt;}
._4{margin-left:-4.479525pt;}
._0{margin-left:-2.755000pt;}
._5{margin-left:-1.570910pt;}
._6{width:1.629092pt;}
._3{width:2.755000pt;}
._7{width:19.524161pt;}
._a{width:21.158832pt;}
._8{width:23.570632pt;}
._b{width:25.956333pt;}
._d{width:31.242923pt;}
._9{width:99.068889pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:54.637333pt;}
.y34{bottom:94.488000pt;}
.y4c{bottom:97.816000pt;}
.y1a{bottom:108.882667pt;}
.y4b{bottom:121.718667pt;}
.y33{bottom:131.046667pt;}
.y19{bottom:132.786667pt;}
.y18{bottom:156.689333pt;}
.y4a{bottom:158.905333pt;}
.y32{bottom:167.605333pt;}
.y17{bottom:180.592000pt;}
.y49{bottom:182.808000pt;}
.y31{bottom:204.165333pt;}
.y16{bottom:204.494667pt;}
.y48{bottom:222.492000pt;}
.y15{bottom:228.397333pt;}
.y30{bottom:239.468000pt;}
.y14{bottom:252.301333pt;}
.y2f{bottom:263.372000pt;}
.y13{bottom:276.204000pt;}
.y47{bottom:282.774667pt;}
.y12{bottom:300.106667pt;}
.y2e{bottom:303.056000pt;}
.y46{bottom:306.677333pt;}
.y11{bottom:339.790667pt;}
.y45{bottom:346.361333pt;}
.y2d{bottom:363.013333pt;}
.y2c{bottom:386.916000pt;}
.y10{bottom:400.073333pt;}
.y44{bottom:406.644000pt;}
.y2b{bottom:422.220000pt;}
.yf{bottom:423.976000pt;}
.y43{bottom:430.546667pt;}
.y42{bottom:454.449333pt;}
.y2a{bottom:458.778667pt;}
.ye{bottom:463.818667pt;}
.y41{bottom:478.352000pt;}
.yd{bottom:486.238667pt;}
.y29{bottom:495.337333pt;}
.y40{bottom:502.254667pt;}
.yc{bottom:508.657333pt;}
.y28{bottom:530.641333pt;}
.yb{bottom:531.077333pt;}
.y3f{bottom:541.940000pt;}
.ya{bottom:553.496000pt;}
.y27{bottom:554.544000pt;}
.y9{bottom:575.916000pt;}
.y26{bottom:594.229333pt;}
.y8{bottom:598.334667pt;}
.y3e{bottom:602.221333pt;}
.y7{bottom:620.754667pt;}
.y3d{bottom:626.124000pt;}
.y25{bottom:630.496000pt;}
.y6{bottom:643.173333pt;}
.y3c{bottom:650.028000pt;}
.y5{bottom:674.553333pt;}
.y3b{bottom:689.712000pt;}
.y24{bottom:690.453333pt;}
.y23{bottom:714.356000pt;}
.y4{bottom:737.648000pt;}
.y22{bottom:749.660000pt;}
.y3a{bottom:749.993333pt;}
.y39{bottom:773.896000pt;}
.y21{bottom:786.218667pt;}
.y3{bottom:790.726667pt;}
.y38{bottom:797.800000pt;}
.y50{bottom:799.489333pt;}
.y37{bottom:821.702667pt;}
.y20{bottom:822.777333pt;}
.y4f{bottom:823.392000pt;}
.y2{bottom:831.938667pt;}
.y1f{bottom:846.680000pt;}
.y4e{bottom:860.578667pt;}
.y36{bottom:861.386667pt;}
.y1{bottom:873.150667pt;}
.y1e{bottom:881.984000pt;}
.y4d{bottom:884.482667pt;}
.y1d{bottom:905.886667pt;}
.y35{bottom:921.668000pt;}
.y1c{bottom:945.572000pt;}
.h3{height:39.970942pt;}
.h4{height:41.018216pt;}
.h5{height:47.884561pt;}
.h2{height:53.712173pt;}
.h6{height:64.454458pt;}
.h1{height:77.691000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.509333pt;}
.x7{left:117.900000pt;}
.x6{left:133.508000pt;}
.x9{left:138.514667pt;}
.x2{left:154.472000pt;}
.x3{left:190.173333pt;}
.x4{left:324.381333pt;}
.x5{left:374.765333pt;}
.x8{left:404.098667pt;}
}




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