
    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_d1dafa06fb0dff8e816413e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740234;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_8cf8aec356e6c2261b09b8e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;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_fb5fa5c98a6bc70a6d70e7cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_f3229816565f8e9be28c12b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_985ab0f983e7778428afa944.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.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);}
.v3{vertical-align:-7.200360px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.401170px;}
.v2{vertical-align:25.201260px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.162008px;}
.ls5{letter-spacing:0.163208px;}
.ls3{letter-spacing:6.900345px;}
.ls2{letter-spacing:8.700435px;}
.ls1{letter-spacing:68.139407px;}
.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;}
}
.ws0{word-spacing:-16.620831px;}
.ws4{word-spacing:-16.500825px;}
.ws3{word-spacing:-13.500675px;}
.ws1{word-spacing:-9.640082px;}
.ws2{word-spacing:-9.600480px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-2.361718px;}
._0{margin-left:-1.208460px;}
._1{width:1.920096px;}
._3{width:2.946147px;}
._2{width:3.988999px;}
._6{width:5.742287px;}
._a{width:6.745537px;}
._9{width:7.763188px;}
._8{width:8.778439px;}
._5{width:10.118906px;}
._4{width:11.286564px;}
._e{width:12.303015px;}
._b{width:15.378769px;}
._c{width:17.811291px;}
._d{width:22.309115px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:34.801740px;}
.fs4{font-size:38.401920px;}
.fs5{font-size:54.002700px;}
.fs6{font-size:59.775600px;}
.fs0{font-size:60.003000px;}
.fs3{font-size:66.003300px;}
.fs2{font-size:108.005400px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.040508px;}
.y2b{bottom:47.985000px;}
.y90{bottom:99.154958px;}
.y7a{bottom:99.454973px;}
.y4f{bottom:100.355018px;}
.ya4{bottom:101.405070px;}
.y2a{bottom:102.905145px;}
.y8f{bottom:118.055903px;}
.y79{bottom:118.355918px;}
.y4e{bottom:119.405970px;}
.y29{bottom:121.806090px;}
.ya3{bottom:124.806240px;}
.y8e{bottom:137.106855px;}
.y4d{bottom:138.306915px;}
.y28{bottom:140.857043px;}
.y98{bottom:146.107305px;}
.ya2{bottom:148.357418px;}
.y8d{bottom:156.007800px;}
.y78{bottom:156.307815px;}
.y97{bottom:161.558078px;}
.ya1{bottom:171.758588px;}
.y8c{bottom:175.058753px;}
.y77{bottom:175.358768px;}
.y4c{bottom:176.258813px;}
.y27{bottom:178.808940px;}
.y8b{bottom:193.959698px;}
.y76{bottom:194.259713px;}
.y4b{bottom:195.309765px;}
.y26{bottom:197.709885px;}
.y8a{bottom:213.010650px;}
.y75{bottom:213.310665px;}
.y4a{bottom:214.210710px;}
.y25{bottom:216.760838px;}
.ya0{bottom:218.710935px;}
.y74{bottom:232.211610px;}
.y49{bottom:233.261663px;}
.y24{bottom:235.661783px;}
.y9f{bottom:237.761888px;}
.y89{bottom:250.962548px;}
.y73{bottom:251.262563px;}
.y48{bottom:252.312615px;}
.y23{bottom:254.712735px;}
.y9e{bottom:261.163058px;}
.y88{bottom:269.863493px;}
.y72{bottom:270.163508px;}
.y47{bottom:271.213560px;}
.y22{bottom:273.613680px;}
.y9d{bottom:280.214010px;}
.y87{bottom:288.914445px;}
.y71{bottom:289.214460px;}
.y46{bottom:290.264513px;}
.y21{bottom:292.664633px;}
.y86{bottom:307.815390px;}
.y9c{bottom:308.115405px;}
.y20{bottom:311.565578px;}
.y85{bottom:326.866343px;}
.y70{bottom:327.166358px;}
.y45{bottom:328.216410px;}
.y1f{bottom:330.616530px;}
.y84{bottom:345.767288px;}
.y6f{bottom:346.067303px;}
.y44{bottom:347.267363px;}
.y1e{bottom:349.517475px;}
.y83{bottom:364.818240px;}
.y6e{bottom:365.118255px;}
.y43{bottom:366.168308px;}
.y1d{bottom:368.568428px;}
.y82{bottom:383.719185px;}
.y6d{bottom:384.019200px;}
.y42{bottom:385.219260px;}
.y81{bottom:402.770138px;}
.y6c{bottom:403.070153px;}
.y41{bottom:404.120205px;}
.y1c{bottom:406.520325px;}
.y80{bottom:421.671083px;}
.y6b{bottom:421.971098px;}
.y40{bottom:423.171158px;}
.y1b{bottom:425.421270px;}
.y7f{bottom:440.722035px;}
.y6a{bottom:441.022050px;}
.y1a{bottom:444.472223px;}
.y7e{bottom:459.622980px;}
.y69{bottom:459.922995px;}
.y3f{bottom:461.123055px;}
.y19{bottom:463.373168px;}
.y9b{bottom:478.973948px;}
.y7d{bottom:497.574878px;}
.y68{bottom:497.874893px;}
.y3e{bottom:499.074953px;}
.y18{bottom:501.325065px;}
.y67{bottom:516.925845px;}
.y3d{bottom:517.975898px;}
.y17{bottom:520.376018px;}
.y7c{bottom:534.926745px;}
.y66{bottom:535.826790px;}
.y3c{bottom:537.026850px;}
.y16{bottom:539.276963px;}
.y65{bottom:554.877743px;}
.y3b{bottom:555.927795px;}
.y15{bottom:558.327915px;}
.y64{bottom:573.778688px;}
.y3a{bottom:574.978748px;}
.y14{bottom:577.228860px;}
.y63{bottom:592.829640px;}
.y62{bottom:611.730585px;}
.y39{bottom:612.930645px;}
.y13{bottom:615.180758px;}
.y61{bottom:630.781538px;}
.y38{bottom:631.831590px;}
.y12{bottom:634.231710px;}
.y9a{bottom:649.682483px;}
.y37{bottom:650.882543px;}
.y11{bottom:653.132655px;}
.y60{bottom:668.733435px;}
.y36{bottom:669.783488px;}
.y10{bottom:672.183608px;}
.y96{bottom:673.683683px;}
.y5f{bottom:687.634380px;}
.y35{bottom:688.834440px;}
.yf{bottom:691.084553px;}
.y95{bottom:692.584628px;}
.y5e{bottom:706.685333px;}
.y34{bottom:707.735385px;}
.ye{bottom:710.135505px;}
.y94{bottom:711.635580px;}
.y5d{bottom:725.586278px;}
.y93{bottom:730.536525px;}
.y33{bottom:741.637080px;}
.y5c{bottom:744.637230px;}
.yd{bottom:748.087403px;}
.y92{bottom:749.587478px;}
.y5b{bottom:763.538175px;}
.yc{bottom:781.839090px;}
.y99{bottom:782.589128px;}
.y91{bottom:786.789338px;}
.y5a{bottom:801.490073px;}
.yb{bottom:812.890643px;}
.y59{bottom:820.541025px;}
.ya{bottom:828.491423px;}
.y58{bottom:839.441970px;}
.y9{bottom:843.942195px;}
.y57{bottom:858.492923px;}
.y8{bottom:859.542975px;}
.y56{bottom:877.393868px;}
.y7{bottom:890.594528px;}
.y55{bottom:896.444820px;}
.y54{bottom:915.345765px;}
.y7b{bottom:934.396718px;}
.y53{bottom:953.297663px;}
.y52{bottom:972.348615px;}
.y6{bottom:983.749185px;}
.y51{bottom:991.249560px;}
.y32{bottom:1010.300513px;}
.y5{bottom:1018.850940px;}
.y31{bottom:1029.201458px;}
.y30{bottom:1048.252410px;}
.y2f{bottom:1067.153355px;}
.y50{bottom:1086.204308px;}
.y4{bottom:1102.255110px;}
.y2e{bottom:1105.105253px;}
.y2d{bottom:1124.156205px;}
.y3{bottom:1133.306663px;}
.y2c{bottom:1143.057150px;}
.y2{bottom:1216.260810px;}
.h7{height:36.968645px;}
.h6{height:37.496015px;}
.h8{height:37.522384px;}
.h9{height:45.183900px;}
.ha{height:45.860691px;}
.hc{height:48.084435px;}
.h5{height:51.865093px;}
.hb{height:56.786820px;}
.h4{height:73.937290px;}
.h3{height:78.683621px;}
.h2{height:1262.763135px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.544625px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:76.803840px;}
.x1{left:80.104005px;}
.xd{left:81.304065px;}
.xc{left:100.955048px;}
.xe{left:102.005100px;}
.x8{left:103.805190px;}
.x9{left:130.806540px;}
.x4{left:157.357868px;}
.x2{left:241.062053px;}
.x3{left:245.862293px;}
.xb{left:266.413320px;}
.x7{left:302.415120px;}
.x6{left:412.197000px;}
.xa{left:465.772500px;}
@media print{
.v3{vertical-align:-6.400320pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.801040pt;}
.v2{vertical-align:22.401120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.144007pt;}
.ls5{letter-spacing:0.145074pt;}
.ls3{letter-spacing:6.133640pt;}
.ls2{letter-spacing:7.733720pt;}
.ls1{letter-spacing:60.568362pt;}
.ws0{word-spacing:-14.774072pt;}
.ws4{word-spacing:-14.667400pt;}
.ws3{word-spacing:-12.000600pt;}
.ws1{word-spacing:-8.568962pt;}
.ws2{word-spacing:-8.533760pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-2.099305pt;}
._0{margin-left:-1.074187pt;}
._1{width:1.706752pt;}
._3{width:2.618798pt;}
._2{width:3.545777pt;}
._6{width:5.104255pt;}
._a{width:5.996033pt;}
._9{width:6.900612pt;}
._8{width:7.803057pt;}
._5{width:8.994583pt;}
._4{width:10.032502pt;}
._e{width:10.936013pt;}
._b{width:13.670017pt;}
._c{width:15.832258pt;}
._d{width:19.830325pt;}
.fs1{font-size:30.934880pt;}
.fs4{font-size:34.135040pt;}
.fs5{font-size:48.002400pt;}
.fs6{font-size:53.133867pt;}
.fs0{font-size:53.336000pt;}
.fs3{font-size:58.669600pt;}
.fs2{font-size:96.004800pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.036007pt;}
.y2b{bottom:42.653333pt;}
.y90{bottom:88.137740pt;}
.y7a{bottom:88.404420pt;}
.y4f{bottom:89.204460pt;}
.ya4{bottom:90.137840pt;}
.y2a{bottom:91.471240pt;}
.y8f{bottom:104.938580pt;}
.y79{bottom:105.205260pt;}
.y4e{bottom:106.138640pt;}
.y29{bottom:108.272080pt;}
.ya3{bottom:110.938880pt;}
.y8e{bottom:121.872760pt;}
.y4d{bottom:122.939480pt;}
.y28{bottom:125.206260pt;}
.y98{bottom:129.873160pt;}
.ya2{bottom:131.873260pt;}
.y8d{bottom:138.673600pt;}
.y78{bottom:138.940280pt;}
.y97{bottom:143.607180pt;}
.ya1{bottom:152.674300pt;}
.y8c{bottom:155.607780pt;}
.y77{bottom:155.874460pt;}
.y4c{bottom:156.674500pt;}
.y27{bottom:158.941280pt;}
.y8b{bottom:172.408620pt;}
.y76{bottom:172.675300pt;}
.y4b{bottom:173.608680pt;}
.y26{bottom:175.742120pt;}
.y8a{bottom:189.342800pt;}
.y75{bottom:189.609480pt;}
.y4a{bottom:190.409520pt;}
.y25{bottom:192.676300pt;}
.ya0{bottom:194.409720pt;}
.y74{bottom:206.410320pt;}
.y49{bottom:207.343700pt;}
.y24{bottom:209.477140pt;}
.y9f{bottom:211.343900pt;}
.y89{bottom:223.077820pt;}
.y73{bottom:223.344500pt;}
.y48{bottom:224.277880pt;}
.y23{bottom:226.411320pt;}
.y9e{bottom:232.144940pt;}
.y88{bottom:239.878660pt;}
.y72{bottom:240.145340pt;}
.y47{bottom:241.078720pt;}
.y22{bottom:243.212160pt;}
.y9d{bottom:249.079120pt;}
.y87{bottom:256.812840pt;}
.y71{bottom:257.079520pt;}
.y46{bottom:258.012900pt;}
.y21{bottom:260.146340pt;}
.y86{bottom:273.613680pt;}
.y9c{bottom:273.880360pt;}
.y20{bottom:276.947180pt;}
.y85{bottom:290.547860pt;}
.y70{bottom:290.814540pt;}
.y45{bottom:291.747920pt;}
.y1f{bottom:293.881360pt;}
.y84{bottom:307.348700pt;}
.y6f{bottom:307.615380pt;}
.y44{bottom:308.682100pt;}
.y1e{bottom:310.682200pt;}
.y83{bottom:324.282880pt;}
.y6e{bottom:324.549560pt;}
.y43{bottom:325.482940pt;}
.y1d{bottom:327.616380pt;}
.y82{bottom:341.083720pt;}
.y6d{bottom:341.350400pt;}
.y42{bottom:342.417120pt;}
.y81{bottom:358.017900pt;}
.y6c{bottom:358.284580pt;}
.y41{bottom:359.217960pt;}
.y1c{bottom:361.351400pt;}
.y80{bottom:374.818740pt;}
.y6b{bottom:375.085420pt;}
.y40{bottom:376.152140pt;}
.y1b{bottom:378.152240pt;}
.y7f{bottom:391.752920pt;}
.y6a{bottom:392.019600pt;}
.y1a{bottom:395.086420pt;}
.y7e{bottom:408.553760pt;}
.y69{bottom:408.820440pt;}
.y3f{bottom:409.887160pt;}
.y19{bottom:411.887260pt;}
.y9b{bottom:425.754620pt;}
.y7d{bottom:442.288780pt;}
.y68{bottom:442.555460pt;}
.y3e{bottom:443.622180pt;}
.y18{bottom:445.622280pt;}
.y67{bottom:459.489640pt;}
.y3d{bottom:460.423020pt;}
.y17{bottom:462.556460pt;}
.y7c{bottom:475.490440pt;}
.y66{bottom:476.290480pt;}
.y3c{bottom:477.357200pt;}
.y16{bottom:479.357300pt;}
.y65{bottom:493.224660pt;}
.y3b{bottom:494.158040pt;}
.y15{bottom:496.291480pt;}
.y64{bottom:510.025500pt;}
.y3a{bottom:511.092220pt;}
.y14{bottom:513.092320pt;}
.y63{bottom:526.959680pt;}
.y62{bottom:543.760520pt;}
.y39{bottom:544.827240pt;}
.y13{bottom:546.827340pt;}
.y61{bottom:560.694700pt;}
.y38{bottom:561.628080pt;}
.y12{bottom:563.761520pt;}
.y9a{bottom:577.495540pt;}
.y37{bottom:578.562260pt;}
.y11{bottom:580.562360pt;}
.y60{bottom:594.429720pt;}
.y36{bottom:595.363100pt;}
.y10{bottom:597.496540pt;}
.y96{bottom:598.829940pt;}
.y5f{bottom:611.230560pt;}
.y35{bottom:612.297280pt;}
.yf{bottom:614.297380pt;}
.y95{bottom:615.630780pt;}
.y5e{bottom:628.164740pt;}
.y34{bottom:629.098120pt;}
.ye{bottom:631.231560pt;}
.y94{bottom:632.564960pt;}
.y5d{bottom:644.965580pt;}
.y93{bottom:649.365800pt;}
.y33{bottom:659.232960pt;}
.y5c{bottom:661.899760pt;}
.yd{bottom:664.966580pt;}
.y92{bottom:666.299980pt;}
.y5b{bottom:678.700600pt;}
.yc{bottom:694.968080pt;}
.y99{bottom:695.634780pt;}
.y91{bottom:699.368300pt;}
.y5a{bottom:712.435620pt;}
.yb{bottom:722.569460pt;}
.y59{bottom:729.369800pt;}
.ya{bottom:736.436820pt;}
.y58{bottom:746.170640pt;}
.y9{bottom:750.170840pt;}
.y57{bottom:763.104820pt;}
.y8{bottom:764.038200pt;}
.y56{bottom:779.905660pt;}
.y7{bottom:791.639580pt;}
.y55{bottom:796.839840pt;}
.y54{bottom:813.640680pt;}
.y7b{bottom:830.574860pt;}
.y53{bottom:847.375700pt;}
.y52{bottom:864.309880pt;}
.y6{bottom:874.443720pt;}
.y51{bottom:881.110720pt;}
.y32{bottom:898.044900pt;}
.y5{bottom:905.645280pt;}
.y31{bottom:914.845740pt;}
.y30{bottom:931.779920pt;}
.y2f{bottom:948.580760pt;}
.y50{bottom:965.514940pt;}
.y4{bottom:979.782320pt;}
.y2e{bottom:982.315780pt;}
.y2d{bottom:999.249960pt;}
.y3{bottom:1007.383700pt;}
.y2c{bottom:1016.050800pt;}
.y2{bottom:1081.120720pt;}
.h7{height:32.861018pt;}
.h6{height:33.329791pt;}
.h8{height:33.353230pt;}
.h9{height:40.163466pt;}
.ha{height:40.765059pt;}
.hc{height:42.741720pt;}
.h5{height:46.102305pt;}
.hb{height:50.477173pt;}
.h4{height:65.722036pt;}
.h3{height:69.940997pt;}
.h2{height:1122.456120pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.373000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:68.270080pt;}
.x1{left:71.203560pt;}
.xd{left:72.270280pt;}
.xc{left:89.737820pt;}
.xe{left:90.671200pt;}
.x8{left:92.271280pt;}
.x9{left:116.272480pt;}
.x4{left:139.873660pt;}
.x2{left:214.277380pt;}
.x3{left:218.544260pt;}
.xb{left:236.811840pt;}
.x7{left:268.813440pt;}
.x6{left:366.397333pt;}
.xa{left:414.020000pt;}
}




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