
    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_13494549e934faffc0401562.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.012000;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_4dece3005933c1bc300df409.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.018000;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_3583850b0c5fd68c91e4372c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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);}
.v1{vertical-align:-63.102000px;}
.v2{vertical-align:-34.866000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:24.804504px;}
.ls2{letter-spacing:25.368000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(192,50,33),0 0.015em rgb(192,50,33),0.015em 0 rgb(192,50,33),0 -0.015em  rgb(192,50,33);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(192,50,33);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-125.579772px;}
.ws3{word-spacing:-116.670762px;}
.ws4{word-spacing:-115.086996px;}
.wsa{word-spacing:-95.472000px;}
.wsb{word-spacing:-94.176000px;}
.ws6{word-spacing:-73.265004px;}
.ws1{word-spacing:-58.336044px;}
.ws8{word-spacing:-57.544152px;}
.ws5{word-spacing:-53.036022px;}
.ws7{word-spacing:-47.088000px;}
.ws9{word-spacing:-0.216000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-46.660374px;}
._10{margin-left:-42.795360px;}
._b{margin-left:-33.267990px;}
._e{margin-left:-29.413740px;}
._14{margin-left:-26.924022px;}
._18{margin-left:-22.032000px;}
._c{margin-left:-20.500758px;}
._f{margin-left:-19.300842px;}
._12{margin-left:-17.855406px;}
._11{margin-left:-16.793778px;}
._1a{margin-left:-15.552000px;}
._6{margin-left:-13.749462px;}
._15{margin-left:-12.097134px;}
._d{margin-left:-10.559850px;}
._1{margin-left:-9.216864px;}
._a{margin-left:-7.382520px;}
._4{margin-left:-6.336594px;}
._9{margin-left:-5.244012px;}
._7{margin-left:-4.221966px;}
._0{margin-left:-2.880270px;}
._3{margin-left:-1.728162px;}
._8{width:1.145202px;}
._2{width:2.880270px;}
._16{width:4.078398px;}
._13{width:5.088942px;}
._17{width:10.285416px;}
._19{width:17.857188px;}
.fc1{color:rgb(255,252,249);}
.fc0{color:rgb(192,50,33);}
.fs3{font-size:95.922000px;}
.fs8{font-size:97.284000px;}
.fs2{font-size:108.000000px;}
.fsb{font-size:168.036000px;}
.fs9{font-size:192.018000px;}
.fs7{font-size:216.000000px;}
.fs6{font-size:239.982000px;}
.fs1{font-size:263.964000px;}
.fs4{font-size:336.078000px;}
.fsa{font-size:432.000000px;}
.fs5{font-size:527.922000px;}
.fs0{font-size:576.054000px;}
.fsc{font-size:781.854000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y8{bottom:8.716500px;}
.y7{bottom:41.670000px;}
.y6{bottom:75.516000px;}
.y43{bottom:98.944500px;}
.y27{bottom:106.980000px;}
.y2f{bottom:128.452500px;}
.y50{bottom:137.593500px;}
.y38{bottom:149.712000px;}
.y1a{bottom:170.971500px;}
.y42{bottom:179.604000px;}
.y26{bottom:181.474500px;}
.y4f{bottom:212.088000px;}
.y19{bottom:242.958000px;}
.y30{bottom:251.760000px;}
.y25{bottom:255.969000px;}
.y41{bottom:260.263500px;}
.y37{bottom:273.019500px;}
.y62{bottom:275.188500px;}
.y4e{bottom:286.582500px;}
.y70{bottom:300.316500px;}
.y5b{bottom:304.824000px;}
.y11{bottom:308.523000px;}
.y18{bottom:314.944500px;}
.yd{bottom:325.488000px;}
.y55{bottom:348.066000px;}
.y61{bottom:349.683000px;}
.y53{bottom:358.569000px;}
.y4d{bottom:361.077000px;}
.y68{bottom:362.608500px;}
.y5{bottom:366.138000px;}
.y6c{bottom:376.087500px;}
.y33{bottom:378.978000px;}
.y2e{bottom:383.571000px;}
.y36{bottom:392.074500px;}
.y24{bottom:408.955500px;}
.y44{bottom:415.248000px;}
.y40{bottom:418.011000px;}
.y4c{bottom:419.797500px;}
.y60{bottom:424.177500px;}
.y67{bottom:428.386500px;}
.y4{bottom:429.492000px;}
.y32{bottom:436.593000px;}
.y52{bottom:439.228500px;}
.y5a{bottom:466.101000px;}
.y6f{bottom:467.206500px;}
.y6b{bottom:479.749500px;}
.y23{bottom:483.450000px;}
.yc{bottom:487.404000px;}
.y10{bottom:490.635000px;}
.y4b{bottom:494.292000px;}
.y3f{bottom:498.672000px;}
.y3{bottom:507.813000px;}
.y2d{bottom:515.424000px;}
.y1b{bottom:541.956000px;}
.y59{bottom:546.760500px;}
.y6e{bottom:547.866000px;}
.y5c{bottom:555.648000px;}
.ye{bottom:555.690000px;}
.y22{bottom:557.944500px;}
.y17{bottom:563.301000px;}
.y4a{bottom:568.786500px;}
.y3e{bottom:579.331500px;}
.y6a{bottom:583.413000px;}
.y31{bottom:588.090000px;}
.y5f{bottom:589.876500px;}
.y66{bottom:590.004000px;}
.yb{bottom:603.312000px;}
.y35{bottom:625.933500px;}
.y58{bottom:627.421500px;}
.y6d{bottom:628.527000px;}
.y21{bottom:632.439000px;}
.y2c{bottom:634.437000px;}
.y16{bottom:635.287500px;}
.y2{bottom:646.044000px;}
.y3d{bottom:659.991000px;}
.y5e{bottom:664.371000px;}
.y12{bottom:668.665500px;}
.yf{bottom:672.747000px;}
.y71{bottom:674.916000px;}
.y69{bottom:687.076500px;}
.y20{bottom:691.158000px;}
.y57{bottom:708.081000px;}
.y28{bottom:714.799500px;}
.y54{bottom:717.010500px;}
.ya{bottom:719.221500px;}
.y5d{bottom:738.865500px;}
.y65{bottom:751.663500px;}
.y49{bottom:752.131500px;}
.y51{bottom:753.874500px;}
.y34{bottom:757.744500px;}
.y2b{bottom:761.995500px;}
.y56{bottom:788.740500px;}
.y3c{bottom:809.575500px;}
.y15{bottom:811.828500px;}
.y64{bottom:826.158000px;}
.y48{bottom:826.626000px;}
.y9{bottom:835.129500px;}
.y1f{bottom:839.169000px;}
.y14{bottom:883.815000px;}
.y3b{bottom:890.235000px;}
.y63{bottom:891.936000px;}
.y47{bottom:892.404000px;}
.y2a{bottom:898.228500px;}
.y1e{bottom:913.663500px;}
.y13{bottom:955.800000px;}
.y46{bottom:966.898500px;}
.y3a{bottom:970.894500px;}
.y1d{bottom:988.158000px;}
.y29{bottom:1034.505000px;}
.y45{bottom:1041.393000px;}
.y39{bottom:1051.555500px;}
.y1c{bottom:1062.652500px;}
.h5{height:74.627316px;}
.h4{height:83.376000px;}
.hc{height:103.650000px;}
.hf{height:103.656000px;}
.h14{height:130.732008px;}
.he{height:143.964844px;}
.hd{height:149.390004px;}
.hb{height:166.752000px;}
.h9{height:185.266104px;}
.ha{height:186.705996px;}
.h10{height:203.780208px;}
.h3{height:205.363992px;}
.h6{height:259.452216px;}
.h11{height:261.468684px;}
.h12{height:333.504000px;}
.h13{height:336.096000px;}
.h8{height:407.555784px;}
.h7{height:410.723316px;}
.h2{height:444.713688px;}
.h15{height:603.591288px;}
.h1{height:1214.956500px;}
.h0{height:1215.000000px;}
.w1{width:2159.956500px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.xe{left:96.009000px;}
.x1{left:121.479000px;}
.x3{left:158.088000px;}
.x11{left:292.195500px;}
.x10{left:381.912000px;}
.xf{left:401.215500px;}
.x12{left:793.162500px;}
.x13{left:1038.330000px;}
.xd{left:1210.536000px;}
.x7{left:1211.769000px;}
.x6{left:1216.659000px;}
.x5{left:1227.543000px;}
.x8{left:1335.160500px;}
.x9{left:1345.791000px;}
.xc{left:1350.297000px;}
.x2{left:1371.259500px;}
.x4{left:1480.791000px;}
.xa{left:1549.290000px;}
.xb{left:1621.998000px;}
@media print{
.v1{vertical-align:-56.090667pt;}
.v2{vertical-align:-30.992000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:22.048448pt;}
.ls2{letter-spacing:22.549333pt;}
.ws0{word-spacing:-111.626464pt;}
.ws3{word-spacing:-103.707344pt;}
.ws4{word-spacing:-102.299552pt;}
.wsa{word-spacing:-84.864000pt;}
.wsb{word-spacing:-83.712000pt;}
.ws6{word-spacing:-65.124448pt;}
.ws1{word-spacing:-51.854261pt;}
.ws8{word-spacing:-51.150357pt;}
.ws5{word-spacing:-47.143131pt;}
.ws7{word-spacing:-41.856000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-41.475888pt;}
._10{margin-left:-38.040320pt;}
._b{margin-left:-29.571547pt;}
._e{margin-left:-26.145547pt;}
._14{margin-left:-23.932464pt;}
._18{margin-left:-19.584000pt;}
._c{margin-left:-18.222896pt;}
._f{margin-left:-17.156304pt;}
._12{margin-left:-15.871472pt;}
._11{margin-left:-14.927803pt;}
._1a{margin-left:-13.824000pt;}
._6{margin-left:-12.221744pt;}
._15{margin-left:-10.753008pt;}
._d{margin-left:-9.386533pt;}
._1{margin-left:-8.192768pt;}
._a{margin-left:-6.562240pt;}
._4{margin-left:-5.632528pt;}
._9{margin-left:-4.661344pt;}
._7{margin-left:-3.752859pt;}
._0{margin-left:-2.560240pt;}
._3{margin-left:-1.536144pt;}
._8{width:1.017957pt;}
._2{width:2.560240pt;}
._16{width:3.625243pt;}
._13{width:4.523504pt;}
._17{width:9.142592pt;}
._19{width:15.873056pt;}
.fs3{font-size:85.264000pt;}
.fs8{font-size:86.474667pt;}
.fs2{font-size:96.000000pt;}
.fsb{font-size:149.365333pt;}
.fs9{font-size:170.682667pt;}
.fs7{font-size:192.000000pt;}
.fs6{font-size:213.317333pt;}
.fs1{font-size:234.634667pt;}
.fs4{font-size:298.736000pt;}
.fsa{font-size:384.000000pt;}
.fs5{font-size:469.264000pt;}
.fs0{font-size:512.048000pt;}
.fsc{font-size:694.981333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y8{bottom:7.748000pt;}
.y7{bottom:37.040000pt;}
.y6{bottom:67.125333pt;}
.y43{bottom:87.950667pt;}
.y27{bottom:95.093333pt;}
.y2f{bottom:114.180000pt;}
.y50{bottom:122.305333pt;}
.y38{bottom:133.077333pt;}
.y1a{bottom:151.974667pt;}
.y42{bottom:159.648000pt;}
.y26{bottom:161.310667pt;}
.y4f{bottom:188.522667pt;}
.y19{bottom:215.962667pt;}
.y30{bottom:223.786667pt;}
.y25{bottom:227.528000pt;}
.y41{bottom:231.345333pt;}
.y37{bottom:242.684000pt;}
.y62{bottom:244.612000pt;}
.y4e{bottom:254.740000pt;}
.y70{bottom:266.948000pt;}
.y5b{bottom:270.954667pt;}
.y11{bottom:274.242667pt;}
.y18{bottom:279.950667pt;}
.yd{bottom:289.322667pt;}
.y55{bottom:309.392000pt;}
.y61{bottom:310.829333pt;}
.y53{bottom:318.728000pt;}
.y4d{bottom:320.957333pt;}
.y68{bottom:322.318667pt;}
.y5{bottom:325.456000pt;}
.y6c{bottom:334.300000pt;}
.y33{bottom:336.869333pt;}
.y2e{bottom:340.952000pt;}
.y36{bottom:348.510667pt;}
.y24{bottom:363.516000pt;}
.y44{bottom:369.109333pt;}
.y40{bottom:371.565333pt;}
.y4c{bottom:373.153333pt;}
.y60{bottom:377.046667pt;}
.y67{bottom:380.788000pt;}
.y4{bottom:381.770667pt;}
.y32{bottom:388.082667pt;}
.y52{bottom:390.425333pt;}
.y5a{bottom:414.312000pt;}
.y6f{bottom:415.294667pt;}
.y6b{bottom:426.444000pt;}
.y23{bottom:429.733333pt;}
.yc{bottom:433.248000pt;}
.y10{bottom:436.120000pt;}
.y4b{bottom:439.370667pt;}
.y3f{bottom:443.264000pt;}
.y3{bottom:451.389333pt;}
.y2d{bottom:458.154667pt;}
.y1b{bottom:481.738667pt;}
.y59{bottom:486.009333pt;}
.y6e{bottom:486.992000pt;}
.y5c{bottom:493.909333pt;}
.ye{bottom:493.946667pt;}
.y22{bottom:495.950667pt;}
.y17{bottom:500.712000pt;}
.y4a{bottom:505.588000pt;}
.y3e{bottom:514.961333pt;}
.y6a{bottom:518.589333pt;}
.y31{bottom:522.746667pt;}
.y5f{bottom:524.334667pt;}
.y66{bottom:524.448000pt;}
.yb{bottom:536.277333pt;}
.y35{bottom:556.385333pt;}
.y58{bottom:557.708000pt;}
.y6d{bottom:558.690667pt;}
.y21{bottom:562.168000pt;}
.y2c{bottom:563.944000pt;}
.y16{bottom:564.700000pt;}
.y2{bottom:574.261333pt;}
.y3d{bottom:586.658667pt;}
.y5e{bottom:590.552000pt;}
.y12{bottom:594.369333pt;}
.yf{bottom:597.997333pt;}
.y71{bottom:599.925333pt;}
.y69{bottom:610.734667pt;}
.y20{bottom:614.362667pt;}
.y57{bottom:629.405333pt;}
.y28{bottom:635.377333pt;}
.y54{bottom:637.342667pt;}
.ya{bottom:639.308000pt;}
.y5d{bottom:656.769333pt;}
.y65{bottom:668.145333pt;}
.y49{bottom:668.561333pt;}
.y51{bottom:670.110667pt;}
.y34{bottom:673.550667pt;}
.y2b{bottom:677.329333pt;}
.y56{bottom:701.102667pt;}
.y3c{bottom:719.622667pt;}
.y15{bottom:721.625333pt;}
.y64{bottom:734.362667pt;}
.y48{bottom:734.778667pt;}
.y9{bottom:742.337333pt;}
.y1f{bottom:745.928000pt;}
.y14{bottom:785.613333pt;}
.y3b{bottom:791.320000pt;}
.y63{bottom:792.832000pt;}
.y47{bottom:793.248000pt;}
.y2a{bottom:798.425333pt;}
.y1e{bottom:812.145333pt;}
.y13{bottom:849.600000pt;}
.y46{bottom:859.465333pt;}
.y3a{bottom:863.017333pt;}
.y1d{bottom:878.362667pt;}
.y29{bottom:919.560000pt;}
.y45{bottom:925.682667pt;}
.y39{bottom:934.716000pt;}
.y1c{bottom:944.580000pt;}
.h5{height:66.335392pt;}
.h4{height:74.112000pt;}
.hc{height:92.133333pt;}
.hf{height:92.138667pt;}
.h14{height:116.206229pt;}
.he{height:127.968750pt;}
.hd{height:132.791115pt;}
.hb{height:148.224000pt;}
.h9{height:164.680981pt;}
.ha{height:165.960885pt;}
.h10{height:181.137963pt;}
.h3{height:182.545771pt;}
.h6{height:230.624192pt;}
.h11{height:232.416608pt;}
.h12{height:296.448000pt;}
.h13{height:298.752000pt;}
.h8{height:362.271808pt;}
.h7{height:365.087392pt;}
.h2{height:395.301056pt;}
.h15{height:536.525589pt;}
.h1{height:1079.961333pt;}
.h0{height:1080.000000pt;}
.w1{width:1919.961333pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.xe{left:85.341333pt;}
.x1{left:107.981333pt;}
.x3{left:140.522667pt;}
.x11{left:259.729333pt;}
.x10{left:339.477333pt;}
.xf{left:356.636000pt;}
.x12{left:705.033333pt;}
.x13{left:922.960000pt;}
.xd{left:1076.032000pt;}
.x7{left:1077.128000pt;}
.x6{left:1081.474667pt;}
.x5{left:1091.149333pt;}
.x8{left:1186.809333pt;}
.x9{left:1196.258667pt;}
.xc{left:1200.264000pt;}
.x2{left:1218.897333pt;}
.x4{left:1316.258667pt;}
.xa{left:1377.146667pt;}
.xb{left:1441.776000pt;}
}




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