
    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_048f45fed1661b8b055fb5a4.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7e93225ba64b198305b92908.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_647b87ce5a72fa27a28db4e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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);}
.v2{vertical-align:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:198.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:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws2{word-spacing:-8.138672px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-198.000000px;}
._0{margin-left:-6.399756px;}
._b{margin-left:-5.343750px;}
._f{margin-left:-4.324219px;}
._2{margin-left:-3.106786px;}
._1{margin-left:-1.616518px;}
._4{width:4.500000px;}
._5{width:9.000002px;}
._3{width:13.500009px;}
._8{width:22.500003px;}
._e{width:26.104205px;}
._7{width:27.223948px;}
._6{width:31.500003px;}
._a{width:35.999999px;}
._c{width:40.499999px;}
._9{width:198.000000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y5d{bottom:17.016358px;}
.y2b{bottom:17.016724px;}
.ya0{bottom:17.017090px;}
.yc2{bottom:37.157959px;}
.y5c{bottom:37.158326px;}
.y2a{bottom:37.158418px;}
.yc1{bottom:113.076408px;}
.yd9{bottom:113.524657px;}
.y5a{bottom:115.702520px;}
.y28{bottom:116.232793px;}
.y7d{bottom:125.068362px;}
.y9e{bottom:126.128168px;}
.yc0{bottom:133.774651px;}
.yd8{bottom:134.222903px;}
.y59{bottom:138.039185px;}
.y7c{bottom:145.766604px;}
.y9d{bottom:146.826785px;}
.ybf{bottom:154.472893px;}
.yd7{bottom:154.921148px;}
.y58{bottom:160.376217px;}
.y27{bottom:164.354645px;}
.y7b{bottom:166.464847px;}
.ybe{bottom:175.171135px;}
.yd6{bottom:175.619379px;}
.y57{bottom:182.712891px;}
.y26{bottom:186.691497px;}
.y7a{bottom:187.163088px;}
.ybd{bottom:195.869378px;}
.yd5{bottom:196.317622px;}
.y56{bottom:205.049932px;}
.y79{bottom:207.861331px;}
.y25{bottom:209.028351px;}
.ybc{bottom:216.567622px;}
.yd4{bottom:217.015863px;}
.y55{bottom:227.386597px;}
.y78{bottom:228.559573px;}
.y24{bottom:231.365203px;}
.ybb{bottom:237.265863px;}
.yd3{bottom:237.714106px;}
.y77{bottom:249.257815px;}
.y54{bottom:249.723449px;}
.y23{bottom:253.702057px;}
.yba{bottom:257.964106px;}
.yd2{bottom:258.412348px;}
.y76{bottom:269.956058px;}
.y53{bottom:272.060302px;}
.y22{bottom:276.038909px;}
.yb9{bottom:278.662348px;}
.yd1{bottom:279.110590px;}
.y75{bottom:290.654289px;}
.y52{bottom:294.397152px;}
.y21{bottom:298.375762px;}
.yb8{bottom:299.360590px;}
.yd0{bottom:299.808833px;}
.y74{bottom:311.352532px;}
.y51{bottom:316.734006px;}
.yb7{bottom:320.058833px;}
.ycf{bottom:320.507077px;}
.y20{bottom:320.712612px;}
.y73{bottom:332.050773px;}
.y50{bottom:339.070858px;}
.yb6{bottom:340.757077px;}
.yce{bottom:341.205323px;}
.y1f{bottom:343.049466px;}
.y72{bottom:352.749016px;}
.y4f{bottom:361.407712px;}
.yb5{bottom:361.455320px;}
.ycd{bottom:361.903568px;}
.y1e{bottom:365.386318px;}
.y71{bottom:373.447258px;}
.ycc{bottom:382.601810px;}
.y4e{bottom:383.744564px;}
.y1d{bottom:387.723172px;}
.y70{bottom:394.145500px;}
.y4d{bottom:406.081417px;}
.y1c{bottom:410.060024px;}
.y6f{bottom:414.843742px;}
.y4c{bottom:426.779662px;}
.y1b{bottom:432.396878px;}
.y6e{bottom:435.541989px;}
.y4b{bottom:447.477907px;}
.y1a{bottom:453.095122px;}
.y6d{bottom:456.240232px;}
.y4a{bottom:469.814752px;}
.y19{bottom:473.793368px;}
.y6c{bottom:476.938473px;}
.y49{bottom:492.151618px;}
.y6b{bottom:497.636716px;}
.y9c{bottom:498.275028px;}
.y18{bottom:508.130122px;}
.y48{bottom:514.488472px;}
.y6a{bottom:518.334958px;}
.y9b{bottom:518.973271px;}
.y47{bottom:536.825324px;}
.y69{bottom:539.033200px;}
.y9a{bottom:539.671513px;}
.y17{bottom:542.467027px;}
.y46{bottom:559.162177px;}
.y68{bottom:559.731442px;}
.y99{bottom:560.369755px;}
.y16{bottom:564.803873px;}
.y67{bottom:580.429688px;}
.y98{bottom:581.067998px;}
.y45{bottom:581.499026px;}
.y15{bottom:587.140732px;}
.y66{bottom:601.127932px;}
.y97{bottom:601.766242px;}
.y44{bottom:603.835880px;}
.y14{bottom:609.477584px;}
.y65{bottom:621.826178px;}
.y96{bottom:622.464483px;}
.y43{bottom:626.172732px;}
.y13{bottom:631.814437px;}
.y64{bottom:642.524411px;}
.y95{bottom:643.162726px;}
.y42{bottom:648.509586px;}
.y12{bottom:654.151289px;}
.y94{bottom:663.860968px;}
.y41{bottom:670.846438px;}
.y11{bottom:676.488146px;}
.y93{bottom:684.559210px;}
.y40{bottom:693.183292px;}
.y10{bottom:698.825000px;}
.y92{bottom:705.257452px;}
.y3f{bottom:715.520144px;}
.yf{bottom:721.161852px;}
.y91{bottom:725.955693px;}
.y3e{bottom:737.856998px;}
.ye{bottom:743.498706px;}
.yb4{bottom:746.653568px;}
.y90{bottom:746.653934px;}
.y3d{bottom:760.193847px;}
.yd{bottom:765.835558px;}
.yb3{bottom:767.351808px;}
.y8f{bottom:767.352177px;}
.y3c{bottom:782.530701px;}
.ycb{bottom:788.050047px;}
.yb2{bottom:788.050051px;}
.y8e{bottom:788.050419px;}
.yc{bottom:788.172412px;}
.y3b{bottom:804.867553px;}
.yca{bottom:808.748289px;}
.yb1{bottom:808.748293px;}
.y8d{bottom:808.748662px;}
.yb{bottom:810.509264px;}
.y3a{bottom:827.204407px;}
.yc9{bottom:829.446532px;}
.yb0{bottom:829.446535px;}
.y8c{bottom:829.446903px;}
.ya{bottom:832.846118px;}
.y39{bottom:849.541259px;}
.yc8{bottom:850.144773px;}
.yaf{bottom:850.144778px;}
.y8b{bottom:850.145146px;}
.y9{bottom:855.182962px;}
.yc7{bottom:870.843016px;}
.yae{bottom:870.843018px;}
.y8a{bottom:870.843388px;}
.y38{bottom:871.878113px;}
.y8{bottom:877.519822px;}
.yc6{bottom:891.541258px;}
.yad{bottom:891.541261px;}
.y89{bottom:891.541630px;}
.y37{bottom:894.214961px;}
.y7{bottom:899.856667px;}
.yc5{bottom:912.239500px;}
.yac{bottom:912.239503px;}
.y88{bottom:912.239873px;}
.y36{bottom:916.551818px;}
.yc4{bottom:932.937743px;}
.yab{bottom:932.937745px;}
.y87{bottom:932.938111px;}
.y6{bottom:935.115556px;}
.y35{bottom:938.888672px;}
.yc3{bottom:953.635986px;}
.yaa{bottom:953.635988px;}
.y86{bottom:953.636352px;}
.y5{bottom:961.175220px;}
.y34{bottom:961.225524px;}
.ya9{bottom:974.334228px;}
.y85{bottom:974.334595px;}
.y33{bottom:983.562378px;}
.y4{bottom:987.234881px;}
.ya8{bottom:995.032471px;}
.y84{bottom:995.032837px;}
.y32{bottom:1005.899230px;}
.ya7{bottom:1015.730712px;}
.y83{bottom:1015.731079px;}
.y3{bottom:1025.294540px;}
.y31{bottom:1028.236084px;}
.y63{bottom:1028.236086px;}
.ya6{bottom:1036.428955px;}
.y82{bottom:1036.429322px;}
.y1{bottom:1044.900009px;}
.ydc{bottom:1045.127197px;}
.y30{bottom:1050.572936px;}
.y62{bottom:1050.573120px;}
.ya5{bottom:1057.127197px;}
.y81{bottom:1057.127562px;}
.ydb{bottom:1065.825439px;}
.y61{bottom:1072.909783px;}
.y2f{bottom:1072.909789px;}
.ya4{bottom:1077.825439px;}
.y80{bottom:1077.825805px;}
.yda{bottom:1086.523682px;}
.y2e{bottom:1095.246643px;}
.y60{bottom:1095.246826px;}
.ya3{bottom:1098.523682px;}
.y7f{bottom:1098.524047px;}
.y2d{bottom:1117.583495px;}
.y5f{bottom:1117.583498px;}
.ya2{bottom:1119.221924px;}
.y7e{bottom:1119.222289px;}
.ya1{bottom:1139.920165px;}
.y2c{bottom:1139.920349px;}
.y5e{bottom:1139.920531px;}
.y9f{bottom:1156.724853px;}
.y29{bottom:1156.725036px;}
.y5b{bottom:1156.725219px;}
.h7{height:29.619139px;}
.h2{height:43.989259px;}
.h4{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.h9{height:106.274781px;}
.h8{height:106.274964px;}
.ha{height:106.275147px;}
.h1{height:218.099991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:127.575005px;}
.x3{left:162.603032px;}
.x7{left:180.450005px;}
.x4{left:182.299501px;}
.x9{left:186.075005px;}
.xa{left:282.492342px;}
.x6{left:300.004549px;}
.x5{left:351.779049px;}
.x8{left:446.456716px;}
.x1{left:593.831716px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:176.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws2{word-spacing:-7.234375pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-176.000000pt;}
._0{margin-left:-5.688672pt;}
._b{margin-left:-4.750000pt;}
._f{margin-left:-3.843750pt;}
._2{margin-left:-2.761587pt;}
._1{margin-left:-1.436904pt;}
._4{width:4.000000pt;}
._5{width:8.000002pt;}
._3{width:12.000008pt;}
._8{width:20.000002pt;}
._e{width:23.203738pt;}
._7{width:24.199065pt;}
._6{width:28.000002pt;}
._a{width:31.999999pt;}
._c{width:35.999999pt;}
._9{width:176.000000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y5d{bottom:15.125651pt;}
.y2b{bottom:15.125977pt;}
.ya0{bottom:15.126302pt;}
.yc2{bottom:33.029297pt;}
.y5c{bottom:33.029623pt;}
.y2a{bottom:33.029705pt;}
.yc1{bottom:100.512363pt;}
.yd9{bottom:100.910807pt;}
.y5a{bottom:102.846684pt;}
.y28{bottom:103.318039pt;}
.y7d{bottom:111.171878pt;}
.y9e{bottom:112.113927pt;}
.yc0{bottom:118.910801pt;}
.yd8{bottom:119.309247pt;}
.y59{bottom:122.701497pt;}
.y7c{bottom:129.570315pt;}
.y9d{bottom:130.512698pt;}
.ybf{bottom:137.309238pt;}
.yd7{bottom:137.707687pt;}
.y58{bottom:142.556637pt;}
.y27{bottom:146.093017pt;}
.y7b{bottom:147.968752pt;}
.ybe{bottom:155.707676pt;}
.yd6{bottom:156.106115pt;}
.y57{bottom:162.411458pt;}
.y26{bottom:165.947997pt;}
.y7a{bottom:166.367190pt;}
.ybd{bottom:174.106113pt;}
.yd5{bottom:174.504553pt;}
.y56{bottom:182.266606pt;}
.y79{bottom:184.765627pt;}
.y25{bottom:185.802978pt;}
.ybc{bottom:192.504553pt;}
.yd4{bottom:192.902990pt;}
.y55{bottom:202.121419pt;}
.y78{bottom:203.164065pt;}
.y24{bottom:205.657958pt;}
.ybb{bottom:210.902990pt;}
.yd3{bottom:211.301428pt;}
.y77{bottom:221.562503pt;}
.y54{bottom:221.976399pt;}
.y23{bottom:225.512939pt;}
.yba{bottom:229.301428pt;}
.yd2{bottom:229.699865pt;}
.y76{bottom:239.960940pt;}
.y53{bottom:241.831380pt;}
.y22{bottom:245.367919pt;}
.yb9{bottom:247.699865pt;}
.yd1{bottom:248.098303pt;}
.y75{bottom:258.359368pt;}
.y52{bottom:261.686357pt;}
.y21{bottom:265.222900pt;}
.yb8{bottom:266.098303pt;}
.yd0{bottom:266.496740pt;}
.y74{bottom:276.757806pt;}
.y51{bottom:281.541338pt;}
.yb7{bottom:284.496740pt;}
.ycf{bottom:284.895180pt;}
.y20{bottom:285.077878pt;}
.y73{bottom:295.156243pt;}
.y50{bottom:301.396318pt;}
.yb6{bottom:302.895180pt;}
.yce{bottom:303.293620pt;}
.y1f{bottom:304.932859pt;}
.y72{bottom:313.554681pt;}
.y4f{bottom:321.251299pt;}
.yb5{bottom:321.293617pt;}
.ycd{bottom:321.692060pt;}
.y1e{bottom:324.787839pt;}
.y71{bottom:331.953118pt;}
.ycc{bottom:340.090497pt;}
.y4e{bottom:341.106279pt;}
.y1d{bottom:344.642820pt;}
.y70{bottom:350.351556pt;}
.y4d{bottom:360.961260pt;}
.y1c{bottom:364.497800pt;}
.y6f{bottom:368.749993pt;}
.y4c{bottom:379.359700pt;}
.y1b{bottom:384.352780pt;}
.y6e{bottom:387.148434pt;}
.y4b{bottom:397.758140pt;}
.y1a{bottom:402.751220pt;}
.y6d{bottom:405.546872pt;}
.y4a{bottom:417.613113pt;}
.y19{bottom:421.149660pt;}
.y6c{bottom:423.945309pt;}
.y49{bottom:437.468105pt;}
.y6b{bottom:442.343747pt;}
.y9c{bottom:442.911136pt;}
.y18{bottom:451.671220pt;}
.y48{bottom:457.323086pt;}
.y6a{bottom:460.742184pt;}
.y9b{bottom:461.309574pt;}
.y47{bottom:477.178066pt;}
.y69{bottom:479.140622pt;}
.y9a{bottom:479.708011pt;}
.y17{bottom:482.192913pt;}
.y46{bottom:497.033047pt;}
.y68{bottom:497.539060pt;}
.y99{bottom:498.106449pt;}
.y16{bottom:502.047887pt;}
.y67{bottom:515.937500pt;}
.y98{bottom:516.504887pt;}
.y45{bottom:516.888023pt;}
.y15{bottom:521.902873pt;}
.y66{bottom:534.335940pt;}
.y97{bottom:534.903326pt;}
.y44{bottom:536.743004pt;}
.y14{bottom:541.757853pt;}
.y65{bottom:552.734380pt;}
.y96{bottom:553.301763pt;}
.y43{bottom:556.597984pt;}
.y13{bottom:561.612833pt;}
.y64{bottom:571.132809pt;}
.y95{bottom:571.700201pt;}
.y42{bottom:576.452965pt;}
.y12{bottom:581.467813pt;}
.y94{bottom:590.098638pt;}
.y41{bottom:596.307945pt;}
.y11{bottom:601.322796pt;}
.y93{bottom:608.497076pt;}
.y40{bottom:616.162926pt;}
.y10{bottom:621.177778pt;}
.y92{bottom:626.895513pt;}
.y3f{bottom:636.017906pt;}
.yf{bottom:641.032758pt;}
.y91{bottom:645.293949pt;}
.y3e{bottom:655.872887pt;}
.ye{bottom:660.887739pt;}
.yb4{bottom:663.692060pt;}
.y90{bottom:663.692386pt;}
.y3d{bottom:675.727864pt;}
.yd{bottom:680.742719pt;}
.yb3{bottom:682.090496pt;}
.y8f{bottom:682.090824pt;}
.y3c{bottom:695.582845pt;}
.ycb{bottom:700.488931pt;}
.yb2{bottom:700.488934pt;}
.y8e{bottom:700.489261pt;}
.yc{bottom:700.597700pt;}
.y3b{bottom:715.437825pt;}
.yca{bottom:718.887368pt;}
.yb1{bottom:718.887371pt;}
.y8d{bottom:718.887699pt;}
.yb{bottom:720.452680pt;}
.y3a{bottom:735.292806pt;}
.yc9{bottom:737.285806pt;}
.yb0{bottom:737.285809pt;}
.y8c{bottom:737.286136pt;}
.ya{bottom:740.307660pt;}
.y39{bottom:755.147786pt;}
.yc8{bottom:755.684243pt;}
.yaf{bottom:755.684247pt;}
.y8b{bottom:755.684574pt;}
.y9{bottom:760.162633pt;}
.yc7{bottom:774.082681pt;}
.yae{bottom:774.082683pt;}
.y8a{bottom:774.083011pt;}
.y38{bottom:775.002767pt;}
.y8{bottom:780.017620pt;}
.yc6{bottom:792.481118pt;}
.yad{bottom:792.481121pt;}
.y89{bottom:792.481449pt;}
.y37{bottom:794.857743pt;}
.y7{bottom:799.872593pt;}
.yc5{bottom:810.879556pt;}
.yac{bottom:810.879558pt;}
.y88{bottom:810.879887pt;}
.y36{bottom:814.712727pt;}
.yc4{bottom:829.277993pt;}
.yab{bottom:829.277996pt;}
.y87{bottom:829.278320pt;}
.y6{bottom:831.213827pt;}
.y35{bottom:834.567708pt;}
.yc3{bottom:847.676432pt;}
.yaa{bottom:847.676433pt;}
.y86{bottom:847.676757pt;}
.y5{bottom:854.377973pt;}
.y34{bottom:854.422688pt;}
.ya9{bottom:866.074869pt;}
.y85{bottom:866.075195pt;}
.y33{bottom:874.277669pt;}
.y4{bottom:877.542116pt;}
.ya8{bottom:884.473307pt;}
.y84{bottom:884.473633pt;}
.y32{bottom:894.132649pt;}
.ya7{bottom:902.871744pt;}
.y83{bottom:902.872070pt;}
.y3{bottom:911.372924pt;}
.y31{bottom:913.987630pt;}
.y63{bottom:913.987632pt;}
.ya6{bottom:921.270182pt;}
.y82{bottom:921.270508pt;}
.y1{bottom:928.800008pt;}
.ydc{bottom:929.001953pt;}
.y30{bottom:933.842610pt;}
.y62{bottom:933.842773pt;}
.ya5{bottom:939.668619pt;}
.y81{bottom:939.668944pt;}
.ydb{bottom:947.400390pt;}
.y61{bottom:953.697585pt;}
.y2f{bottom:953.697591pt;}
.ya4{bottom:958.067057pt;}
.y80{bottom:958.067382pt;}
.yda{bottom:965.798828pt;}
.y2e{bottom:973.552571pt;}
.y60{bottom:973.552734pt;}
.ya3{bottom:976.465495pt;}
.y7f{bottom:976.465819pt;}
.y2d{bottom:993.407551pt;}
.y5f{bottom:993.407554pt;}
.ya2{bottom:994.863932pt;}
.y7e{bottom:994.864257pt;}
.ya1{bottom:1013.262369pt;}
.y2c{bottom:1013.262532pt;}
.y5e{bottom:1013.262695pt;}
.y9f{bottom:1028.199869pt;}
.y29{bottom:1028.200032pt;}
.y5b{bottom:1028.200195pt;}
.h7{height:26.328124pt;}
.h2{height:39.101563pt;}
.h4{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.h9{height:94.466472pt;}
.h8{height:94.466635pt;}
.ha{height:94.466797pt;}
.h1{height:193.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:113.400004pt;}
.x3{left:144.536028pt;}
.x7{left:160.400004pt;}
.x4{left:162.044001pt;}
.x9{left:165.400004pt;}
.xa{left:251.104304pt;}
.x6{left:266.670710pt;}
.x5{left:312.692488pt;}
.x8{left:396.850414pt;}
.x1{left:527.850414pt;}
}




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