
    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_c2bb985c891c82313be1de18.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_d87acc2b440647e6761b6b5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_2c75a78086651c25ff4ae6e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_f7636ca53f2524ec6c28d9f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_e37aadf91b4b92934b12d554.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-2.736000px;}
.lsc{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-1.296000px;}
.lse{letter-spacing:-1.206000px;}
.lsf{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.250800px;}
.ls6{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.584000px;}
.ls10{letter-spacing:2.088000px;}
.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;}
}
.wse{word-spacing:-20.088000px;}
.wsc{word-spacing:-19.584000px;}
.ws6{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.352000px;}
.wsd{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.704000px;}
.ws9{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.264000px;}
.wsf{word-spacing:-11.629200px;}
.wsa{word-spacing:-10.674000px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-4.044000px;}
._3{margin-left:-2.880000px;}
._0{margin-left:-1.800000px;}
._2{width:1.008000px;}
._1{width:2.016000px;}
._5{width:3.456000px;}
._6{width:4.956000px;}
._8{width:6.468000px;}
._9{width:198.156000px;}
._7{width:846.216000px;}
._4{width:848.220000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:151.950000px;}
.y4b{bottom:157.710000px;}
.y4a{bottom:180.030000px;}
.y2b{bottom:193.350000px;}
.y49{bottom:214.230000px;}
.y2a{bottom:234.795000px;}
.y48{bottom:236.595000px;}
.y47{bottom:258.915000px;}
.y29{bottom:276.195000px;}
.y46{bottom:293.475000px;}
.y45{bottom:315.795000px;}
.y28{bottom:317.595000px;}
.y44{bottom:350.025000px;}
.y27{bottom:359.025000px;}
.y43{bottom:372.345000px;}
.y26{bottom:400.425000px;}
.y42{bottom:406.905000px;}
.y41{bottom:429.225000px;}
.y60{bottom:430.665000px;}
.y25{bottom:441.825000px;}
.y40{bottom:451.545000px;}
.y5f{bottom:452.985000px;}
.y5e{bottom:475.350000px;}
.y24{bottom:483.270000px;}
.y3f{bottom:485.790000px;}
.y3e{bottom:508.110000px;}
.y5d{bottom:509.910000px;}
.y23{bottom:524.670000px;}
.y3d{bottom:530.430000px;}
.y5c{bottom:532.230000px;}
.y5b{bottom:554.550000px;}
.y3c{bottom:564.630000px;}
.y22{bottom:566.070000px;}
.y3b{bottom:587.340000px;}
.y5a{bottom:588.780000px;}
.y21{bottom:607.500000px;}
.y3a{bottom:621.540000px;}
.y59{bottom:623.340000px;}
.y39{bottom:643.860000px;}
.y58{bottom:645.660000px;}
.y20{bottom:648.900000px;}
.y38{bottom:678.060000px;}
.y57{bottom:679.860000px;}
.y1f{bottom:690.330000px;}
.y56{bottom:702.210000px;}
.y37{bottom:712.650000px;}
.y55{bottom:724.530000px;}
.y1e{bottom:731.730000px;}
.y36{bottom:734.970000px;}
.y54{bottom:746.850000px;}
.ya{bottom:754.050000px;}
.y35{bottom:757.290000px;}
.y16{bottom:760.530000px;}
.y1d{bottom:773.130000px;}
.y53{bottom:781.050000px;}
.y15{bottom:782.850000px;}
.y9{bottom:788.250000px;}
.y34{bottom:791.490000px;}
.y52{bottom:803.775000px;}
.y14{bottom:805.215000px;}
.y33{bottom:813.855000px;}
.y1c{bottom:814.575000px;}
.y8{bottom:822.495000px;}
.y13{bottom:827.535000px;}
.y51{bottom:837.975000px;}
.y32{bottom:848.415000px;}
.y12{bottom:849.855000px;}
.y1b{bottom:855.975000px;}
.y7{bottom:857.055000px;}
.y50{bottom:860.295000px;}
.y31{bottom:870.735000px;}
.y11{bottom:872.175000px;}
.y4f{bottom:882.615000px;}
.y6{bottom:891.255000px;}
.y30{bottom:893.055000px;}
.y10{bottom:894.495000px;}
.y1a{bottom:897.375000px;}
.yf{bottom:916.845000px;}
.y5{bottom:925.485000px;}
.y2f{bottom:927.285000px;}
.y19{bottom:938.805000px;}
.ye{bottom:939.165000px;}
.y2e{bottom:949.605000px;}
.y4{bottom:960.045000px;}
.yd{bottom:961.485000px;}
.y2d{bottom:971.925000px;}
.y18{bottom:980.205000px;}
.yc{bottom:984.165000px;}
.y3{bottom:994.245000px;}
.y4e{bottom:996.045000px;}
.yb{bottom:1006.485000px;}
.y4d{bottom:1018.365000px;}
.y17{bottom:1021.605000px;}
.y2{bottom:1028.850000px;}
.y4c{bottom:1040.730000px;}
.y1{bottom:1063.050000px;}
.h3{height:51.679688px;}
.h2{height:70.664062px;}
.h1{height:72.562500px;}
.h4{height:73.998281px;}
.h5{height:74.155078px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:108.035986px;}
.xe{left:109.475986px;}
.xc{left:112.715986px;}
.x1{left:115.595986px;}
.xb{left:120.995986px;}
.xd{left:132.191986px;}
.x7{left:162.074986px;}
.xf{left:164.234986px;}
.x4{left:214.994986px;}
.x10{left:294.224986px;}
.x11{left:295.664986px;}
.x9{left:315.509986px;}
.xa{left:348.269986px;}
.x8{left:353.669986px;}
.x2{left:404.819986px;}
.x12{left:415.979986px;}
.x13{left:417.059986px;}
.x5{left:428.579986px;}
.x3{left:459.179986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-2.432000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-1.152000pt;}
.lse{letter-spacing:-1.072000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.222933pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.856000pt;}
.wse{word-spacing:-17.856000pt;}
.wsc{word-spacing:-17.408000pt;}
.ws6{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.424000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.848000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.568000pt;}
.wsf{word-spacing:-10.337067pt;}
.wsa{word-spacing:-9.488000pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-3.594667pt;}
._3{margin-left:-2.560000pt;}
._0{margin-left:-1.600000pt;}
._2{width:0.896000pt;}
._1{width:1.792000pt;}
._5{width:3.072000pt;}
._6{width:4.405333pt;}
._8{width:5.749333pt;}
._9{width:176.138667pt;}
._7{width:752.192000pt;}
._4{width:753.973333pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:135.066667pt;}
.y4b{bottom:140.186667pt;}
.y4a{bottom:160.026667pt;}
.y2b{bottom:171.866667pt;}
.y49{bottom:190.426667pt;}
.y2a{bottom:208.706667pt;}
.y48{bottom:210.306667pt;}
.y47{bottom:230.146667pt;}
.y29{bottom:245.506667pt;}
.y46{bottom:260.866667pt;}
.y45{bottom:280.706667pt;}
.y28{bottom:282.306667pt;}
.y44{bottom:311.133333pt;}
.y27{bottom:319.133333pt;}
.y43{bottom:330.973333pt;}
.y26{bottom:355.933333pt;}
.y42{bottom:361.693333pt;}
.y41{bottom:381.533333pt;}
.y60{bottom:382.813333pt;}
.y25{bottom:392.733333pt;}
.y40{bottom:401.373333pt;}
.y5f{bottom:402.653333pt;}
.y5e{bottom:422.533333pt;}
.y24{bottom:429.573333pt;}
.y3f{bottom:431.813333pt;}
.y3e{bottom:451.653333pt;}
.y5d{bottom:453.253333pt;}
.y23{bottom:466.373333pt;}
.y3d{bottom:471.493333pt;}
.y5c{bottom:473.093333pt;}
.y5b{bottom:492.933333pt;}
.y3c{bottom:501.893333pt;}
.y22{bottom:503.173333pt;}
.y3b{bottom:522.080000pt;}
.y5a{bottom:523.360000pt;}
.y21{bottom:540.000000pt;}
.y3a{bottom:552.480000pt;}
.y59{bottom:554.080000pt;}
.y39{bottom:572.320000pt;}
.y58{bottom:573.920000pt;}
.y20{bottom:576.800000pt;}
.y38{bottom:602.720000pt;}
.y57{bottom:604.320000pt;}
.y1f{bottom:613.626667pt;}
.y56{bottom:624.186667pt;}
.y37{bottom:633.466667pt;}
.y55{bottom:644.026667pt;}
.y1e{bottom:650.426667pt;}
.y36{bottom:653.306667pt;}
.y54{bottom:663.866667pt;}
.ya{bottom:670.266667pt;}
.y35{bottom:673.146667pt;}
.y16{bottom:676.026667pt;}
.y1d{bottom:687.226667pt;}
.y53{bottom:694.266667pt;}
.y15{bottom:695.866667pt;}
.y9{bottom:700.666667pt;}
.y34{bottom:703.546667pt;}
.y52{bottom:714.466667pt;}
.y14{bottom:715.746667pt;}
.y33{bottom:723.426667pt;}
.y1c{bottom:724.066667pt;}
.y8{bottom:731.106667pt;}
.y13{bottom:735.586667pt;}
.y51{bottom:744.866667pt;}
.y32{bottom:754.146667pt;}
.y12{bottom:755.426667pt;}
.y1b{bottom:760.866667pt;}
.y7{bottom:761.826667pt;}
.y50{bottom:764.706667pt;}
.y31{bottom:773.986667pt;}
.y11{bottom:775.266667pt;}
.y4f{bottom:784.546667pt;}
.y6{bottom:792.226667pt;}
.y30{bottom:793.826667pt;}
.y10{bottom:795.106667pt;}
.y1a{bottom:797.666667pt;}
.yf{bottom:814.973333pt;}
.y5{bottom:822.653333pt;}
.y2f{bottom:824.253333pt;}
.y19{bottom:834.493333pt;}
.ye{bottom:834.813333pt;}
.y2e{bottom:844.093333pt;}
.y4{bottom:853.373333pt;}
.yd{bottom:854.653333pt;}
.y2d{bottom:863.933333pt;}
.y18{bottom:871.293333pt;}
.yc{bottom:874.813333pt;}
.y3{bottom:883.773333pt;}
.y4e{bottom:885.373333pt;}
.yb{bottom:894.653333pt;}
.y4d{bottom:905.213333pt;}
.y17{bottom:908.093333pt;}
.y2{bottom:914.533333pt;}
.y4c{bottom:925.093333pt;}
.y1{bottom:944.933333pt;}
.h3{height:45.937500pt;}
.h2{height:62.812500pt;}
.h1{height:64.500000pt;}
.h4{height:65.776250pt;}
.h5{height:65.915625pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.031988pt;}
.xe{left:97.311988pt;}
.xc{left:100.191988pt;}
.x1{left:102.751988pt;}
.xb{left:107.551988pt;}
.xd{left:117.503988pt;}
.x7{left:144.066655pt;}
.xf{left:145.986655pt;}
.x4{left:191.106655pt;}
.x10{left:261.533321pt;}
.x11{left:262.813321pt;}
.x9{left:280.453321pt;}
.xa{left:309.573321pt;}
.x8{left:314.373321pt;}
.x2{left:359.839988pt;}
.x12{left:369.759988pt;}
.x13{left:370.719988pt;}
.x5{left:380.959988pt;}
.x3{left:408.159988pt;}
}




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