
    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_51022c51b457596939c3f8a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_b3be3cb91654f59cfbf9b947.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.843750;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_cf812e175f4121be2a4b4159.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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:15.344640px;}
.ls10{letter-spacing:-0.668160px;}
.ls11{letter-spacing:-0.463680px;}
.ls8{letter-spacing:-0.264960px;}
.ls9{letter-spacing:-0.239040px;}
.lsc{letter-spacing:-0.198720px;}
.lsd{letter-spacing:-0.066240px;}
.ls7{letter-spacing:-0.059760px;}
.lsa{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.066240px;}
.lsf{letter-spacing:0.083520px;}
.ls6{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.264960px;}
.lse{letter-spacing:0.331200px;}
.ls3{letter-spacing:119.496960px;}
.ls4{letter-spacing:134.665920px;}
.ls0{letter-spacing:603.512640px;}
.ls1{letter-spacing:774.149760px;}
.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:-16.692480px;}
.ws8{word-spacing:-16.626240px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.493760px;}
.ws15{word-spacing:-16.361280px;}
.ws7{word-spacing:-16.295040px;}
.ws2{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.446000px;}
.ws13{word-spacing:-10.523520px;}
.ws14{word-spacing:-9.771840px;}
.wse{word-spacing:-1.059840px;}
.ws12{word-spacing:-0.861120px;}
.ws11{word-spacing:-0.794880px;}
.wsd{word-spacing:-0.662400px;}
.ws10{word-spacing:-0.529920px;}
.ws16{word-spacing:-0.132480px;}
.ws3{word-spacing:-0.066240px;}
.wsa{word-spacing:0.000000px;}
.wsc{word-spacing:0.066240px;}
.ws1{word-spacing:0.198720px;}
.ws9{word-spacing:0.239040px;}
.wsf{word-spacing:0.264960px;}
.wsb{word-spacing:0.418320px;}
.ws17{word-spacing:0.463680px;}
._1{margin-left:-1.117512px;}
._0{width:1.380456px;}
._2{width:83.596896px;}
._4{width:134.334720px;}
._3{width:199.448640px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:57.600000px;}
.y8a{bottom:114.902640px;}
.y33{bottom:119.319120px;}
.y61{bottom:127.946880px;}
.y89{bottom:133.449840px;}
.y32{bottom:137.866320px;}
.y60{bottom:146.494080px;}
.y88{bottom:152.162640px;}
.y31{bottom:156.413520px;}
.y5f{bottom:165.041280px;}
.y87{bottom:170.709840px;}
.y5e{bottom:183.754080px;}
.y30{bottom:187.016400px;}
.y86{bottom:189.257040px;}
.y5d{bottom:202.301280px;}
.y2f{bottom:205.563600px;}
.y85{bottom:207.804240px;}
.y84{bottom:226.351440px;}
.y5c{bottom:232.722000px;}
.y2e{bottom:236.166480px;}
.y83{bottom:244.898640px;}
.y5b{bottom:251.434800px;}
.y2d{bottom:254.713680px;}
.y82{bottom:263.445840px;}
.y2c{bottom:273.260880px;}
.y5a{bottom:281.855520px;}
.y81{bottom:281.993040px;}
.y2b{bottom:291.808080px;}
.y59{bottom:300.568320px;}
.y80{bottom:300.705840px;}
.y2a{bottom:310.355280px;}
.y58{bottom:319.115520px;}
.y7f{bottom:319.253040px;}
.y29{bottom:328.902480px;}
.y57{bottom:337.662720px;}
.y28{bottom:347.449680px;}
.y7e{bottom:349.673760px;}
.y56{bottom:356.209920px;}
.y27{bottom:366.162480px;}
.y55{bottom:374.757120px;}
.y7d{bottom:380.276640px;}
.y54{bottom:393.304320px;}
.y26{bottom:396.583200px;}
.y7c{bottom:398.823840px;}
.y53{bottom:411.851520px;}
.y7b{bottom:417.371040px;}
.y25{bottom:427.186080px;}
.y52{bottom:430.398720px;}
.y7a{bottom:436.083840px;}
.y24{bottom:445.733280px;}
.y51{bottom:449.111520px;}
.y79{bottom:454.631040px;}
.y23{bottom:464.280480px;}
.y50{bottom:467.658720px;}
.y78{bottom:473.178240px;}
.y22{bottom:482.993280px;}
.y4f{bottom:486.205920px;}
.y21{bottom:501.540480px;}
.y77{bottom:503.781120px;}
.y4e{bottom:504.753120px;}
.y20{bottom:520.087680px;}
.y76{bottom:522.328320px;}
.y4d{bottom:523.300320px;}
.y1f{bottom:538.634880px;}
.y4c{bottom:541.847520px;}
.y75{bottom:552.931200px;}
.y1e{bottom:557.182080px;}
.y4b{bottom:560.394720px;}
.y74{bottom:571.478400px;}
.y1d{bottom:575.729280px;}
.y4a{bottom:578.941920px;}
.y73{bottom:590.025600px;}
.y1c{bottom:594.276480px;}
.y49{bottom:597.654720px;}
.y72{bottom:608.572800px;}
.y1b{bottom:612.823680px;}
.y48{bottom:616.201920px;}
.y71{bottom:627.055200px;}
.y1a{bottom:631.536480px;}
.y47{bottom:634.749120px;}
.y70{bottom:645.602400px;}
.y19{bottom:650.083680px;}
.y46{bottom:653.296320px;}
.y6f{bottom:664.149600px;}
.y18{bottom:668.630880px;}
.y6e{bottom:682.696800px;}
.y45{bottom:683.899200px;}
.y17{bottom:699.233760px;}
.y6d{bottom:701.409600px;}
.y44{bottom:702.446400px;}
.y6c{bottom:719.956800px;}
.y16{bottom:729.654480px;}
.y43{bottom:733.049280px;}
.y6b{bottom:738.504000px;}
.y15{bottom:748.201680px;}
.y42{bottom:751.596480px;}
.y6a{bottom:757.051200px;}
.y14{bottom:766.914480px;}
.y41{bottom:770.143680px;}
.y69{bottom:775.598400px;}
.y13{bottom:785.461680px;}
.y40{bottom:788.690880px;}
.y68{bottom:794.145600px;}
.y12{bottom:804.008880px;}
.y3f{bottom:807.238080px;}
.y67{bottom:812.692800px;}
.y11{bottom:822.556080px;}
.y3e{bottom:825.785280px;}
.y66{bottom:831.240000px;}
.y10{bottom:841.103280px;}
.y3d{bottom:844.332480px;}
.y65{bottom:849.952800px;}
.yf{bottom:859.650480px;}
.y91{bottom:862.879680px;}
.y64{bottom:868.443840px;}
.y3c{bottom:874.935360px;}
.ye{bottom:878.197680px;}
.y90{bottom:881.592480px;}
.y63{bottom:886.991040px;}
.y3b{bottom:893.482560px;}
.y8f{bottom:900.139680px;}
.y62{bottom:905.538240px;}
.yd{bottom:908.800560px;}
.y8e{bottom:918.686880px;}
.y3a{bottom:924.085440px;}
.y8d{bottom:937.234080px;}
.yc{bottom:939.403440px;}
.y39{bottom:942.632640px;}
.y38{bottom:961.179840px;}
.y8c{bottom:967.836960px;}
.yb{bottom:971.447040px;}
.y37{bottom:979.727040px;}
.y8b{bottom:986.384160px;}
.y36{bottom:998.439840px;}
.ya{bottom:1003.490640px;}
.y35{bottom:1016.987040px;}
.y9{bottom:1023.478560px;}
.y34{bottom:1035.534240px;}
.y8{bottom:1054.081440px;}
.y6{bottom:1085.759280px;}
.y5{bottom:1117.626300px;}
.y4{bottom:1137.242520px;}
.y3{bottom:1156.858740px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1194.120000px;}
.h3{height:42.894141px;}
.h4{height:44.860781px;}
.h5{height:45.085421px;}
.h6{height:45.119981px;}
.h2{height:47.545312px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:109.432800px;}
.x4{left:171.897120px;}
.x2{left:409.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.639680pt;}
.ls10{letter-spacing:-0.593920pt;}
.ls11{letter-spacing:-0.412160pt;}
.ls8{letter-spacing:-0.235520pt;}
.ls9{letter-spacing:-0.212480pt;}
.lsc{letter-spacing:-0.176640pt;}
.lsd{letter-spacing:-0.058880pt;}
.ls7{letter-spacing:-0.053120pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.058880pt;}
.lsf{letter-spacing:0.074240pt;}
.ls6{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.235520pt;}
.lse{letter-spacing:0.294400pt;}
.ls3{letter-spacing:106.219520pt;}
.ls4{letter-spacing:119.703040pt;}
.ls0{letter-spacing:536.455680pt;}
.ls1{letter-spacing:688.133120pt;}
.ws5{word-spacing:-14.837760pt;}
.ws8{word-spacing:-14.778880pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.661120pt;}
.ws15{word-spacing:-14.543360pt;}
.ws7{word-spacing:-14.484480pt;}
.ws2{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.952000pt;}
.ws13{word-spacing:-9.354240pt;}
.ws14{word-spacing:-8.686080pt;}
.wse{word-spacing:-0.942080pt;}
.ws12{word-spacing:-0.765440pt;}
.ws11{word-spacing:-0.706560pt;}
.wsd{word-spacing:-0.588800pt;}
.ws10{word-spacing:-0.471040pt;}
.ws16{word-spacing:-0.117760pt;}
.ws3{word-spacing:-0.058880pt;}
.wsa{word-spacing:0.000000pt;}
.wsc{word-spacing:0.058880pt;}
.ws1{word-spacing:0.176640pt;}
.ws9{word-spacing:0.212480pt;}
.wsf{word-spacing:0.235520pt;}
.wsb{word-spacing:0.371840pt;}
.ws17{word-spacing:0.412160pt;}
._1{margin-left:-0.993344pt;}
._0{width:1.227072pt;}
._2{width:74.308352pt;}
._4{width:119.408640pt;}
._3{width:177.287680pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:51.200000pt;}
.y8a{bottom:102.135680pt;}
.y33{bottom:106.061440pt;}
.y61{bottom:113.730560pt;}
.y89{bottom:118.622080pt;}
.y32{bottom:122.547840pt;}
.y60{bottom:130.216960pt;}
.y88{bottom:135.255680pt;}
.y31{bottom:139.034240pt;}
.y5f{bottom:146.703360pt;}
.y87{bottom:151.742080pt;}
.y5e{bottom:163.336960pt;}
.y30{bottom:166.236800pt;}
.y86{bottom:168.228480pt;}
.y5d{bottom:179.823360pt;}
.y2f{bottom:182.723200pt;}
.y85{bottom:184.714880pt;}
.y84{bottom:201.201280pt;}
.y5c{bottom:206.864000pt;}
.y2e{bottom:209.925760pt;}
.y83{bottom:217.687680pt;}
.y5b{bottom:223.497600pt;}
.y2d{bottom:226.412160pt;}
.y82{bottom:234.174080pt;}
.y2c{bottom:242.898560pt;}
.y5a{bottom:250.538240pt;}
.y81{bottom:250.660480pt;}
.y2b{bottom:259.384960pt;}
.y59{bottom:267.171840pt;}
.y80{bottom:267.294080pt;}
.y2a{bottom:275.871360pt;}
.y58{bottom:283.658240pt;}
.y7f{bottom:283.780480pt;}
.y29{bottom:292.357760pt;}
.y57{bottom:300.144640pt;}
.y28{bottom:308.844160pt;}
.y7e{bottom:310.821120pt;}
.y56{bottom:316.631040pt;}
.y27{bottom:325.477760pt;}
.y55{bottom:333.117440pt;}
.y7d{bottom:338.023680pt;}
.y54{bottom:349.603840pt;}
.y26{bottom:352.518400pt;}
.y7c{bottom:354.510080pt;}
.y53{bottom:366.090240pt;}
.y7b{bottom:370.996480pt;}
.y25{bottom:379.720960pt;}
.y52{bottom:382.576640pt;}
.y7a{bottom:387.630080pt;}
.y24{bottom:396.207360pt;}
.y51{bottom:399.210240pt;}
.y79{bottom:404.116480pt;}
.y23{bottom:412.693760pt;}
.y50{bottom:415.696640pt;}
.y78{bottom:420.602880pt;}
.y22{bottom:429.327360pt;}
.y4f{bottom:432.183040pt;}
.y21{bottom:445.813760pt;}
.y77{bottom:447.805440pt;}
.y4e{bottom:448.669440pt;}
.y20{bottom:462.300160pt;}
.y76{bottom:464.291840pt;}
.y4d{bottom:465.155840pt;}
.y1f{bottom:478.786560pt;}
.y4c{bottom:481.642240pt;}
.y75{bottom:491.494400pt;}
.y1e{bottom:495.272960pt;}
.y4b{bottom:498.128640pt;}
.y74{bottom:507.980800pt;}
.y1d{bottom:511.759360pt;}
.y4a{bottom:514.615040pt;}
.y73{bottom:524.467200pt;}
.y1c{bottom:528.245760pt;}
.y49{bottom:531.248640pt;}
.y72{bottom:540.953600pt;}
.y1b{bottom:544.732160pt;}
.y48{bottom:547.735040pt;}
.y71{bottom:557.382400pt;}
.y1a{bottom:561.365760pt;}
.y47{bottom:564.221440pt;}
.y70{bottom:573.868800pt;}
.y19{bottom:577.852160pt;}
.y46{bottom:580.707840pt;}
.y6f{bottom:590.355200pt;}
.y18{bottom:594.338560pt;}
.y6e{bottom:606.841600pt;}
.y45{bottom:607.910400pt;}
.y17{bottom:621.541120pt;}
.y6d{bottom:623.475200pt;}
.y44{bottom:624.396800pt;}
.y6c{bottom:639.961600pt;}
.y16{bottom:648.581760pt;}
.y43{bottom:651.599360pt;}
.y6b{bottom:656.448000pt;}
.y15{bottom:665.068160pt;}
.y42{bottom:668.085760pt;}
.y6a{bottom:672.934400pt;}
.y14{bottom:681.701760pt;}
.y41{bottom:684.572160pt;}
.y69{bottom:689.420800pt;}
.y13{bottom:698.188160pt;}
.y40{bottom:701.058560pt;}
.y68{bottom:705.907200pt;}
.y12{bottom:714.674560pt;}
.y3f{bottom:717.544960pt;}
.y67{bottom:722.393600pt;}
.y11{bottom:731.160960pt;}
.y3e{bottom:734.031360pt;}
.y66{bottom:738.880000pt;}
.y10{bottom:747.647360pt;}
.y3d{bottom:750.517760pt;}
.y65{bottom:755.513600pt;}
.yf{bottom:764.133760pt;}
.y91{bottom:767.004160pt;}
.y64{bottom:771.950080pt;}
.y3c{bottom:777.720320pt;}
.ye{bottom:780.620160pt;}
.y90{bottom:783.637760pt;}
.y63{bottom:788.436480pt;}
.y3b{bottom:794.206720pt;}
.y8f{bottom:800.124160pt;}
.y62{bottom:804.922880pt;}
.yd{bottom:807.822720pt;}
.y8e{bottom:816.610560pt;}
.y3a{bottom:821.409280pt;}
.y8d{bottom:833.096960pt;}
.yc{bottom:835.025280pt;}
.y39{bottom:837.895680pt;}
.y38{bottom:854.382080pt;}
.y8c{bottom:860.299520pt;}
.yb{bottom:863.508480pt;}
.y37{bottom:870.868480pt;}
.y8b{bottom:876.785920pt;}
.y36{bottom:887.502080pt;}
.ya{bottom:891.991680pt;}
.y35{bottom:903.988480pt;}
.y9{bottom:909.758720pt;}
.y34{bottom:920.474880pt;}
.y8{bottom:936.961280pt;}
.y6{bottom:965.119360pt;}
.y5{bottom:993.445600pt;}
.y4{bottom:1010.882240pt;}
.y3{bottom:1028.318880pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1061.440000pt;}
.h3{height:38.128125pt;}
.h4{height:39.876250pt;}
.h5{height:40.075930pt;}
.h6{height:40.106650pt;}
.h2{height:42.262500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:97.273600pt;}
.x4{left:152.797440pt;}
.x2{left:364.000000pt;}
}




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