
    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_a1c188839df6efbdf651a79a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e75c9ca0bfa41954dc49da90.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_af06ed7fd6a3fd8e76fcff1d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963379;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_bf5d748a852cb6d18b9a17d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_daadcc16d1e0acbe240e0a67.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087930;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);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws3{word-spacing:-17.832504px;}
.ws2{word-spacing:-17.656641px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:811.359316px;}
._2{margin-left:-8.722802px;}
._5{margin-left:-6.647619px;}
._3{margin-left:-4.361401px;}
._1{margin-left:-2.648435px;}
._4{margin-left:-1.512419px;}
._6{width:1.978458px;}
._0{width:1169.929593px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.999996px;}
.fs5{font-size:63.029284px;}
.fs1{font-size:72.033467px;}
.fs3{font-size:81.037651px;}
.fs4{font-size:108.050201px;}
.fs2{font-size:162.075301px;}
.y0{bottom:0.000000px;}
.y23{bottom:10.129698px;}
.y50{bottom:11.255231px;}
.y7d{bottom:11.255238px;}
.y2{bottom:25.380071px;}
.y22{bottom:34.891202px;}
.y4f{bottom:36.016735px;}
.y7c{bottom:36.016742px;}
.ya7{bottom:39.393306px;}
.y51{bottom:42.082942px;}
.y3{bottom:42.083005px;}
.y24{bottom:42.083030px;}
.y7e{bottom:42.083118px;}
.y21{bottom:59.652706px;}
.y4e{bottom:60.778239px;}
.y7b{bottom:60.778246px;}
.y20{bottom:84.414211px;}
.y4d{bottom:85.539744px;}
.yd0{bottom:90.041829px;}
.ya6{bottom:92.292884px;}
.y7a{bottom:95.669457px;}
.y1f{bottom:109.175715px;}
.ycf{bottom:114.803334px;}
.y4c{bottom:121.556477px;}
.ya5{bottom:128.309617px;}
.y1e{bottom:133.937219px;}
.yce{bottom:139.564838px;}
.y4b{bottom:146.317982px;}
.y79{bottom:148.569035px;}
.y1d{bottom:158.698724px;}
.ycd{bottom:164.326342px;}
.ya4{bottom:164.326351px;}
.y4a{bottom:171.079486px;}
.y78{bottom:173.330539px;}
.y1c{bottom:183.460228px;}
.y49{bottom:195.840990px;}
.y77{bottom:198.092043px;}
.ycc{bottom:200.343076px;}
.ya3{bottom:200.343085px;}
.y1b{bottom:219.476962px;}
.y48{bottom:220.602495px;}
.y76{bottom:222.853548px;}
.ycb{bottom:225.104580px;}
.ya2{bottom:236.359818px;}
.y1a{bottom:244.238466px;}
.y47{bottom:245.363999px;}
.y75{bottom:247.615052px;}
.yca{bottom:249.866085px;}
.ya1{bottom:261.121323px;}
.y19{bottom:268.999970px;}
.y74{bottom:272.376556px;}
.yc9{bottom:274.627589px;}
.y46{bottom:281.380733px;}
.ya0{bottom:285.882827px;}
.y18{bottom:293.761475px;}
.y73{bottom:297.138061px;}
.yc8{bottom:299.389093px;}
.y45{bottom:306.142237px;}
.y9f{bottom:310.644331px;}
.y17{bottom:318.522979px;}
.y72{bottom:321.899565px;}
.yc7{bottom:324.150598px;}
.y44{bottom:330.903741px;}
.y9e{bottom:335.405836px;}
.y71{bottom:346.661069px;}
.yc6{bottom:348.912102px;}
.y16{bottom:354.539713px;}
.y43{bottom:355.665246px;}
.y9d{bottom:360.167340px;}
.yc5{bottom:373.673606px;}
.y15{bottom:379.301217px;}
.y42{bottom:380.426750px;}
.y70{bottom:382.677803px;}
.yea{bottom:386.054350px;}
.y9c{bottom:396.184074px;}
.yc4{bottom:398.435111px;}
.y14{bottom:404.062721px;}
.y41{bottom:405.188254px;}
.ye9{bottom:407.439285px;}
.y6f{bottom:407.439307px;}
.y9b{bottom:420.945578px;}
.ye8{bottom:428.824221px;}
.y13{bottom:428.824226px;}
.y6e{bottom:432.200812px;}
.yc3{bottom:434.451844px;}
.y40{bottom:441.204988px;}
.y9a{bottom:445.707082px;}
.ye7{bottom:450.209157px;}
.y12{bottom:453.585730px;}
.y6d{bottom:456.962316px;}
.yc2{bottom:459.213349px;}
.y3f{bottom:465.966492px;}
.y99{bottom:470.468587px;}
.y11{bottom:478.347234px;}
.y6c{bottom:481.723820px;}
.yc1{bottom:483.974853px;}
.y3e{bottom:490.727997px;}
.y98{bottom:495.230091px;}
.ye6{bottom:503.108734px;}
.y10{bottom:503.108739px;}
.y6b{bottom:506.485325px;}
.yc0{bottom:508.736357px;}
.y3d{bottom:515.489501px;}
.y97{bottom:519.991595px;}
.yf{bottom:527.870243px;}
.y6a{bottom:531.246829px;}
.ybf{bottom:533.497862px;}
.y3c{bottom:540.251005px;}
.y96{bottom:544.753100px;}
.y69{bottom:556.008333px;}
.ye{bottom:562.761454px;}
.y3b{bottom:565.012510px;}
.ybe{bottom:569.514595px;}
.y95{bottom:569.514604px;}
.y3a{bottom:589.774014px;}
.y68{bottom:592.025067px;}
.ybd{bottom:594.276100px;}
.y94{bottom:605.531338px;}
.ye5{bottom:607.782366px;}
.y39{bottom:614.535518px;}
.yd{bottom:615.661031px;}
.y67{bottom:616.786571px;}
.ybc{bottom:619.037604px;}
.y93{bottom:630.292842px;}
.ye4{bottom:632.543871px;}
.y38{bottom:639.297023px;}
.y66{bottom:641.548076px;}
.ybb{bottom:643.799108px;}
.y92{bottom:655.054346px;}
.ye3{bottom:657.305375px;}
.y37{bottom:664.058527px;}
.y65{bottom:666.309580px;}
.yba{bottom:668.560613px;}
.y91{bottom:679.815851px;}
.yc{bottom:682.066884px;}
.y36{bottom:688.820031px;}
.y64{bottom:691.071084px;}
.ye2{bottom:693.322108px;}
.yb9{bottom:693.322117px;}
.y90{bottom:704.577355px;}
.yb{bottom:710.204957px;}
.y35{bottom:713.581536px;}
.y63{bottom:715.832589px;}
.ye1{bottom:718.083613px;}
.yb8{bottom:729.338851px;}
.y8f{bottom:729.338859px;}
.ya{bottom:738.343030px;}
.y62{bottom:740.594093px;}
.ye0{bottom:742.845117px;}
.y34{bottom:748.472746px;}
.yb7{bottom:754.100355px;}
.y8e{bottom:765.355593px;}
.y61{bottom:765.355597px;}
.y9{bottom:766.481103px;}
.ydf{bottom:778.861851px;}
.yb6{bottom:790.117089px;}
.y8d{bottom:790.117097px;}
.y8{bottom:794.619176px;}
.y33{bottom:801.372324px;}
.y60{bottom:801.372331px;}
.yde{bottom:803.623355px;}
.yb5{bottom:814.878593px;}
.y8c{bottom:814.878602px;}
.y7{bottom:822.757250px;}
.y32{bottom:826.133828px;}
.y5f{bottom:826.133835px;}
.ydd{bottom:828.384859px;}
.yb4{bottom:839.640097px;}
.y8b{bottom:839.640106px;}
.y6{bottom:850.895323px;}
.y31{bottom:850.895333px;}
.y5e{bottom:850.895340px;}
.ydc{bottom:864.401593px;}
.yb3{bottom:864.401602px;}
.y8a{bottom:864.401611px;}
.y30{bottom:875.656837px;}
.y5d{bottom:875.656844px;}
.ydb{bottom:889.163097px;}
.yb2{bottom:889.163106px;}
.y89{bottom:889.163115px;}
.y2f{bottom:900.418341px;}
.y5c{bottom:911.673578px;}
.yb1{bottom:913.924611px;}
.yda{bottom:925.179831px;}
.y2e{bottom:925.179846px;}
.y88{bottom:925.179848px;}
.y5{bottom:930.807450px;}
.y5b{bottom:936.435082px;}
.yd9{bottom:949.941335px;}
.yb0{bottom:949.941344px;}
.y2d{bottom:949.941350px;}
.y87{bottom:949.941353px;}
.y5a{bottom:961.196586px;}
.yd8{bottom:974.702840px;}
.yaf{bottom:974.702848px;}
.y2c{bottom:974.702854px;}
.y86{bottom:974.702857px;}
.y59{bottom:985.958091px;}
.yd7{bottom:999.464344px;}
.yae{bottom:999.464353px;}
.y2b{bottom:999.464359px;}
.y85{bottom:999.464362px;}
.y58{bottom:1010.719595px;}
.y2a{bottom:1024.225863px;}
.y84{bottom:1024.225866px;}
.yd6{bottom:1035.481078px;}
.yad{bottom:1035.481086px;}
.y57{bottom:1035.481100px;}
.y29{bottom:1048.987367px;}
.y83{bottom:1048.987370px;}
.yd5{bottom:1060.242582px;}
.yac{bottom:1060.242591px;}
.y56{bottom:1060.242604px;}
.y4{bottom:1070.372293px;}
.y82{bottom:1073.748875px;}
.yd4{bottom:1085.004086px;}
.yab{bottom:1085.004095px;}
.y28{bottom:1085.004101px;}
.y55{bottom:1085.004108px;}
.y81{bottom:1098.510379px;}
.yd3{bottom:1109.765591px;}
.yaa{bottom:1109.765599px;}
.y27{bottom:1109.765605px;}
.y54{bottom:1109.765613px;}
.y80{bottom:1123.271883px;}
.yd2{bottom:1134.527095px;}
.ya9{bottom:1134.527104px;}
.y26{bottom:1134.527110px;}
.y53{bottom:1134.527117px;}
.yd1{bottom:1159.288599px;}
.ya8{bottom:1159.288608px;}
.y25{bottom:1159.288614px;}
.y7f{bottom:1159.288617px;}
.y52{bottom:1159.288621px;}
.y1{bottom:1229.879973px;}
.h2{height:34.945310px;}
.hb{height:50.564997px;}
.ha{height:55.028528px;}
.h4{height:57.366497px;}
.h7{height:57.788568px;}
.h6{height:60.778238px;}
.h9{height:62.889747px;}
.h8{height:78.663501px;}
.h5{height:117.995251px;}
.h3{height:1177.296971px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:806.999906px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:16.882844px;}
.x6{left:33.765688px;}
.x5{left:37.142257px;}
.x1{left:39.679684px;}
.x2{left:43.499994px;}
.x3{left:372.548088px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-15.851114pt;}
.ws2{word-spacing:-15.694792pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:721.208281pt;}
._2{margin-left:-7.753602pt;}
._5{margin-left:-5.908995pt;}
._3{margin-left:-3.876801pt;}
._1{margin-left:-2.354165pt;}
._4{margin-left:-1.344372pt;}
._6{width:1.758629pt;}
._0{width:1039.937416pt;}
.fs0{font-size:42.666663pt;}
.fs5{font-size:56.026030pt;}
.fs1{font-size:64.029749pt;}
.fs3{font-size:72.033467pt;}
.fs4{font-size:96.044623pt;}
.fs2{font-size:144.066934pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:9.004176pt;}
.y50{bottom:10.004649pt;}
.y7d{bottom:10.004656pt;}
.y2{bottom:22.560063pt;}
.y22{bottom:31.014402pt;}
.y4f{bottom:32.014875pt;}
.y7c{bottom:32.014882pt;}
.ya7{bottom:35.016272pt;}
.y51{bottom:37.407060pt;}
.y3{bottom:37.407116pt;}
.y24{bottom:37.407138pt;}
.y7e{bottom:37.407216pt;}
.y21{bottom:53.024628pt;}
.y4e{bottom:54.025102pt;}
.y7b{bottom:54.025108pt;}
.y20{bottom:75.034854pt;}
.y4d{bottom:76.035328pt;}
.yd0{bottom:80.037182pt;}
.ya6{bottom:82.038119pt;}
.y7a{bottom:85.039517pt;}
.y1f{bottom:97.045080pt;}
.ycf{bottom:102.047408pt;}
.y4c{bottom:108.050202pt;}
.ya5{bottom:114.052993pt;}
.y1e{bottom:119.055306pt;}
.yce{bottom:124.057634pt;}
.y4b{bottom:130.060428pt;}
.y79{bottom:132.061364pt;}
.y1d{bottom:141.065532pt;}
.ycd{bottom:146.067860pt;}
.ya4{bottom:146.067868pt;}
.y4a{bottom:152.070654pt;}
.y78{bottom:154.071590pt;}
.y1c{bottom:163.075758pt;}
.y49{bottom:174.080880pt;}
.y77{bottom:176.081816pt;}
.ycc{bottom:178.082734pt;}
.ya3{bottom:178.082742pt;}
.y1b{bottom:195.090633pt;}
.y48{bottom:196.091106pt;}
.y76{bottom:198.092042pt;}
.ycb{bottom:200.092960pt;}
.ya2{bottom:210.097616pt;}
.y1a{bottom:217.100859pt;}
.y47{bottom:218.101332pt;}
.y75{bottom:220.102268pt;}
.yca{bottom:222.103186pt;}
.ya1{bottom:232.107842pt;}
.y19{bottom:239.111085pt;}
.y74{bottom:242.112494pt;}
.yc9{bottom:244.113412pt;}
.y46{bottom:250.116207pt;}
.ya0{bottom:254.118068pt;}
.y18{bottom:261.121311pt;}
.y73{bottom:264.122721pt;}
.yc8{bottom:266.123639pt;}
.y45{bottom:272.126433pt;}
.y9f{bottom:276.128295pt;}
.y17{bottom:283.131537pt;}
.y72{bottom:286.132947pt;}
.yc7{bottom:288.133865pt;}
.y44{bottom:294.136659pt;}
.y9e{bottom:298.138521pt;}
.y71{bottom:308.143173pt;}
.yc6{bottom:310.144091pt;}
.y16{bottom:315.146411pt;}
.y43{bottom:316.146885pt;}
.y9d{bottom:320.148747pt;}
.yc5{bottom:332.154317pt;}
.y15{bottom:337.156637pt;}
.y42{bottom:338.157111pt;}
.y70{bottom:340.158047pt;}
.yea{bottom:343.159422pt;}
.y9c{bottom:352.163621pt;}
.yc4{bottom:354.164543pt;}
.y14{bottom:359.166863pt;}
.y41{bottom:360.167337pt;}
.ye9{bottom:362.168254pt;}
.y6f{bottom:362.168273pt;}
.y9b{bottom:374.173847pt;}
.ye8{bottom:381.177085pt;}
.y13{bottom:381.177090pt;}
.y6e{bottom:384.178499pt;}
.yc3{bottom:386.179417pt;}
.y40{bottom:392.182211pt;}
.y9a{bottom:396.184073pt;}
.ye7{bottom:400.185917pt;}
.y12{bottom:403.187316pt;}
.y6d{bottom:406.188725pt;}
.yc2{bottom:408.189643pt;}
.y3f{bottom:414.192438pt;}
.y99{bottom:418.194299pt;}
.y11{bottom:425.197542pt;}
.y6c{bottom:428.198951pt;}
.yc1{bottom:430.199869pt;}
.y3e{bottom:436.202664pt;}
.y98{bottom:440.204525pt;}
.ye6{bottom:447.207764pt;}
.y10{bottom:447.207768pt;}
.y6b{bottom:450.209178pt;}
.yc0{bottom:452.210096pt;}
.y3d{bottom:458.212890pt;}
.y97{bottom:462.214751pt;}
.yf{bottom:469.217994pt;}
.y6a{bottom:472.219404pt;}
.ybf{bottom:474.220322pt;}
.y3c{bottom:480.223116pt;}
.y96{bottom:484.224978pt;}
.y69{bottom:494.229630pt;}
.ye{bottom:500.232403pt;}
.y3b{bottom:502.233342pt;}
.ybe{bottom:506.235196pt;}
.y95{bottom:506.235204pt;}
.y3a{bottom:524.243568pt;}
.y68{bottom:526.244504pt;}
.ybd{bottom:528.245422pt;}
.y94{bottom:538.250078pt;}
.ye5{bottom:540.250992pt;}
.y39{bottom:546.253794pt;}
.yd{bottom:547.254250pt;}
.y67{bottom:548.254730pt;}
.ybc{bottom:550.255648pt;}
.y93{bottom:560.260304pt;}
.ye4{bottom:562.261218pt;}
.y38{bottom:568.264020pt;}
.y66{bottom:570.264956pt;}
.ybb{bottom:572.265874pt;}
.y92{bottom:582.270530pt;}
.ye3{bottom:584.271444pt;}
.y37{bottom:590.274246pt;}
.y65{bottom:592.275182pt;}
.yba{bottom:594.276100pt;}
.y91{bottom:604.280756pt;}
.yc{bottom:606.281675pt;}
.y36{bottom:612.284472pt;}
.y64{bottom:614.285408pt;}
.ye2{bottom:616.286319pt;}
.yb9{bottom:616.286326pt;}
.y90{bottom:626.290982pt;}
.yb{bottom:631.293295pt;}
.y35{bottom:634.294698pt;}
.y63{bottom:636.295634pt;}
.ye1{bottom:638.296545pt;}
.yb8{bottom:648.301201pt;}
.y8f{bottom:648.301208pt;}
.ya{bottom:656.304916pt;}
.y62{bottom:658.305861pt;}
.ye0{bottom:660.306771pt;}
.y34{bottom:665.309108pt;}
.yb7{bottom:670.311427pt;}
.y8e{bottom:680.316083pt;}
.y61{bottom:680.316087pt;}
.y9{bottom:681.316536pt;}
.ydf{bottom:692.321645pt;}
.yb6{bottom:702.326301pt;}
.y8d{bottom:702.326309pt;}
.y8{bottom:706.328157pt;}
.y33{bottom:712.330955pt;}
.y60{bottom:712.330961pt;}
.yde{bottom:714.331871pt;}
.yb5{bottom:724.336527pt;}
.y8c{bottom:724.336535pt;}
.y7{bottom:731.339777pt;}
.y32{bottom:734.341181pt;}
.y5f{bottom:734.341187pt;}
.ydd{bottom:736.342097pt;}
.yb4{bottom:746.346753pt;}
.y8b{bottom:746.346761pt;}
.y6{bottom:756.351398pt;}
.y31{bottom:756.351407pt;}
.y5e{bottom:756.351413pt;}
.ydc{bottom:768.356972pt;}
.yb3{bottom:768.356979pt;}
.y8a{bottom:768.356987pt;}
.y30{bottom:778.361633pt;}
.y5d{bottom:778.361639pt;}
.ydb{bottom:790.367198pt;}
.yb2{bottom:790.367205pt;}
.y89{bottom:790.367213pt;}
.y2f{bottom:800.371859pt;}
.y5c{bottom:810.376514pt;}
.yb1{bottom:812.377432pt;}
.yda{bottom:822.382072pt;}
.y2e{bottom:822.382085pt;}
.y88{bottom:822.382088pt;}
.y5{bottom:827.384400pt;}
.y5b{bottom:832.386740pt;}
.yd9{bottom:844.392298pt;}
.yb0{bottom:844.392306pt;}
.y2d{bottom:844.392311pt;}
.y87{bottom:844.392314pt;}
.y5a{bottom:854.396966pt;}
.yd8{bottom:866.402524pt;}
.yaf{bottom:866.402532pt;}
.y2c{bottom:866.402537pt;}
.y86{bottom:866.402540pt;}
.y59{bottom:876.407192pt;}
.yd7{bottom:888.412750pt;}
.yae{bottom:888.412758pt;}
.y2b{bottom:888.412763pt;}
.y85{bottom:888.412766pt;}
.y58{bottom:898.417418pt;}
.y2a{bottom:910.422989pt;}
.y84{bottom:910.422992pt;}
.yd6{bottom:920.427625pt;}
.yad{bottom:920.427632pt;}
.y57{bottom:920.427644pt;}
.y29{bottom:932.433216pt;}
.y83{bottom:932.433218pt;}
.yd5{bottom:942.437851pt;}
.yac{bottom:942.437858pt;}
.y56{bottom:942.437870pt;}
.y4{bottom:951.442038pt;}
.y82{bottom:954.443444pt;}
.yd4{bottom:964.448077pt;}
.yab{bottom:964.448085pt;}
.y28{bottom:964.448090pt;}
.y55{bottom:964.448096pt;}
.y81{bottom:976.453670pt;}
.yd3{bottom:986.458303pt;}
.yaa{bottom:986.458311pt;}
.y27{bottom:986.458316pt;}
.y54{bottom:986.458322pt;}
.y80{bottom:998.463896pt;}
.yd2{bottom:1008.468529pt;}
.ya9{bottom:1008.468537pt;}
.y26{bottom:1008.468542pt;}
.y53{bottom:1008.468548pt;}
.yd1{bottom:1030.478755pt;}
.ya8{bottom:1030.478763pt;}
.y25{bottom:1030.478768pt;}
.y7f{bottom:1030.478771pt;}
.y52{bottom:1030.478774pt;}
.y1{bottom:1093.226642pt;}
.h2{height:31.062497pt;}
.hb{height:44.946664pt;}
.ha{height:48.914247pt;}
.h4{height:50.992441pt;}
.h7{height:51.367616pt;}
.h6{height:54.025100pt;}
.h9{height:55.901997pt;}
.h8{height:69.923112pt;}
.h5{height:104.884668pt;}
.h3{height:1046.486196pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:717.333250pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:15.006972pt;}
.x6{left:30.013945pt;}
.x5{left:33.015339pt;}
.x1{left:35.270830pt;}
.x2{left:38.666661pt;}
.x3{left:331.153856pt;}
}




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