
    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_88a0072252b8f328de857ceb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_13641048efff3cb6e954f9f0.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_25cb8caf3ed613925d7d88bd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.196777;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_cd572c197936d95f25bff254.woff')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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:82.800000px;}
.lsa{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.345000px;}
.ls15{letter-spacing:-0.315000px;}
.ls7{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.138000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.051328px;}
.lsf{letter-spacing:0.069000px;}
.ls4{letter-spacing:0.138000px;}
.ls18{letter-spacing:0.315000px;}
.lsd{letter-spacing:0.345000px;}
.lse{letter-spacing:0.483000px;}
.ls8{letter-spacing:0.552000px;}
.ls3{letter-spacing:0.621000px;}
.ls17{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.690000px;}
.ls5{letter-spacing:1.242000px;}
.ls12{letter-spacing:2.730000px;}
.ls0{letter-spacing:3.900000px;}
.ls19{letter-spacing:5.400000px;}
.ls1{letter-spacing:6.000000px;}
.lsb{letter-spacing:6.240000px;}
.ls11{letter-spacing:6.300000px;}
.lsc{letter-spacing:7.731000px;}
.ls16{letter-spacing:9.450000px;}
.ls1a{letter-spacing:10.080000px;}
.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:-24.003000px;}
.ws0{word-spacing:-21.075000px;}
.ws6{word-spacing:-17.703000px;}
.ws3{word-spacing:-17.388000px;}
.ws1{word-spacing:-17.043000px;}
.ws4{word-spacing:-16.860000px;}
.ws7{word-spacing:-16.191000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1615.752000px;}
._11{margin-left:-15.333000px;}
._e{margin-left:-13.146000px;}
._12{margin-left:-12.105000px;}
._a{margin-left:-10.824000px;}
._b{margin-left:-8.100000px;}
._6{margin-left:-6.180000px;}
._f{margin-left:-5.148000px;}
._3{margin-left:-3.822000px;}
._1{margin-left:-2.040000px;}
._d{margin-left:-1.038000px;}
._7{width:1.140000px;}
._8{width:2.220000px;}
._2{width:4.200000px;}
._4{width:5.700000px;}
._5{width:7.080000px;}
._9{width:8.280000px;}
._c{width:10.212000px;}
._10{width:12.738000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:202.104000px;}
.y0{bottom:0.000000px;}
.y1{bottom:56.667600px;}
.y23{bottom:56.691000px;}
.y22{bottom:108.543000px;}
.y48{bottom:109.983000px;}
.y21{bottom:129.243000px;}
.y47{bottom:129.481500px;}
.y20{bottom:149.943000px;}
.y46{bottom:164.289000px;}
.y1f{bottom:170.643000px;}
.y1e{bottom:191.343000px;}
.y1d{bottom:212.043000px;}
.y45{bottom:213.947250px;}
.y1c{bottom:232.743000px;}
.y44{bottom:234.940500px;}
.y1b{bottom:253.443000px;}
.y43{bottom:266.569500px;}
.y1a{bottom:274.143000px;}
.y42{bottom:286.219500px;}
.y19{bottom:294.843000px;}
.y41{bottom:305.869500px;}
.y18{bottom:315.543000px;}
.y40{bottom:325.519500px;}
.y17{bottom:336.243000px;}
.y3f{bottom:345.169500px;}
.y59{bottom:349.285500px;}
.y16{bottom:356.943000px;}
.y3e{bottom:375.540000px;}
.y15{bottom:377.643000px;}
.y3d{bottom:396.533250px;}
.y14{bottom:398.343000px;}
.y3c{bottom:417.526500px;}
.y13{bottom:419.043000px;}
.y3b{bottom:438.519750px;}
.y12{bottom:439.743000px;}
.y3a{bottom:459.513000px;}
.y11{bottom:460.443000px;}
.y39{bottom:480.506250px;}
.y10{bottom:481.143000px;}
.y58{bottom:495.235500px;}
.y38{bottom:501.499500px;}
.yf{bottom:501.843000px;}
.y57{bottom:515.485500px;}
.y37{bottom:522.492750px;}
.ye{bottom:522.543000px;}
.y56{bottom:535.735500px;}
.yd{bottom:543.243000px;}
.y36{bottom:543.486000px;}
.y55{bottom:555.985500px;}
.yc{bottom:563.943000px;}
.y35{bottom:564.479250px;}
.yb{bottom:584.643000px;}
.y34{bottom:585.472500px;}
.y54{bottom:591.235500px;}
.ya{bottom:605.343000px;}
.y33{bottom:606.621000px;}
.y9{bottom:626.043000px;}
.y32{bottom:627.769500px;}
.y53{bottom:641.491500px;}
.y8{bottom:646.743000px;}
.y31{bottom:648.918000px;}
.y52{bottom:660.690750px;}
.y7{bottom:667.443000px;}
.y30{bottom:670.066500px;}
.y51{bottom:688.395000px;}
.y2f{bottom:691.215000px;}
.y50{bottom:707.594250px;}
.y2e{bottom:712.363500px;}
.y6{bottom:729.694500px;}
.y2d{bottom:733.512000px;}
.y4f{bottom:735.298500px;}
.y4e{bottom:754.497750px;}
.y2c{bottom:754.660500px;}
.y5{bottom:762.094500px;}
.y2b{bottom:775.809000px;}
.y4d{bottom:788.691000px;}
.y2a{bottom:796.957500px;}
.y29{bottom:818.106000px;}
.y4c{bottom:837.594750px;}
.y28{bottom:839.254500px;}
.y4b{bottom:856.794000px;}
.y4{bottom:857.038500px;}
.y27{bottom:860.403000px;}
.y26{bottom:881.551500px;}
.y4a{bottom:884.498250px;}
.y3{bottom:885.673500px;}
.y25{bottom:902.700000px;}
.y2{bottom:903.673500px;}
.y49{bottom:903.697500px;}
.y24{bottom:948.406500px;}
.h9{height:40.757812px;}
.hb{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.hc{height:57.333984px;}
.h7{height:58.589355px;}
.ha{height:60.200684px;}
.h2{height:63.684082px;}
.h8{height:65.934082px;}
.h5{height:91.705078px;}
.h6{height:171.610770px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x5{left:106.305188px;}
.x4{left:115.531350px;}
.x6{left:136.062900px;}
.x2{left:233.857500px;}
.x1{left:609.670500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:73.600000pt;}
.lsa{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.306667pt;}
.ls15{letter-spacing:-0.280000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.122667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.045625pt;}
.lsf{letter-spacing:0.061333pt;}
.ls4{letter-spacing:0.122667pt;}
.ls18{letter-spacing:0.280000pt;}
.lsd{letter-spacing:0.306667pt;}
.lse{letter-spacing:0.429333pt;}
.ls8{letter-spacing:0.490667pt;}
.ls3{letter-spacing:0.552000pt;}
.ls17{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.613333pt;}
.ls5{letter-spacing:1.104000pt;}
.ls12{letter-spacing:2.426667pt;}
.ls0{letter-spacing:3.466667pt;}
.ls19{letter-spacing:4.800000pt;}
.ls1{letter-spacing:5.333333pt;}
.lsb{letter-spacing:5.546667pt;}
.ls11{letter-spacing:5.600000pt;}
.lsc{letter-spacing:6.872000pt;}
.ls16{letter-spacing:8.400000pt;}
.ls1a{letter-spacing:8.960000pt;}
.ws5{word-spacing:-21.336000pt;}
.ws0{word-spacing:-18.733333pt;}
.ws6{word-spacing:-15.736000pt;}
.ws3{word-spacing:-15.456000pt;}
.ws1{word-spacing:-15.149333pt;}
.ws4{word-spacing:-14.986667pt;}
.ws7{word-spacing:-14.392000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1436.224000pt;}
._11{margin-left:-13.629333pt;}
._e{margin-left:-11.685333pt;}
._12{margin-left:-10.760000pt;}
._a{margin-left:-9.621333pt;}
._b{margin-left:-7.200000pt;}
._6{margin-left:-5.493333pt;}
._f{margin-left:-4.576000pt;}
._3{margin-left:-3.397333pt;}
._1{margin-left:-1.813333pt;}
._d{margin-left:-0.922667pt;}
._7{width:1.013333pt;}
._8{width:1.973333pt;}
._2{width:3.733333pt;}
._4{width:5.066667pt;}
._5{width:6.293333pt;}
._9{width:7.360000pt;}
._c{width:9.077333pt;}
._10{width:11.322667pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:179.648000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.371200pt;}
.y23{bottom:50.392000pt;}
.y22{bottom:96.482667pt;}
.y48{bottom:97.762667pt;}
.y21{bottom:114.882667pt;}
.y47{bottom:115.094667pt;}
.y20{bottom:133.282667pt;}
.y46{bottom:146.034667pt;}
.y1f{bottom:151.682667pt;}
.y1e{bottom:170.082667pt;}
.y1d{bottom:188.482667pt;}
.y45{bottom:190.175333pt;}
.y1c{bottom:206.882667pt;}
.y44{bottom:208.836000pt;}
.y1b{bottom:225.282667pt;}
.y43{bottom:236.950667pt;}
.y1a{bottom:243.682667pt;}
.y42{bottom:254.417333pt;}
.y19{bottom:262.082667pt;}
.y41{bottom:271.884000pt;}
.y18{bottom:280.482667pt;}
.y40{bottom:289.350667pt;}
.y17{bottom:298.882667pt;}
.y3f{bottom:306.817333pt;}
.y59{bottom:310.476000pt;}
.y16{bottom:317.282667pt;}
.y3e{bottom:333.813333pt;}
.y15{bottom:335.682667pt;}
.y3d{bottom:352.474000pt;}
.y14{bottom:354.082667pt;}
.y3c{bottom:371.134667pt;}
.y13{bottom:372.482667pt;}
.y3b{bottom:389.795333pt;}
.y12{bottom:390.882667pt;}
.y3a{bottom:408.456000pt;}
.y11{bottom:409.282667pt;}
.y39{bottom:427.116667pt;}
.y10{bottom:427.682667pt;}
.y58{bottom:440.209333pt;}
.y38{bottom:445.777333pt;}
.yf{bottom:446.082667pt;}
.y57{bottom:458.209333pt;}
.y37{bottom:464.438000pt;}
.ye{bottom:464.482667pt;}
.y56{bottom:476.209333pt;}
.yd{bottom:482.882667pt;}
.y36{bottom:483.098667pt;}
.y55{bottom:494.209333pt;}
.yc{bottom:501.282667pt;}
.y35{bottom:501.759333pt;}
.yb{bottom:519.682667pt;}
.y34{bottom:520.420000pt;}
.y54{bottom:525.542667pt;}
.ya{bottom:538.082667pt;}
.y33{bottom:539.218667pt;}
.y9{bottom:556.482667pt;}
.y32{bottom:558.017333pt;}
.y53{bottom:570.214667pt;}
.y8{bottom:574.882667pt;}
.y31{bottom:576.816000pt;}
.y52{bottom:587.280667pt;}
.y7{bottom:593.282667pt;}
.y30{bottom:595.614667pt;}
.y51{bottom:611.906667pt;}
.y2f{bottom:614.413333pt;}
.y50{bottom:628.972667pt;}
.y2e{bottom:633.212000pt;}
.y6{bottom:648.617333pt;}
.y2d{bottom:652.010667pt;}
.y4f{bottom:653.598667pt;}
.y4e{bottom:670.664667pt;}
.y2c{bottom:670.809333pt;}
.y5{bottom:677.417333pt;}
.y2b{bottom:689.608000pt;}
.y4d{bottom:701.058667pt;}
.y2a{bottom:708.406667pt;}
.y29{bottom:727.205333pt;}
.y4c{bottom:744.528667pt;}
.y28{bottom:746.004000pt;}
.y4b{bottom:761.594667pt;}
.y4{bottom:761.812000pt;}
.y27{bottom:764.802667pt;}
.y26{bottom:783.601333pt;}
.y4a{bottom:786.220667pt;}
.y3{bottom:787.265333pt;}
.y25{bottom:802.400000pt;}
.y2{bottom:803.265333pt;}
.y49{bottom:803.286667pt;}
.y24{bottom:843.028000pt;}
.h9{height:36.229167pt;}
.hb{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.hc{height:50.963542pt;}
.h7{height:52.079427pt;}
.ha{height:53.511719pt;}
.h2{height:56.608073pt;}
.h8{height:58.608073pt;}
.h5{height:81.515625pt;}
.h6{height:152.542906pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x5{left:94.493500pt;}
.x4{left:102.694533pt;}
.x6{left:120.944800pt;}
.x2{left:207.873333pt;}
.x1{left:541.929333pt;}
}




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