
    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_2c6623f5d2bea509aed2cce7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_c01d68f7369954211dc1f72b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_033145159b55400c932bffb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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(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);}
.v3{vertical-align:-7.908906px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.879126px;}
.v2{vertical-align:7.908906px;}
.ls0{letter-spacing:0.000000px;}
.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.321593px;}
.ws0{word-spacing:-9.919315px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-5.326385px;}
._9{margin-left:-2.277705px;}
._14{margin-left:-1.003245px;}
._0{width:1.114798px;}
._a{width:2.270744px;}
._8{width:4.426314px;}
._d{width:6.718775px;}
._12{width:8.960424px;}
._1{width:11.043146px;}
._4{width:12.159183px;}
._13{width:14.736355px;}
._3{width:15.789881px;}
._2{width:17.946788px;}
._15{width:20.204879px;}
._10{width:21.554480px;}
._11{width:23.358135px;}
._f{width:24.686660px;}
._c{width:26.886525px;}
._b{width:29.181628px;}
._e{width:31.463517px;}
._7{width:33.670291px;}
._6{width:35.916753px;}
.fc1{color:rgb(32,32,33);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:32.944706px;}
.fs2{font-size:38.934511px;}
.fs1{font-size:47.919398px;}
.y0{bottom:0.000000px;}
.y26{bottom:15.035480px;}
.y29{bottom:18.817677px;}
.y27{bottom:24.823723px;}
.y4c{bottom:28.063837px;}
.y2{bottom:34.232333px;}
.y4b{bottom:37.852080px;}
.y4a{bottom:58.790417px;}
.y6c{bottom:61.140634px;}
.y4{bottom:65.344757px;}
.y49{bottom:74.632530px;}
.y6b{bottom:76.982747px;}
.y5{bottom:81.186720px;}
.y6d{bottom:81.186870px;}
.y48{bottom:90.474642px;}
.y6a{bottom:92.824859px;}
.y6{bottom:97.028833px;}
.y6e{bottom:97.028983px;}
.y47{bottom:106.316755px;}
.y69{bottom:108.666972px;}
.y7{bottom:112.870945px;}
.y6f{bottom:112.871095px;}
.y46{bottom:122.158868px;}
.y68{bottom:124.509085px;}
.y70{bottom:128.713208px;}
.y8{bottom:128.751008px;}
.y45{bottom:138.000980px;}
.y67{bottom:140.351197px;}
.y71{bottom:144.555321px;}
.y9{bottom:144.593121px;}
.y44{bottom:151.813816px;}
.y66{bottom:156.193310px;}
.y72{bottom:160.397434px;}
.ya{bottom:160.435084px;}
.y43{bottom:169.041330px;}
.y65{bottom:169.969336px;}
.yb{bottom:176.277046px;}
.y73{bottom:177.662447px;}
.y42{bottom:184.883143px;}
.y64{bottom:187.233600px;}
.y74{bottom:191.437843px;}
.yc{bottom:193.542060px;}
.y41{bottom:200.724956px;}
.y63{bottom:203.075712px;}
.y75{bottom:207.279956px;}
.yd{bottom:207.317351px;}
.y40{bottom:216.566768px;}
.y62{bottom:218.917825px;}
.y76{bottom:223.122069px;}
.ye{bottom:223.159464px;}
.y61{bottom:234.759938px;}
.y3f{bottom:235.404083px;}
.yf{bottom:239.001576px;}
.y60{bottom:250.602050px;}
.y3e{bottom:251.246196px;}
.y10{bottom:254.843689px;}
.y77{bottom:255.243244px;}
.y78{bottom:260.785209px;}
.y5f{bottom:266.444163px;}
.y3d{bottom:267.088309px;}
.y11{bottom:270.685802px;}
.y79{bottom:274.779230px;}
.y5e{bottom:282.286276px;}
.y3c{bottom:282.930421px;}
.y12{bottom:286.527914px;}
.y7a{bottom:288.592801px;}
.y3b{bottom:296.743257px;}
.y5d{bottom:298.128239px;}
.y13{bottom:302.370027px;}
.y7b{bottom:304.434614px;}
.y5c{bottom:311.904370px;}
.y3a{bottom:313.970471px;}
.y14{bottom:318.212140px;}
.y7c{bottom:320.276426px;}
.y5b{bottom:329.168783px;}
.y39{bottom:329.813184px;}
.y15{bottom:334.054252px;}
.y7d{bottom:336.118239px;}
.y5a{bottom:345.010896px;}
.y38{bottom:345.654547px;}
.y16{bottom:349.896365px;}
.y7e{bottom:351.960052px;}
.y59{bottom:360.853009px;}
.y37{bottom:361.496809px;}
.y17{bottom:365.738478px;}
.y7f{bottom:367.801864px;}
.y58{bottom:376.695121px;}
.y36{bottom:377.339072px;}
.y18{bottom:383.002742px;}
.y80{bottom:383.643677px;}
.y57{bottom:392.537234px;}
.y35{bottom:393.181335px;}
.y19{bottom:396.778978px;}
.y81{bottom:399.485490px;}
.y56{bottom:408.379347px;}
.y34{bottom:409.023597px;}
.y1a{bottom:412.621090px;}
.y82{bottom:415.327602px;}
.y33{bottom:422.836433px;}
.y55{bottom:424.221459px;}
.y1b{bottom:428.463203px;}
.y83{bottom:432.554816px;}
.y32{bottom:440.063347px;}
.y54{bottom:440.063572px;}
.y84{bottom:446.367652px;}
.y1c{bottom:447.150068px;}
.y31{bottom:455.905310px;}
.y53{bottom:455.905685px;}
.y1d{bottom:460.926199px;}
.y85{bottom:462.209465px;}
.y30{bottom:471.747272px;}
.y52{bottom:471.747797px;}
.y1e{bottom:477.546662px;}
.y86{bottom:478.051578px;}
.y2f{bottom:487.589235px;}
.y51{bottom:487.589910px;}
.y1f{bottom:491.322793px;}
.y87{bottom:493.893690px;}
.y50{bottom:501.365201px;}
.y2e{bottom:503.431198px;}
.y20{bottom:507.164906px;}
.y88{bottom:509.772703px;}
.y4f{bottom:518.630065px;}
.y2d{bottom:519.273160px;}
.y21{bottom:523.006869px;}
.y89{bottom:525.615416px;}
.y4e{bottom:534.472028px;}
.y2c{bottom:535.115273px;}
.y22{bottom:538.848981px;}
.y8a{bottom:539.391127px;}
.y2b{bottom:548.928739px;}
.y4d{bottom:550.313990px;}
.y8b{bottom:553.166838px;}
.y23{bottom:554.691094px;}
.y2a{bottom:566.155953px;}
.y24{bottom:570.533207px;}
.y8c{bottom:571.173302px;}
.y28{bottom:577.392300px;}
.y3{bottom:631.500300px;}
.y1{bottom:632.558700px;}
.y25{bottom:1210.113000px;}
.h8{height:28.345389px;}
.h3{height:29.534414px;}
.h6{height:42.958992px;}
.h5{height:44.011980px;}
.hc{height:50.867898px;}
.ha{height:52.866000px;}
.h7{height:52.887000px;}
.h2{height:53.048250px;}
.hb{height:53.048520px;}
.h4{height:631.499700px;}
.h9{height:631.500300px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:445.875300px;}
.w7{width:445.878000px;}
.w4{width:445.893000px;}
.w5{width:445.905000px;}
.w3{width:446.249400px;}
.w6{width:446.250600px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:37.286787px;}
.x5{left:63.680808px;}
.x7{left:220.169033px;}
.x4{left:225.746038px;}
.x8{left:304.513744px;}
.x2{left:382.196463px;}
.x3{left:408.963084px;}
.x1{left:446.623200px;}
@media print{
.v3{vertical-align:-7.030139pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.114778pt;}
.v2{vertical-align:7.030139pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-11.841416pt;}
.ws0{word-spacing:-8.817169pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-4.734564pt;}
._9{margin-left:-2.024627pt;}
._14{margin-left:-0.891773pt;}
._0{width:0.990932pt;}
._a{width:2.018439pt;}
._8{width:3.934502pt;}
._d{width:5.972245pt;}
._12{width:7.964821pt;}
._1{width:9.816130pt;}
._4{width:10.808163pt;}
._13{width:13.098982pt;}
._3{width:14.035450pt;}
._2{width:15.952700pt;}
._15{width:17.959892pt;}
._10{width:19.159538pt;}
._11{width:20.762787pt;}
._f{width:21.943698pt;}
._c{width:23.899134pt;}
._b{width:25.939225pt;}
._e{width:27.967571pt;}
._7{width:29.929148pt;}
._6{width:31.926003pt;}
.fs0{font-size:29.284183pt;}
.fs2{font-size:34.608454pt;}
.fs1{font-size:42.595021pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:13.364871pt;}
.y29{bottom:16.726824pt;}
.y27{bottom:22.065532pt;}
.y4c{bottom:24.945633pt;}
.y2{bottom:30.428741pt;}
.y4b{bottom:33.646294pt;}
.y4a{bottom:52.258148pt;}
.y6c{bottom:54.347230pt;}
.y4{bottom:58.084229pt;}
.y49{bottom:66.340026pt;}
.y6b{bottom:68.429108pt;}
.y5{bottom:72.165973pt;}
.y6d{bottom:72.166107pt;}
.y48{bottom:80.421904pt;}
.y6a{bottom:82.510986pt;}
.y6{bottom:86.247851pt;}
.y6e{bottom:86.247985pt;}
.y47{bottom:94.503782pt;}
.y69{bottom:96.592864pt;}
.y7{bottom:100.329729pt;}
.y6f{bottom:100.329863pt;}
.y46{bottom:108.585660pt;}
.y68{bottom:110.674742pt;}
.y70{bottom:114.411741pt;}
.y8{bottom:114.445341pt;}
.y45{bottom:122.667538pt;}
.y67{bottom:124.756620pt;}
.y71{bottom:128.493619pt;}
.y9{bottom:128.527219pt;}
.y44{bottom:134.945615pt;}
.y66{bottom:138.838498pt;}
.y72{bottom:142.575496pt;}
.ya{bottom:142.608963pt;}
.y43{bottom:150.258960pt;}
.y65{bottom:151.083854pt;}
.yb{bottom:156.690708pt;}
.y73{bottom:157.922175pt;}
.y42{bottom:164.340571pt;}
.y64{bottom:166.429866pt;}
.y74{bottom:170.166972pt;}
.yc{bottom:172.037387pt;}
.y41{bottom:178.422183pt;}
.y63{bottom:180.511744pt;}
.y75{bottom:184.248850pt;}
.yd{bottom:184.282090pt;}
.y40{bottom:192.503794pt;}
.y62{bottom:194.593622pt;}
.y76{bottom:198.330728pt;}
.ye{bottom:198.363968pt;}
.y61{bottom:208.675500pt;}
.y3f{bottom:209.248074pt;}
.yf{bottom:212.445846pt;}
.y60{bottom:222.757378pt;}
.y3e{bottom:223.329952pt;}
.y10{bottom:226.527724pt;}
.y77{bottom:226.882884pt;}
.y78{bottom:231.809075pt;}
.y5f{bottom:236.839256pt;}
.y3d{bottom:237.411830pt;}
.y11{bottom:240.609602pt;}
.y79{bottom:244.248204pt;}
.y5e{bottom:250.921134pt;}
.y3c{bottom:251.493708pt;}
.y12{bottom:254.691479pt;}
.y7a{bottom:256.526934pt;}
.y3b{bottom:263.771784pt;}
.y5d{bottom:265.002879pt;}
.y13{bottom:268.773357pt;}
.y7b{bottom:270.608546pt;}
.y5c{bottom:277.248328pt;}
.y3a{bottom:279.084863pt;}
.y14{bottom:282.855235pt;}
.y7c{bottom:284.690157pt;}
.y5b{bottom:292.594474pt;}
.y39{bottom:293.167275pt;}
.y15{bottom:296.937113pt;}
.y7d{bottom:298.771768pt;}
.y5a{bottom:306.676352pt;}
.y38{bottom:307.248486pt;}
.y16{bottom:311.018991pt;}
.y7e{bottom:312.853379pt;}
.y59{bottom:320.758230pt;}
.y37{bottom:321.330497pt;}
.y17{bottom:325.100869pt;}
.y7f{bottom:326.934991pt;}
.y58{bottom:334.840108pt;}
.y36{bottom:335.412508pt;}
.y18{bottom:340.446881pt;}
.y80{bottom:341.016602pt;}
.y57{bottom:348.921986pt;}
.y35{bottom:349.494520pt;}
.y19{bottom:352.692425pt;}
.y81{bottom:355.098213pt;}
.y56{bottom:363.003864pt;}
.y34{bottom:363.576531pt;}
.y1a{bottom:366.774302pt;}
.y82{bottom:369.180091pt;}
.y33{bottom:375.854607pt;}
.y55{bottom:377.085742pt;}
.y1b{bottom:380.856180pt;}
.y83{bottom:384.493170pt;}
.y32{bottom:391.167420pt;}
.y54{bottom:391.167620pt;}
.y84{bottom:396.771246pt;}
.y1c{bottom:397.466727pt;}
.y31{bottom:405.249164pt;}
.y53{bottom:405.249498pt;}
.y1d{bottom:409.712177pt;}
.y85{bottom:410.852858pt;}
.y30{bottom:419.330909pt;}
.y52{bottom:419.331375pt;}
.y1e{bottom:424.485922pt;}
.y86{bottom:424.934736pt;}
.y2f{bottom:433.412653pt;}
.y51{bottom:433.413253pt;}
.y1f{bottom:436.731372pt;}
.y87{bottom:439.016614pt;}
.y50{bottom:445.657957pt;}
.y2e{bottom:447.494398pt;}
.y20{bottom:450.813250pt;}
.y88{bottom:453.131292pt;}
.y4f{bottom:461.004502pt;}
.y2d{bottom:461.576143pt;}
.y21{bottom:464.894994pt;}
.y89{bottom:467.213703pt;}
.y4e{bottom:475.086247pt;}
.y2c{bottom:475.658021pt;}
.y22{bottom:478.976872pt;}
.y8a{bottom:479.458779pt;}
.y2b{bottom:487.936657pt;}
.y4d{bottom:489.167991pt;}
.y8b{bottom:491.703856pt;}
.y23{bottom:493.058750pt;}
.y2a{bottom:503.249736pt;}
.y24{bottom:507.140628pt;}
.y8c{bottom:507.709602pt;}
.y28{bottom:513.237600pt;}
.y3{bottom:561.333600pt;}
.y1{bottom:562.274400pt;}
.y25{bottom:1075.656000pt;}
.h8{height:25.195901pt;}
.h3{height:26.252813pt;}
.h6{height:38.185771pt;}
.h5{height:39.121760pt;}
.hc{height:45.215910pt;}
.ha{height:46.992000pt;}
.h7{height:47.010667pt;}
.h2{height:47.154000pt;}
.hb{height:47.154240pt;}
.h4{height:561.333067pt;}
.h9{height:561.333600pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:396.333600pt;}
.w7{width:396.336000pt;}
.w4{width:396.349333pt;}
.w5{width:396.360000pt;}
.w3{width:396.666133pt;}
.w6{width:396.667200pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:33.143811pt;}
.x5{left:56.605163pt;}
.x7{left:195.705807pt;}
.x4{left:200.663145pt;}
.x8{left:270.678883pt;}
.x2{left:339.730189pt;}
.x3{left:363.522741pt;}
.x1{left:396.998400pt;}
}




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