
    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_02bb5212dfbfa52236597cb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_ea454abdd061ccfee2498517.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_12429ccf59b0db273d2b3297.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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_6dba09cdf4b436364fbe0ced.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v1{vertical-align:-72.066843px;}
.v2{vertical-align:-58.554310px;}
.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:-22.525287px;}
.ws2{word-spacing:-18.295538px;}
.ws1{word-spacing:-17.519668px;}
.ws0{word-spacing:-13.335935px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-8.986360px;}
._2{margin-left:-7.442446px;}
._1{margin-left:-6.021675px;}
._0{margin-left:-4.504232px;}
.fc4{color:rgb(0,208,132);}
.fc2{color:rgb(128,0,128);}
.fc1{color:rgb(29,56,73);}
.fc3{color:rgb(69,69,69);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.999990px;}
.fs2{font-size:63.058488px;}
.fs3{font-size:65.851077px;}
.fs4{font-size:81.075198px;}
.fs1{font-size:188.815120px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.999999px;}
.y4{bottom:3.000006px;}
.y5c{bottom:11.260488px;}
.y3{bottom:22.380214px;}
.y39{bottom:30.403243px;}
.y34{bottom:38.285595px;}
.y5{bottom:42.663503px;}
.y12{bottom:42.663530px;}
.y5d{bottom:42.663546px;}
.y35{bottom:42.663550px;}
.y79{bottom:42.663870px;}
.y5b{bottom:43.915776px;}
.y38{bottom:63.058531px;}
.y33{bottom:70.940883px;}
.y5a{bottom:75.445020px;}
.y37{bottom:94.587775px;}
.y32{bottom:103.596171px;}
.y59{bottom:108.100308px;}
.y36{bottom:127.243063px;}
.y31{bottom:136.251460px;}
.y58{bottom:140.755596px;}
.y13{bottom:156.520259px;}
.y30{bottom:168.906748px;}
.y57{bottom:173.410884px;}
.y8b{bottom:186.923343px;}
.y2f{bottom:200.435992px;}
.y56{bottom:206.066172px;}
.y8a{bottom:219.578632px;}
.y2e{bottom:233.091280px;}
.y55{bottom:237.595416px;}
.y78{bottom:249.982032px;}
.y89{bottom:252.233920px;}
.y2d{bottom:265.746568px;}
.y54{bottom:270.250704px;}
.y77{bottom:282.637320px;}
.y88{bottom:283.763164px;}
.y2c{bottom:298.401856px;}
.y53{bottom:302.905993px;}
.y76{bottom:315.292609px;}
.y87{bottom:316.418452px;}
.y2b{bottom:331.057144px;}
.y52{bottom:335.561281px;}
.y75{bottom:347.947897px;}
.y86{bottom:349.073740px;}
.y2a{bottom:362.586388px;}
.y51{bottom:368.216569px;}
.y74{bottom:379.477141px;}
.y85{bottom:381.729028px;}
.y29{bottom:395.241676px;}
.y50{bottom:399.745813px;}
.y73{bottom:412.132429px;}
.y84{bottom:414.384317px;}
.y28{bottom:427.896965px;}
.y4f{bottom:432.401101px;}
.y72{bottom:444.787717px;}
.y83{bottom:445.913560px;}
.y27{bottom:460.552253px;}
.y71{bottom:477.443005px;}
.y4e{bottom:485.325189px;}
.y82{bottom:498.837648px;}
.y26{bottom:513.476341px;}
.y4d{bottom:517.980477px;}
.y70{bottom:530.367093px;}
.y81{bottom:531.492936px;}
.y25{bottom:545.005584px;}
.y4c{bottom:550.635765px;}
.y6f{bottom:561.896337px;}
.y80{bottom:564.148225px;}
.y24{bottom:577.660873px;}
.y4b{bottom:582.165009px;}
.y11{bottom:584.417105px;}
.y6e{bottom:594.551625px;}
.y7f{bottom:595.677468px;}
.y23{bottom:610.316161px;}
.y4a{bottom:614.820297px;}
.y6d{bottom:627.206913px;}
.y10{bottom:637.341193px;}
.y22{bottom:642.971449px;}
.y49{bottom:647.475586px;}
.y7e{bottom:648.601556px;}
.y6c{bottom:659.862201px;}
.yf{bottom:669.996481px;}
.y21{bottom:675.626737px;}
.y48{bottom:680.130874px;}
.y7d{bottom:681.256844px;}
.y6b{bottom:692.517490px;}
.ye{bottom:702.651770px;}
.y20{bottom:707.155981px;}
.y47{bottom:712.786162px;}
.y7c{bottom:713.912133px;}
.y6a{bottom:724.046733px;}
.yd{bottom:735.307058px;}
.y1f{bottom:739.811269px;}
.y46{bottom:744.315406px;}
.y7b{bottom:746.567421px;}
.y69{bottom:756.702022px;}
.yc{bottom:766.836302px;}
.y1e{bottom:772.466557px;}
.y45{bottom:776.970694px;}
.y7a{bottom:778.096665px;}
.y68{bottom:789.357310px;}
.yb{bottom:799.491590px;}
.y1d{bottom:805.121846px;}
.y44{bottom:809.625982px;}
.y67{bottom:822.012598px;}
.y43{bottom:842.281270px;}
.ya{bottom:852.415678px;}
.y66{bottom:854.667886px;}
.y1c{bottom:858.045933px;}
.y42{bottom:874.936559px;}
.y1b{bottom:889.575177px;}
.y41{bottom:906.465802px;}
.y65{bottom:906.465930px;}
.y1a{bottom:922.230465px;}
.y40{bottom:939.121091px;}
.y64{bottom:939.121218px;}
.y19{bottom:954.885754px;}
.y63{bottom:971.776506px;}
.y9{bottom:977.406608px;}
.y18{bottom:987.541042px;}
.y8c{bottom:988.667094px;}
.y3f{bottom:992.045178px;}
.y8{bottom:1010.061897px;}
.y17{bottom:1020.196330px;}
.y3e{bottom:1024.700467px;}
.y62{bottom:1024.700594px;}
.y16{bottom:1051.725574px;}
.y3d{bottom:1057.355755px;}
.y61{bottom:1057.355882px;}
.y7{bottom:1070.868295px;}
.y15{bottom:1084.380862px;}
.y3c{bottom:1088.884999px;}
.y60{bottom:1088.885126px;}
.y6{bottom:1117.036117px;}
.y14{bottom:1117.036150px;}
.y3b{bottom:1121.540287px;}
.y5f{bottom:1121.540414px;}
.y3a{bottom:1154.195575px;}
.y5e{bottom:1154.195702px;}
.y1{bottom:1226.879977px;}
.h2{height:13.499997px;}
.h4{height:13.499999px;}
.h3{height:34.968743px;}
.h7{height:45.939093px;}
.he{height:47.941385px;}
.h8{height:47.973539px;}
.hb{height:58.873693px;}
.hc{height:59.064549px;}
.ha{height:72.484711px;}
.h9{height:73.197286px;}
.h6{height:137.554765px;}
.h10{height:1176.716219px;}
.hd{height:1176.716363px;}
.h5{height:1176.716471px;}
.hf{height:1176.716543px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w5{width:61.440095px;}
.w2{width:121.499973px;}
.w3{width:770.939967px;}
.w6{width:808.499954px;}
.w4{width:830.999845px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:5.109361px;}
.x7{left:9.008355px;}
.x1{left:39.679679px;}
.x6{left:43.499996px;}
.x8{left:48.120805px;}
.xa{left:73.773504px;}
.x2{left:121.499973px;}
.x10{left:169.082608px;}
.x9{left:198.183818px;}
.x3{left:237.703079px;}
.xb{left:403.123903px;}
.xe{left:613.500676px;}
.xf{left:625.394520px;}
.xd{left:640.490553px;}
.xc{left:675.257175px;}
.x4{left:830.999845px;}
@media print{
.v1{vertical-align:-64.059416pt;}
.v2{vertical-align:-52.048275pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-20.022477pt;}
.ws2{word-spacing:-16.262701pt;}
.ws1{word-spacing:-15.573038pt;}
.ws0{word-spacing:-11.854164pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-7.987876pt;}
._2{margin-left:-6.615507pt;}
._1{margin-left:-5.352600pt;}
._0{margin-left:-4.003762pt;}
.fs0{font-size:42.666658pt;}
.fs2{font-size:56.051989pt;}
.fs3{font-size:58.534291pt;}
.fs4{font-size:72.066843pt;}
.fs1{font-size:167.835662pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.666666pt;}
.y4{bottom:2.666672pt;}
.y5c{bottom:10.009322pt;}
.y3{bottom:19.893523pt;}
.y39{bottom:27.025105pt;}
.y34{bottom:34.031640pt;}
.y5{bottom:37.923114pt;}
.y12{bottom:37.923138pt;}
.y5d{bottom:37.923152pt;}
.y35{bottom:37.923156pt;}
.y79{bottom:37.923440pt;}
.y5b{bottom:39.036245pt;}
.y38{bottom:56.052028pt;}
.y33{bottom:63.058563pt;}
.y5a{bottom:67.062240pt;}
.y37{bottom:84.078022pt;}
.y32{bottom:92.085486pt;}
.y59{bottom:96.089162pt;}
.y36{bottom:113.104945pt;}
.y31{bottom:121.112408pt;}
.y58{bottom:125.116085pt;}
.y13{bottom:139.129119pt;}
.y30{bottom:150.139331pt;}
.y57{bottom:154.143008pt;}
.y8b{bottom:166.154083pt;}
.y2f{bottom:178.165326pt;}
.y56{bottom:183.169931pt;}
.y8a{bottom:195.181006pt;}
.y2e{bottom:207.192249pt;}
.y55{bottom:211.195926pt;}
.y78{bottom:222.206251pt;}
.y89{bottom:224.207929pt;}
.y2d{bottom:236.219172pt;}
.y54{bottom:240.222848pt;}
.y77{bottom:251.233174pt;}
.y88{bottom:252.233923pt;}
.y2c{bottom:265.246094pt;}
.y53{bottom:269.249771pt;}
.y76{bottom:280.260096pt;}
.y87{bottom:281.260846pt;}
.y2b{bottom:294.273017pt;}
.y52{bottom:298.276694pt;}
.y75{bottom:309.287019pt;}
.y86{bottom:310.287769pt;}
.y2a{bottom:322.299012pt;}
.y51{bottom:327.303617pt;}
.y74{bottom:337.313014pt;}
.y85{bottom:339.314692pt;}
.y29{bottom:351.325935pt;}
.y50{bottom:355.329611pt;}
.y73{bottom:366.339937pt;}
.y84{bottom:368.341615pt;}
.y28{bottom:380.352857pt;}
.y4f{bottom:384.356534pt;}
.y72{bottom:395.366860pt;}
.y83{bottom:396.367609pt;}
.y27{bottom:409.379780pt;}
.y71{bottom:424.393782pt;}
.y4e{bottom:431.400168pt;}
.y82{bottom:443.411243pt;}
.y26{bottom:456.423414pt;}
.y4d{bottom:460.427091pt;}
.y70{bottom:471.437416pt;}
.y81{bottom:472.438166pt;}
.y25{bottom:484.449408pt;}
.y4c{bottom:489.454014pt;}
.y6f{bottom:499.463410pt;}
.y80{bottom:501.465088pt;}
.y24{bottom:513.476331pt;}
.y4b{bottom:517.480008pt;}
.y11{bottom:519.481872pt;}
.y6e{bottom:528.490333pt;}
.y7f{bottom:529.491083pt;}
.y23{bottom:542.503254pt;}
.y4a{bottom:546.506931pt;}
.y6d{bottom:557.517256pt;}
.y10{bottom:566.525505pt;}
.y22{bottom:571.530177pt;}
.y49{bottom:575.533854pt;}
.y7e{bottom:576.534717pt;}
.y6c{bottom:586.544179pt;}
.yf{bottom:595.552428pt;}
.y21{bottom:600.557100pt;}
.y48{bottom:604.560777pt;}
.y7d{bottom:605.561639pt;}
.y6b{bottom:615.571102pt;}
.ye{bottom:624.579351pt;}
.y20{bottom:628.583094pt;}
.y47{bottom:633.587699pt;}
.y7c{bottom:634.588562pt;}
.y6a{bottom:643.597096pt;}
.yd{bottom:653.606274pt;}
.y1f{bottom:657.610017pt;}
.y46{bottom:661.613694pt;}
.y7b{bottom:663.615485pt;}
.y69{bottom:672.624019pt;}
.yc{bottom:681.632268pt;}
.y1e{bottom:686.636940pt;}
.y45{bottom:690.640617pt;}
.y7a{bottom:691.641480pt;}
.y68{bottom:701.650942pt;}
.yb{bottom:710.659191pt;}
.y1d{bottom:715.663863pt;}
.y44{bottom:719.667540pt;}
.y67{bottom:730.677865pt;}
.y43{bottom:748.694463pt;}
.ya{bottom:757.702825pt;}
.y66{bottom:759.704788pt;}
.y1c{bottom:762.707496pt;}
.y42{bottom:777.721385pt;}
.y1b{bottom:790.733491pt;}
.y41{bottom:805.747380pt;}
.y65{bottom:805.747493pt;}
.y1a{bottom:819.760414pt;}
.y40{bottom:834.774303pt;}
.y64{bottom:834.774416pt;}
.y19{bottom:848.787337pt;}
.y63{bottom:863.801339pt;}
.y9{bottom:868.805874pt;}
.y18{bottom:877.814259pt;}
.y8c{bottom:878.815195pt;}
.y3f{bottom:881.817936pt;}
.y8{bottom:897.832797pt;}
.y17{bottom:906.841182pt;}
.y3e{bottom:910.844859pt;}
.y62{bottom:910.844972pt;}
.y16{bottom:934.867177pt;}
.y3d{bottom:939.871782pt;}
.y61{bottom:939.871895pt;}
.y7{bottom:951.882929pt;}
.y15{bottom:963.894100pt;}
.y3c{bottom:967.897777pt;}
.y60{bottom:967.897890pt;}
.y6{bottom:992.920993pt;}
.y14{bottom:992.921023pt;}
.y3b{bottom:996.924699pt;}
.y5f{bottom:996.924812pt;}
.y3a{bottom:1025.951622pt;}
.y5e{bottom:1025.951735pt;}
.y1{bottom:1090.559980pt;}
.h2{height:11.999997pt;}
.h4{height:11.999999pt;}
.h3{height:31.083327pt;}
.h7{height:40.834750pt;}
.he{height:42.614564pt;}
.h8{height:42.643146pt;}
.hb{height:52.332171pt;}
.hc{height:52.501821pt;}
.ha{height:64.430854pt;}
.h9{height:65.064254pt;}
.h6{height:122.270902pt;}
.h10{height:1045.969972pt;}
.hd{height:1045.970100pt;}
.h5{height:1045.970196pt;}
.hf{height:1045.970260pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w5{width:54.613417pt;}
.w2{width:107.999976pt;}
.w3{width:685.279970pt;}
.w6{width:718.666626pt;}
.w4{width:738.666529pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:4.541654pt;}
.x7{left:8.007427pt;}
.x1{left:35.270826pt;}
.x6{left:38.666663pt;}
.x8{left:42.774048pt;}
.xa{left:65.576448pt;}
.x2{left:107.999976pt;}
.x10{left:150.295651pt;}
.x9{left:176.163394pt;}
.x3{left:211.291626pt;}
.xb{left:358.332358pt;}
.xe{left:545.333934pt;}
.xf{left:555.906240pt;}
.xd{left:569.324936pt;}
.xc{left:600.228600pt;}
.x4{left:738.666529pt;}
}




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