
    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_f2fc8cec82de6abddf53ccd5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.851074;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_185e76a91627084331876a3a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_da6a085ac89c44bc7cc61985.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_3b58e272737104fd7c46741c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_899bf9dc993cb6d8a45472f8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.842773;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;}
.lsd{letter-spacing:-2.649600px;}
.lsf{letter-spacing:-2.252160px;}
.lsa{letter-spacing:-0.927360px;}
.lse{letter-spacing:-0.662400px;}
.ls8{letter-spacing:-0.529920px;}
.ls9{letter-spacing:-0.331200px;}
.ls6{letter-spacing:-0.132480px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.066240px;}
.ls4{letter-spacing:0.178848px;}
.ls7{letter-spacing:0.198720px;}
.ls1{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.311328px;}
.ls2{letter-spacing:0.324576px;}
.ls0{letter-spacing:0.410688px;}
.lsc{letter-spacing:0.529920px;}
.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;}
}
.ws1{word-spacing:-13.645440px;}
.ws2{word-spacing:-13.446720px;}
.ws1c{word-spacing:-12.916800px;}
.ws0{word-spacing:-12.519360px;}
.ws1d{word-spacing:-11.194560px;}
.ws26{word-spacing:-3.576960px;}
.ws1f{word-spacing:-2.848320px;}
.ws1e{word-spacing:-2.318400px;}
.ws12{word-spacing:-2.119680px;}
.ws25{word-spacing:-1.589760px;}
.ws13{word-spacing:-1.391040px;}
.ws24{word-spacing:-0.861120px;}
.wsd{word-spacing:-0.662400px;}
.ws2b{word-spacing:-0.529920px;}
.ws4{word-spacing:-0.331200px;}
.wsc{word-spacing:-0.198720px;}
.ws28{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws23{word-spacing:0.066240px;}
.wse{word-spacing:0.132480px;}
.ws2a{word-spacing:0.198720px;}
.ws8{word-spacing:0.331200px;}
.ws7{word-spacing:0.529920px;}
.ws6{word-spacing:0.728640px;}
.ws5{word-spacing:1.457280px;}
.wsa{word-spacing:2.185920px;}
.ws27{word-spacing:2.649600px;}
.wsf{word-spacing:2.914560px;}
.ws1b{word-spacing:3.444480px;}
.ws10{word-spacing:3.643200px;}
.ws11{word-spacing:4.371840px;}
.ws2c{word-spacing:4.504320px;}
.ws22{word-spacing:5.100480px;}
.ws17{word-spacing:5.762880px;}
.ws20{word-spacing:5.895360px;}
.ws29{word-spacing:6.491520px;}
.ws16{word-spacing:7.220160px;}
.ws21{word-spacing:8.677440px;}
.wsb{word-spacing:9.406080px;}
.ws2d{word-spacing:10.134720px;}
.ws14{word-spacing:10.797120px;}
.ws15{word-spacing:12.254400px;}
.ws9{word-spacing:12.983040px;}
.ws19{word-spacing:14.440320px;}
.ws18{word-spacing:15.168960px;}
.ws1a{word-spacing:18.745920px;}
.ws2e{word-spacing:21.660480px;}
._e{margin-left:-8.876160px;}
._7{margin-left:-7.365888px;}
._3{margin-left:-5.935104px;}
._2{margin-left:-4.729536px;}
._5{margin-left:-3.153024px;}
._0{margin-left:-1.934208px;}
._1{width:1.364544px;}
._a{width:2.484000px;}
._b{width:3.702816px;}
._9{width:5.100480px;}
._8{width:6.392160px;}
._6{width:7.524864px;}
._4{width:8.816544px;}
._d{width:15.043104px;}
._c{width:16.169184px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.787200px;}
.y2{bottom:77.940720px;}
.y54{bottom:126.023040px;}
.y2d{bottom:140.236560px;}
.y53{bottom:147.799440px;}
.y2c{bottom:162.012960px;}
.y52{bottom:169.393680px;}
.y2b{bottom:183.789360px;}
.y51{bottom:203.225760px;}
.y2a{bottom:205.383600px;}
.y50{bottom:224.820000px;}
.y29{bottom:227.160000px;}
.y4f{bottom:246.600000px;}
.y28{bottom:248.940000px;}
.y4e{bottom:268.380000px;}
.y27{bottom:282.600000px;}
.y4d{bottom:302.047920px;}
.y26{bottom:304.389360px;}
.y25{bottom:326.165760px;}
.y4c{bottom:335.880000px;}
.y24{bottom:347.760000px;}
.y4b{bottom:357.660000px;}
.y23{bottom:369.540000px;}
.y4a{bottom:379.261440px;}
.y22{bottom:391.323600px;}
.y49{bottom:401.037840px;}
.y21{bottom:413.100000px;}
.y20{bottom:434.700000px;}
.y48{bottom:434.704320px;}
.y1f{bottom:456.480000px;}
.y47{bottom:456.480720px;}
.y46{bottom:478.257120px;}
.y1e{bottom:490.329360px;}
.y45{bottom:500.033520px;}
.y1d{bottom:511.923600px;}
.y1c{bottom:533.700000px;}
.y1b{bottom:555.480000px;}
.y44{bottom:555.492240px;}
.y1a{bottom:577.321920px;}
.y43{bottom:589.158720px;}
.y19{bottom:598.916160px;}
.y42{bottom:622.990800px;}
.y18{bottom:632.748240px;}
.y41{bottom:644.767200px;}
.y17{bottom:654.524640px;}
.y40{bottom:666.361440px;}
.y16{bottom:676.118880px;}
.y3f{bottom:688.137840px;}
.y15{bottom:697.895280px;}
.y14{bottom:719.671680px;}
.y3e{bottom:721.804320px;}
.y3d{bottom:743.580720px;}
.y13{bottom:753.338160px;}
.y3c{bottom:765.357120px;}
.y12{bottom:775.114560px;}
.y11{bottom:796.890960px;}
.y3b{bottom:799.023600px;}
.y10{bottom:818.667360px;}
.y3a{bottom:820.800000px;}
.yf{bottom:840.261600px;}
.y39{bottom:842.580000px;}
.ye{bottom:862.038000px;}
.y38{bottom:876.240000px;}
.yd{bottom:895.870080px;}
.y37{bottom:910.100160px;}
.yc{bottom:917.464320px;}
.y36{bottom:931.876560px;}
.yb{bottom:939.240720px;}
.y35{bottom:953.470800px;}
.ya{bottom:961.017120px;}
.y56{bottom:972.907200px;}
.y34{bottom:975.247200px;}
.y9{bottom:982.793520px;}
.y55{bottom:994.683600px;}
.y33{bottom:997.023600px;}
.y8{bottom:1016.460000px;}
.y32{bottom:1018.800000px;}
.y31{bottom:1040.424480px;}
.y7{bottom:1050.128640px;}
.y30{bottom:1074.256560px;}
.y6{bottom:1083.960720px;}
.y2f{bottom:1095.850800px;}
.y5{bottom:1105.737120px;}
.y2e{bottom:1117.627200px;}
.y4{bottom:1139.403600px;}
.y1{bottom:1194.300000px;}
.h3{height:44.149219px;}
.h2{height:44.181562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:776.162880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-2.355200pt;}
.lsf{letter-spacing:-2.001920pt;}
.lsa{letter-spacing:-0.824320pt;}
.lse{letter-spacing:-0.588800pt;}
.ls8{letter-spacing:-0.471040pt;}
.ls9{letter-spacing:-0.294400pt;}
.ls6{letter-spacing:-0.117760pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.058880pt;}
.ls4{letter-spacing:0.158976pt;}
.ls7{letter-spacing:0.176640pt;}
.ls1{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.276736pt;}
.ls2{letter-spacing:0.288512pt;}
.ls0{letter-spacing:0.365056pt;}
.lsc{letter-spacing:0.471040pt;}
.ws1{word-spacing:-12.129280pt;}
.ws2{word-spacing:-11.952640pt;}
.ws1c{word-spacing:-11.481600pt;}
.ws0{word-spacing:-11.128320pt;}
.ws1d{word-spacing:-9.950720pt;}
.ws26{word-spacing:-3.179520pt;}
.ws1f{word-spacing:-2.531840pt;}
.ws1e{word-spacing:-2.060800pt;}
.ws12{word-spacing:-1.884160pt;}
.ws25{word-spacing:-1.413120pt;}
.ws13{word-spacing:-1.236480pt;}
.ws24{word-spacing:-0.765440pt;}
.wsd{word-spacing:-0.588800pt;}
.ws2b{word-spacing:-0.471040pt;}
.ws4{word-spacing:-0.294400pt;}
.wsc{word-spacing:-0.176640pt;}
.ws28{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws23{word-spacing:0.058880pt;}
.wse{word-spacing:0.117760pt;}
.ws2a{word-spacing:0.176640pt;}
.ws8{word-spacing:0.294400pt;}
.ws7{word-spacing:0.471040pt;}
.ws6{word-spacing:0.647680pt;}
.ws5{word-spacing:1.295360pt;}
.wsa{word-spacing:1.943040pt;}
.ws27{word-spacing:2.355200pt;}
.wsf{word-spacing:2.590720pt;}
.ws1b{word-spacing:3.061760pt;}
.ws10{word-spacing:3.238400pt;}
.ws11{word-spacing:3.886080pt;}
.ws2c{word-spacing:4.003840pt;}
.ws22{word-spacing:4.533760pt;}
.ws17{word-spacing:5.122560pt;}
.ws20{word-spacing:5.240320pt;}
.ws29{word-spacing:5.770240pt;}
.ws16{word-spacing:6.417920pt;}
.ws21{word-spacing:7.713280pt;}
.wsb{word-spacing:8.360960pt;}
.ws2d{word-spacing:9.008640pt;}
.ws14{word-spacing:9.597440pt;}
.ws15{word-spacing:10.892800pt;}
.ws9{word-spacing:11.540480pt;}
.ws19{word-spacing:12.835840pt;}
.ws18{word-spacing:13.483520pt;}
.ws1a{word-spacing:16.663040pt;}
.ws2e{word-spacing:19.253760pt;}
._e{margin-left:-7.889920pt;}
._7{margin-left:-6.547456pt;}
._3{margin-left:-5.275648pt;}
._2{margin-left:-4.204032pt;}
._5{margin-left:-2.802688pt;}
._0{margin-left:-1.719296pt;}
._1{width:1.212928pt;}
._a{width:2.208000pt;}
._b{width:3.291392pt;}
._9{width:4.533760pt;}
._8{width:5.681920pt;}
._6{width:6.688768pt;}
._4{width:7.836928pt;}
._d{width:13.371648pt;}
._c{width:14.372608pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.366400pt;}
.y2{bottom:69.280640pt;}
.y54{bottom:112.020480pt;}
.y2d{bottom:124.654720pt;}
.y53{bottom:131.377280pt;}
.y2c{bottom:144.011520pt;}
.y52{bottom:150.572160pt;}
.y2b{bottom:163.368320pt;}
.y51{bottom:180.645120pt;}
.y2a{bottom:182.563200pt;}
.y50{bottom:199.840000pt;}
.y29{bottom:201.920000pt;}
.y4f{bottom:219.200000pt;}
.y28{bottom:221.280000pt;}
.y4e{bottom:238.560000pt;}
.y27{bottom:251.200000pt;}
.y4d{bottom:268.487040pt;}
.y26{bottom:270.568320pt;}
.y25{bottom:289.925120pt;}
.y4c{bottom:298.560000pt;}
.y24{bottom:309.120000pt;}
.y4b{bottom:317.920000pt;}
.y23{bottom:328.480000pt;}
.y4a{bottom:337.121280pt;}
.y22{bottom:347.843200pt;}
.y49{bottom:356.478080pt;}
.y21{bottom:367.200000pt;}
.y20{bottom:386.400000pt;}
.y48{bottom:386.403840pt;}
.y1f{bottom:405.760000pt;}
.y47{bottom:405.760640pt;}
.y46{bottom:425.117440pt;}
.y1e{bottom:435.848320pt;}
.y45{bottom:444.474240pt;}
.y1d{bottom:455.043200pt;}
.y1c{bottom:474.400000pt;}
.y1b{bottom:493.760000pt;}
.y44{bottom:493.770880pt;}
.y1a{bottom:513.175040pt;}
.y43{bottom:523.696640pt;}
.y19{bottom:532.369920pt;}
.y42{bottom:553.769600pt;}
.y18{bottom:562.442880pt;}
.y41{bottom:573.126400pt;}
.y17{bottom:581.799680pt;}
.y40{bottom:592.321280pt;}
.y16{bottom:600.994560pt;}
.y3f{bottom:611.678080pt;}
.y15{bottom:620.351360pt;}
.y14{bottom:639.708160pt;}
.y3e{bottom:641.603840pt;}
.y3d{bottom:660.960640pt;}
.y13{bottom:669.633920pt;}
.y3c{bottom:680.317440pt;}
.y12{bottom:688.990720pt;}
.y11{bottom:708.347520pt;}
.y3b{bottom:710.243200pt;}
.y10{bottom:727.704320pt;}
.y3a{bottom:729.600000pt;}
.yf{bottom:746.899200pt;}
.y39{bottom:748.960000pt;}
.ye{bottom:766.256000pt;}
.y38{bottom:778.880000pt;}
.yd{bottom:796.328960pt;}
.y37{bottom:808.977920pt;}
.yc{bottom:815.523840pt;}
.y36{bottom:828.334720pt;}
.yb{bottom:834.880640pt;}
.y35{bottom:847.529600pt;}
.ya{bottom:854.237440pt;}
.y56{bottom:864.806400pt;}
.y34{bottom:866.886400pt;}
.y9{bottom:873.594240pt;}
.y55{bottom:884.163200pt;}
.y33{bottom:886.243200pt;}
.y8{bottom:903.520000pt;}
.y32{bottom:905.600000pt;}
.y31{bottom:924.821760pt;}
.y7{bottom:933.447680pt;}
.y30{bottom:954.894720pt;}
.y6{bottom:963.520640pt;}
.y2f{bottom:974.089600pt;}
.y5{bottom:982.877440pt;}
.y2e{bottom:993.446400pt;}
.y4{bottom:1012.803200pt;}
.y1{bottom:1061.600000pt;}
.h3{height:39.243750pt;}
.h2{height:39.272500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:689.922560pt;}
}




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