
    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_723a0641026c41df24b5f8c4.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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:83.434503px;}
.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:-86.424006px;}
.ws2{word-spacing:-29.916001px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-23.088002px;}
._3{margin-left:-10.560001px;}
._2{margin-left:-7.992000px;}
._0{margin-left:-5.616000px;}
._5{margin-left:-3.996000px;}
._6{margin-left:-2.268000px;}
._4{width:179.040786px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000002px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:78.000005px;}
.fs3{font-size:96.000006px;}
.fs1{font-size:108.000003px;}
.fs0{font-size:312.000022px;}
.y0{bottom:0.000000px;}
.yb5{bottom:18.298005px;}
.ybb{bottom:21.499811px;}
.y6d{bottom:22.961186px;}
.y8a{bottom:25.095233px;}
.ydf{bottom:33.041182px;}
.yba{bottom:37.699806px;}
.y6c{bottom:40.961187px;}
.yb4{bottom:47.097997px;}
.y89{bottom:53.895225px;}
.yb9{bottom:53.899808px;}
.y6b{bottom:58.961187px;}
.y6{bottom:65.441188px;}
.yb8{bottom:70.099811px;}
.yb3{bottom:75.897995px;}
.y6a{bottom:76.961188px;}
.y88{bottom:82.695223px;}
.y69{bottom:94.961189px;}
.y5c{bottom:128.399272px;}
.yd2{bottom:129.240806px;}
.y5b{bottom:160.799307px;}
.yd1{bottom:161.640841px;}
.yde{bottom:165.006976px;}
.y2e{bottom:176.788487px;}
.y36{bottom:182.708165px;}
.yc8{bottom:191.933165px;}
.y5a{bottom:193.199308px;}
.yd0{bottom:194.040842px;}
.y68{bottom:194.882376px;}
.ydd{bottom:197.406977px;}
.y1b{bottom:198.662499px;}
.y2d{bottom:209.188488px;}
.y35{bottom:215.108155px;}
.y25{bottom:221.797900px;}
.y12{bottom:222.236121px;}
.y3{bottom:224.225920px;}
.yc7{bottom:224.333166px;}
.y59{bottom:225.599298px;}
.ycf{bottom:226.440832px;}
.y67{bottom:227.282365px;}
.y87{bottom:228.123899px;}
.ydc{bottom:229.806967px;}
.y1a{bottom:231.062500px;}
.y2c{bottom:241.588478px;}
.ye6{bottom:244.113086px;}
.y34{bottom:247.508133px;}
.y24{bottom:254.197935px;}
.y11{bottom:254.636100px;}
.y7c{bottom:255.477634px;}
.yc6{bottom:256.733156px;}
.y58{bottom:257.999276px;}
.yce{bottom:258.840810px;}
.y66{bottom:259.682344px;}
.y86{bottom:260.523878px;}
.ydb{bottom:262.206945px;}
.y19{bottom:263.462490px;}
.yaa{bottom:268.511704px;}
.y2b{bottom:273.988456px;}
.y40{bottom:275.254606px;}
.ye5{bottom:276.513064px;}
.y33{bottom:279.908135px;}
.ya3{bottom:281.559324px;}
.y3b{bottom:281.986887px;}
.y23{bottom:286.597936px;}
.y10{bottom:287.036101px;}
.y7b{bottom:287.877635px;}
.y90{bottom:288.291601px;}
.yc5{bottom:289.133135px;}
.y57{bottom:290.399277px;}
.ycd{bottom:291.240811px;}
.y65{bottom:292.082345px;}
.y85{bottom:292.923879px;}
.yda{bottom:294.606946px;}
.y18{bottom:295.862469px;}
.y80{bottom:297.606354px;}
.y76{bottom:298.814638px;}
.y4d{bottom:299.656171px;}
.ya9{bottom:300.911683px;}
.y5{bottom:305.969998px;}
.y2a{bottom:306.388457px;}
.y3f{bottom:307.654595px;}
.y96{bottom:308.485502px;}
.y60{bottom:308.496129px;}
.ye4{bottom:308.913065px;}
.y32{bottom:312.308124px;}
.ya2{bottom:313.959325px;}
.y3a{bottom:314.386877px;}
.yb2{bottom:314.800861px;}
.y2{bottom:317.825912px;}
.y22{bottom:318.997926px;}
.yf{bottom:319.436091px;}
.y7a{bottom:320.277625px;}
.y8f{bottom:320.691602px;}
.y48{bottom:321.119158px;}
.yc4{bottom:321.533136px;}
.yb{bottom:322.374670px;}
.y56{bottom:322.799267px;}
.ycc{bottom:323.640801px;}
.y64{bottom:324.482335px;}
.y84{bottom:325.323868px;}
.yd9{bottom:327.006936px;}
.y17{bottom:328.262470px;}
.y9a{bottom:329.531549px;}
.y7f{bottom:330.006355px;}
.y44{bottom:330.373094px;}
.y75{bottom:331.214627px;}
.y4c{bottom:332.056161px;}
.ya8{bottom:333.311684px;}
.yb7{bottom:336.795336px;}
.y29{bottom:338.788447px;}
.y3e{bottom:340.054596px;}
.y95{bottom:340.885503px;}
.y5f{bottom:340.896130px;}
.ye3{bottom:341.313055px;}
.yad{bottom:344.262265px;}
.y31{bottom:344.708125px;}
.y50{bottom:345.945344px;}
.ya1{bottom:346.359315px;}
.y39{bottom:346.786878px;}
.yb1{bottom:347.200851px;}
.ybf{bottom:349.725446px;}
.y21{bottom:351.397904px;}
.ye{bottom:351.836092px;}
.y79{bottom:352.677626px;}
.y8e{bottom:353.091592px;}
.y47{bottom:353.519159px;}
.yc3{bottom:353.933126px;}
.ya{bottom:354.774659px;}
.y55{bottom:355.199268px;}
.y71{bottom:355.616198px;}
.ycb{bottom:356.040802px;}
.y63{bottom:356.882336px;}
.y83{bottom:357.723870px;}
.yd8{bottom:359.406937px;}
.yb6{bottom:360.195337px;}
.y16{bottom:360.662460px;}
.y99{bottom:361.931550px;}
.y7e{bottom:362.406363px;}
.y43{bottom:362.773095px;}
.y74{bottom:363.614628px;}
.y4b{bottom:364.456162px;}
.y9d{bottom:365.297696px;}
.ya7{bottom:365.711674px;}
.y28{bottom:371.188448px;}
.y3d{bottom:372.454604px;}
.yd5{bottom:372.871522px;}
.y94{bottom:373.285493px;}
.y5e{bottom:373.296138px;}
.ye2{bottom:373.713056px;}
.yac{bottom:376.662273px;}
.y30{bottom:377.108133px;}
.y4f{bottom:378.345352px;}
.ya0{bottom:378.759316px;}
.y38{bottom:379.186886px;}
.yb0{bottom:379.600852px;}
.y52{bottom:380.028419px;}
.ybe{bottom:382.125447px;}
.y20{bottom:383.797905px;}
.yd{bottom:384.236100px;}
.y78{bottom:385.077633px;}
.y8d{bottom:385.491593px;}
.y46{bottom:385.919167px;}
.yc2{bottom:386.333127px;}
.y9{bottom:387.174660px;}
.y54{bottom:387.599276px;}
.y70{bottom:388.016199px;}
.yca{bottom:388.440810px;}
.y62{bottom:389.282344px;}
.y82{bottom:390.123877px;}
.yd7{bottom:391.806945px;}
.y15{bottom:393.062461px;}
.y98{bottom:394.331557px;}
.y7d{bottom:394.806368px;}
.y42{bottom:395.173102px;}
.y73{bottom:396.014636px;}
.y4a{bottom:396.856170px;}
.y9c{bottom:397.697704px;}
.ya6{bottom:398.111675px;}
.y4{bottom:399.569990px;}
.y27{bottom:403.588456px;}
.y3c{bottom:404.854610px;}
.yd4{bottom:405.271530px;}
.y93{bottom:405.685494px;}
.y5d{bottom:405.696144px;}
.ye1{bottom:406.113064px;}
.yab{bottom:409.062279px;}
.y2f{bottom:409.508139px;}
.y4e{bottom:410.745357px;}
.y9f{bottom:411.159324px;}
.y1{bottom:411.425898px;}
.y37{bottom:411.586891px;}
.yaf{bottom:412.000860px;}
.y51{bottom:412.428425px;}
.ybd{bottom:414.525454px;}
.y1f{bottom:416.197895px;}
.yc{bottom:416.636105px;}
.y77{bottom:417.477639px;}
.y8c{bottom:417.891601px;}
.y45{bottom:418.319173px;}
.yc1{bottom:418.733134px;}
.y8{bottom:419.574668px;}
.y53{bottom:419.999281px;}
.y6f{bottom:420.416207px;}
.yc9{bottom:420.840815px;}
.y61{bottom:421.682349px;}
.y81{bottom:422.523883px;}
.yd6{bottom:424.206950px;}
.y14{bottom:425.462468px;}
.y97{bottom:426.731563px;}
.y41{bottom:427.573108px;}
.y72{bottom:428.414642px;}
.y49{bottom:429.256176px;}
.y9b{bottom:430.097709px;}
.ya5{bottom:430.511682px;}
.y26{bottom:435.988462px;}
.yd3{bottom:437.671536px;}
.y92{bottom:438.085502px;}
.ye0{bottom:438.513070px;}
.y9e{bottom:443.559329px;}
.yae{bottom:444.400865px;}
.ybc{bottom:446.925460px;}
.y1e{bottom:448.597896px;}
.y8b{bottom:450.291606px;}
.yc0{bottom:451.133140px;}
.y7{bottom:451.974674px;}
.y6e{bottom:452.816212px;}
.y13{bottom:457.862474px;}
.ya4{bottom:462.911688px;}
.y91{bottom:470.485508px;}
.y1d{bottom:480.997904px;}
.y1c{bottom:513.397909px;}
.h7{height:48.410158px;}
.h3{height:53.789063px;}
.h5{height:69.925786px;}
.h4{height:86.062505px;}
.h2{height:96.820316px;}
.h6{height:131.844660px;}
.h1{height:279.703145px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4{left:46.940947px;}
.x1{left:70.454654px;}
.x5{left:148.600400px;}
.x3{left:162.787055px;}
.x1c{left:250.768718px;}
.x24{left:283.582685px;}
.x16{left:304.618138px;}
.x1f{left:315.558078px;}
.x1e{left:319.765735px;}
.x1d{left:324.812002px;}
.x20{left:327.336625px;}
.x19{left:339.118121px;}
.x2{left:340.539885px;}
.x1a{left:342.484267px;}
.x18{left:355.945883px;}
.x17{left:360.995097px;}
.x1b{left:371.090577px;}
.x14{left:425.781509px;}
.x15{left:428.306099px;}
.xd{left:429.989189px;}
.xc{left:432.513801px;}
.x10{left:437.563027px;}
.xb{left:439.246083px;}
.x29{left:440.929139px;}
.x12{left:444.295297px;}
.x9{left:447.658484px;}
.x25{left:456.073845px;}
.x27{left:458.598435px;}
.xe{left:461.964570px;}
.x26{left:466.169302px;}
.xa{left:471.218528px;}
.x13{left:473.743118px;}
.x8{left:491.412436px;}
.x7{left:496.461638px;}
.x23{left:530.117117px;}
.x6{left:555.360239px;}
.x2a{left:690.826792px;}
.x11{left:694.192927px;}
.x28{left:704.291355px;}
.xf{left:714.386835px;}
.x22{left:727.006895px;}
.x21{left:738.788424px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:74.164002pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-76.821339pt;}
.ws2{word-spacing:-26.592001pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-20.522668pt;}
._3{margin-left:-9.386667pt;}
._2{margin-left:-7.104000pt;}
._0{margin-left:-4.992000pt;}
._5{margin-left:-3.552000pt;}
._6{margin-left:-2.016000pt;}
._4{width:159.147365pt;}
.fs5{font-size:48.000002pt;}
.fs2{font-size:53.333334pt;}
.fs4{font-size:69.333338pt;}
.fs3{font-size:85.333339pt;}
.fs1{font-size:96.000003pt;}
.fs0{font-size:277.333353pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:16.264893pt;}
.ybb{bottom:19.110943pt;}
.y6d{bottom:20.409943pt;}
.y8a{bottom:22.306873pt;}
.ydf{bottom:29.369940pt;}
.yba{bottom:33.510939pt;}
.y6c{bottom:36.409944pt;}
.yb4{bottom:41.864886pt;}
.y89{bottom:47.906866pt;}
.yb9{bottom:47.910940pt;}
.y6b{bottom:52.409944pt;}
.y6{bottom:58.169945pt;}
.yb8{bottom:62.310943pt;}
.yb3{bottom:67.464885pt;}
.y6a{bottom:68.409945pt;}
.y88{bottom:73.506865pt;}
.y69{bottom:84.409945pt;}
.y5c{bottom:114.132686pt;}
.yd2{bottom:114.880716pt;}
.y5b{bottom:142.932717pt;}
.yd1{bottom:143.680747pt;}
.yde{bottom:146.672867pt;}
.y2e{bottom:157.145322pt;}
.y36{bottom:162.407258pt;}
.yc8{bottom:170.607258pt;}
.y5a{bottom:171.732718pt;}
.yd0{bottom:172.480748pt;}
.y68{bottom:173.228778pt;}
.ydd{bottom:175.472868pt;}
.y1b{bottom:176.588888pt;}
.y2d{bottom:185.945323pt;}
.y35{bottom:191.207249pt;}
.y25{bottom:197.153689pt;}
.y12{bottom:197.543219pt;}
.y3{bottom:199.311929pt;}
.yc7{bottom:199.407259pt;}
.y59{bottom:200.532709pt;}
.ycf{bottom:201.280739pt;}
.y67{bottom:202.028769pt;}
.y87{bottom:202.776799pt;}
.ydc{bottom:204.272859pt;}
.y1a{bottom:205.388889pt;}
.y2c{bottom:214.745314pt;}
.ye6{bottom:216.989410pt;}
.y34{bottom:220.007230pt;}
.y24{bottom:225.953720pt;}
.y11{bottom:226.343200pt;}
.y7c{bottom:227.091230pt;}
.yc6{bottom:228.207250pt;}
.y58{bottom:229.332690pt;}
.yce{bottom:230.080720pt;}
.y66{bottom:230.828750pt;}
.y86{bottom:231.576780pt;}
.ydb{bottom:233.072840pt;}
.y19{bottom:234.188880pt;}
.yaa{bottom:238.677070pt;}
.y2b{bottom:243.545295pt;}
.y40{bottom:244.670761pt;}
.ye5{bottom:245.789391pt;}
.y33{bottom:248.807231pt;}
.ya3{bottom:250.274955pt;}
.y3b{bottom:250.655011pt;}
.y23{bottom:254.753721pt;}
.y10{bottom:255.143201pt;}
.y7b{bottom:255.891231pt;}
.y90{bottom:256.259201pt;}
.yc5{bottom:257.007231pt;}
.y57{bottom:258.132691pt;}
.ycd{bottom:258.880721pt;}
.y65{bottom:259.628751pt;}
.y85{bottom:260.376781pt;}
.yda{bottom:261.872841pt;}
.y18{bottom:262.988861pt;}
.y80{bottom:264.538981pt;}
.y76{bottom:265.613011pt;}
.y4d{bottom:266.361041pt;}
.ya9{bottom:267.477051pt;}
.y5{bottom:271.973331pt;}
.y2a{bottom:272.345295pt;}
.y3f{bottom:273.470751pt;}
.y96{bottom:274.209335pt;}
.y60{bottom:274.218781pt;}
.ye4{bottom:274.589392pt;}
.y32{bottom:277.607222pt;}
.ya2{bottom:279.074956pt;}
.y3a{bottom:279.455002pt;}
.yb2{bottom:279.822988pt;}
.y2{bottom:282.511922pt;}
.y22{bottom:283.553712pt;}
.yf{bottom:283.943192pt;}
.y7a{bottom:284.691222pt;}
.y8f{bottom:285.059202pt;}
.y48{bottom:285.439252pt;}
.yc4{bottom:285.807232pt;}
.yb{bottom:286.555262pt;}
.y56{bottom:286.932682pt;}
.ycc{bottom:287.680712pt;}
.y64{bottom:288.428742pt;}
.y84{bottom:289.176772pt;}
.yd9{bottom:290.672832pt;}
.y17{bottom:291.788862pt;}
.y9a{bottom:292.916932pt;}
.y7f{bottom:293.338982pt;}
.y44{bottom:293.664972pt;}
.y75{bottom:294.413002pt;}
.y4c{bottom:295.161032pt;}
.ya8{bottom:296.277052pt;}
.yb7{bottom:299.373632pt;}
.y29{bottom:301.145286pt;}
.y3e{bottom:302.270752pt;}
.y95{bottom:303.009336pt;}
.y5f{bottom:303.018782pt;}
.ye3{bottom:303.389382pt;}
.yad{bottom:306.010903pt;}
.y31{bottom:306.407223pt;}
.y50{bottom:307.506973pt;}
.ya1{bottom:307.874947pt;}
.y39{bottom:308.255003pt;}
.yb1{bottom:308.622979pt;}
.ybf{bottom:310.867063pt;}
.y21{bottom:312.353693pt;}
.ye{bottom:312.743193pt;}
.y79{bottom:313.491223pt;}
.y8e{bottom:313.859193pt;}
.y47{bottom:314.239253pt;}
.yc3{bottom:314.607223pt;}
.ya{bottom:315.355253pt;}
.y55{bottom:315.732683pt;}
.y71{bottom:316.103287pt;}
.ycb{bottom:316.480713pt;}
.y63{bottom:317.228743pt;}
.y83{bottom:317.976773pt;}
.yd8{bottom:319.472833pt;}
.yb6{bottom:320.173633pt;}
.y16{bottom:320.588853pt;}
.y99{bottom:321.716933pt;}
.y7e{bottom:322.138989pt;}
.y43{bottom:322.464973pt;}
.y74{bottom:323.213003pt;}
.y4b{bottom:323.961033pt;}
.y9d{bottom:324.709063pt;}
.ya7{bottom:325.077043pt;}
.y28{bottom:329.945287pt;}
.y3d{bottom:331.070759pt;}
.yd5{bottom:331.441353pt;}
.y94{bottom:331.809327pt;}
.y5e{bottom:331.818789pt;}
.ye2{bottom:332.189383pt;}
.yac{bottom:334.810909pt;}
.y30{bottom:335.207229pt;}
.y4f{bottom:336.306979pt;}
.ya0{bottom:336.674947pt;}
.y38{bottom:337.055010pt;}
.yb0{bottom:337.422980pt;}
.y52{bottom:337.803040pt;}
.ybe{bottom:339.667064pt;}
.y20{bottom:341.153694pt;}
.yd{bottom:341.543200pt;}
.y78{bottom:342.291230pt;}
.y8d{bottom:342.659194pt;}
.y46{bottom:343.039260pt;}
.yc2{bottom:343.407224pt;}
.y9{bottom:344.155254pt;}
.y54{bottom:344.532690pt;}
.y70{bottom:344.903288pt;}
.yca{bottom:345.280720pt;}
.y62{bottom:346.028750pt;}
.y82{bottom:346.776780pt;}
.yd7{bottom:348.272840pt;}
.y15{bottom:349.388854pt;}
.y98{bottom:350.516940pt;}
.y7d{bottom:350.938994pt;}
.y42{bottom:351.264980pt;}
.y73{bottom:352.013010pt;}
.y4a{bottom:352.761040pt;}
.y9c{bottom:353.509070pt;}
.ya6{bottom:353.877044pt;}
.y4{bottom:355.173324pt;}
.y27{bottom:358.745294pt;}
.y3c{bottom:359.870764pt;}
.yd4{bottom:360.241360pt;}
.y93{bottom:360.609328pt;}
.y5d{bottom:360.618794pt;}
.ye1{bottom:360.989390pt;}
.yab{bottom:363.610914pt;}
.y2f{bottom:364.007234pt;}
.y4e{bottom:365.106984pt;}
.y9f{bottom:365.474954pt;}
.y1{bottom:365.711909pt;}
.y37{bottom:365.855014pt;}
.yaf{bottom:366.222986pt;}
.y51{bottom:366.603044pt;}
.ybd{bottom:368.467071pt;}
.y1f{bottom:369.953685pt;}
.yc{bottom:370.343205pt;}
.y77{bottom:371.091235pt;}
.y8c{bottom:371.459201pt;}
.y45{bottom:371.839265pt;}
.yc1{bottom:372.207231pt;}
.y8{bottom:372.955261pt;}
.y53{bottom:373.332695pt;}
.y6f{bottom:373.703295pt;}
.yc9{bottom:374.080725pt;}
.y61{bottom:374.828755pt;}
.y81{bottom:375.576785pt;}
.yd6{bottom:377.072845pt;}
.y14{bottom:378.188861pt;}
.y97{bottom:379.316945pt;}
.y41{bottom:380.064985pt;}
.y72{bottom:380.813015pt;}
.y49{bottom:381.561045pt;}
.y9b{bottom:382.309075pt;}
.ya5{bottom:382.677051pt;}
.y26{bottom:387.545299pt;}
.yd3{bottom:389.041365pt;}
.y92{bottom:389.409335pt;}
.ye0{bottom:389.789395pt;}
.y9e{bottom:394.274959pt;}
.yae{bottom:395.022991pt;}
.ybc{bottom:397.267075pt;}
.y1e{bottom:398.753685pt;}
.y8b{bottom:400.259206pt;}
.yc0{bottom:401.007236pt;}
.y7{bottom:401.755266pt;}
.y6e{bottom:402.503300pt;}
.y13{bottom:406.988866pt;}
.ya4{bottom:411.477056pt;}
.y91{bottom:418.209340pt;}
.y1d{bottom:427.553692pt;}
.y1c{bottom:456.353697pt;}
.h7{height:43.031251pt;}
.h3{height:47.812500pt;}
.h5{height:62.156254pt;}
.h4{height:76.500005pt;}
.h2{height:86.062503pt;}
.h6{height:117.195254pt;}
.h1{height:248.625018pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:41.725286pt;}
.x1{left:62.626359pt;}
.x5{left:132.089244pt;}
.x3{left:144.699605pt;}
.x1c{left:222.905527pt;}
.x24{left:252.073498pt;}
.x16{left:270.771679pt;}
.x1f{left:280.496069pt;}
.x1e{left:284.236209pt;}
.x1d{left:288.721779pt;}
.x20{left:290.965889pt;}
.x19{left:301.438330pt;}
.x2{left:302.702120pt;}
.x1a{left:304.430460pt;}
.x18{left:316.396340pt;}
.x17{left:320.884530pt;}
.x1b{left:329.858291pt;}
.x14{left:378.472452pt;}
.x15{left:380.716532pt;}
.xd{left:382.212612pt;}
.xc{left:384.456712pt;}
.x10{left:388.944912pt;}
.xb{left:390.440962pt;}
.x29{left:391.937013pt;}
.x12{left:394.929153pt;}
.x9{left:397.918653pt;}
.x25{left:405.398973pt;}
.x27{left:407.643053pt;}
.xe{left:410.635173pt;}
.x26{left:414.372713pt;}
.xa{left:418.860913pt;}
.x13{left:421.104993pt;}
.x8{left:436.811054pt;}
.x7{left:441.299234pt;}
.x23{left:471.215215pt;}
.x6{left:493.653546pt;}
.x2a{left:614.068260pt;}
.x11{left:617.060380pt;}
.x28{left:626.036760pt;}
.xf{left:635.010520pt;}
.x22{left:646.228351pt;}
.x21{left:656.700821pt;}
}




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