
    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_899c798c71932035c55a0278.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_d2a9fddeb0f8a06179ac66cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_274948472e38a0b189b062b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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;}
.ls2{letter-spacing:0.002700px;}
.ls1{letter-spacing:49.067700px;}
.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;}
}
.ws15{word-spacing:-43.038600px;}
.wsc{word-spacing:-32.727300px;}
.ws0{word-spacing:-21.519300px;}
.ws8{word-spacing:-18.261833px;}
.ws12{word-spacing:-17.345469px;}
.ws11{word-spacing:-17.214560px;}
.ws9{word-spacing:-17.083651px;}
.ws13{word-spacing:-16.887287px;}
.ws4{word-spacing:-16.364510px;}
.ws1{word-spacing:-16.363650px;}
.ws7{word-spacing:-15.054558px;}
.ws10{word-spacing:-14.943900px;}
.wsa{word-spacing:-12.894556px;}
.ws2{word-spacing:-8.966400px;}
.ws6{word-spacing:-8.509098px;}
.ws5{word-spacing:-3.338185px;}
.wsb{word-spacing:-0.065455px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:16.298195px;}
.ws14{word-spacing:23.563656px;}
.wse{word-spacing:23.564953px;}
.wsf{word-spacing:23.565086px;}
._0{margin-left:-6.455790px;}
._1{margin-left:-5.164632px;}
._3{margin-left:-3.443088px;}
._5{margin-left:-2.398515px;}
._2{margin-left:-1.291158px;}
._4{width:1.721544px;}
._b{width:18.726297px;}
._1e{width:21.359329px;}
._1a{width:22.483117px;}
._6{width:23.629111px;}
._a{width:28.318537px;}
._f{width:72.343477px;}
._14{width:104.511272px;}
._16{width:237.838711px;}
._d{width:276.774835px;}
._c{width:286.418192px;}
._1d{width:301.342768px;}
._10{width:302.707801px;}
._1c{width:309.838429px;}
._11{width:311.760260px;}
._13{width:319.049936px;}
._e{width:357.928178px;}
._1b{width:386.554947px;}
._19{width:395.741030px;}
._18{width:404.487747px;}
._15{width:421.438864px;}
._9{width:431.606630px;}
._8{width:440.353347px;}
._20{width:480.921830px;}
._1f{width:489.668547px;}
._17{width:497.193142px;}
._12{width:559.744434px;}
._7{width:1151.926851px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y6{bottom:6.052500px;}
.y3a{bottom:45.229500px;}
.y49{bottom:49.770000px;}
.y48{bottom:67.702500px;}
.y39{bottom:70.036500px;}
.y5c{bottom:76.188000px;}
.y47{bottom:88.624500px;}
.y38{bottom:90.361500px;}
.y5b{bottom:96.511500px;}
.y78{bottom:98.058000px;}
.y2d{bottom:103.617000px;}
.y46{bottom:111.040500px;}
.yb{bottom:114.148500px;}
.y37{bottom:115.168500px;}
.y5{bottom:117.873000px;}
.y5a{bottom:121.318500px;}
.y77{bottom:122.865000px;}
.y2c{bottom:123.940500px;}
.y1f{bottom:126.465000px;}
.y45{bottom:128.973000px;}
.y50{bottom:129.156000px;}
.y18{bottom:132.841500px;}
.y36{bottom:135.492000px;}
.y59{bottom:141.643500px;}
.y2b{bottom:144.264000px;}
.y63{bottom:145.294500px;}
.y76{bottom:147.672000px;}
.y69{bottom:149.419500px;}
.y44{bottom:149.895000px;}
.y1e{bottom:151.272000px;}
.y17{bottom:153.165000px;}
.y4f{bottom:153.963000px;}
.y35{bottom:160.299000px;}
.y6f{bottom:161.491500px;}
.y10{bottom:161.614500px;}
.y58{bottom:161.967000px;}
.y2a{bottom:164.589000px;}
.y62{bottom:165.619500px;}
.ya{bottom:169.617000px;}
.y68{bottom:169.743000px;}
.y23{bottom:171.118500px;}
.y43{bottom:172.311000px;}
.y75{bottom:172.479000px;}
.y16{bottom:173.488500px;}
.y1d{bottom:176.079000px;}
.y4e{bottom:178.770000px;}
.y6e{bottom:179.424000px;}
.y57{bottom:182.290500px;}
.y29{bottom:184.912500px;}
.y34{bottom:185.106000px;}
.yf{bottom:186.421500px;}
.y42{bottom:190.243500px;}
.y61{bottom:190.426500px;}
.y4{bottom:191.638500px;}
.y15{bottom:193.812000px;}
.y67{bottom:194.550000px;}
.y22{bottom:195.925500px;}
.y74{bottom:197.286000px;}
.y6d{bottom:197.356500px;}
.y1c{bottom:200.886000px;}
.y56{bottom:202.614000px;}
.y4d{bottom:203.577000px;}
.y28{bottom:205.236000px;}
.ye{bottom:206.745000px;}
.y60{bottom:208.359000px;}
.y33{bottom:209.913000px;}
.y41{bottom:211.164000px;}
.y14{bottom:214.135500px;}
.y66{bottom:214.873500px;}
.y6c{bottom:215.289000px;}
.y21{bottom:220.732500px;}
.y3{bottom:220.929000px;}
.y73{bottom:222.093000px;}
.y9{bottom:225.085500px;}
.y27{bottom:225.559500px;}
.y1b{bottom:225.693000px;}
.y5f{bottom:226.291500px;}
.y55{bottom:227.421000px;}
.y4c{bottom:228.384000px;}
.yd{bottom:231.552000px;}
.y6b{bottom:233.221500px;}
.y40{bottom:233.580000px;}
.y13{bottom:234.460500px;}
.y32{bottom:234.720000px;}
.y65{bottom:239.680500px;}
.y72{bottom:242.416500px;}
.y5e{bottom:244.224000px;}
.y20{bottom:245.539500px;}
.y26{bottom:245.883000px;}
.y54{bottom:247.744500px;}
.y1a{bottom:250.500000px;}
.y3f{bottom:251.514000px;}
.yc{bottom:251.875500px;}
.y4b{bottom:253.191000px;}
.y6a{bottom:254.143500px;}
.y12{bottom:254.784000px;}
.y31{bottom:259.527000px;}
.y64{bottom:260.005500px;}
.y5d{bottom:265.146000px;}
.y25{bottom:266.208000px;}
.y71{bottom:267.223500px;}
.y53{bottom:268.069500px;}
.y3e{bottom:269.446500px;}
.y19{bottom:275.307000px;}
.y11{bottom:275.431500px;}
.y4a{bottom:277.998000px;}
.y8{bottom:280.554000px;}
.y2{bottom:280.776000px;}
.y30{bottom:284.334000px;}
.y3d{bottom:287.379000px;}
.y52{bottom:288.393000px;}
.y70{bottom:292.030500px;}
.y24{bottom:295.081500px;}
.y1{bottom:307.674000px;}
.y3c{bottom:308.301000px;}
.y51{bottom:308.716500px;}
.y2f{bottom:309.141000px;}
.y3b{bottom:330.717000px;}
.y2e{bottom:333.948000px;}
.y7{bottom:378.217500px;}
.h4{height:24.675533px;}
.h7{height:41.125613px;}
.h6{height:44.705492px;}
.h3{height:45.032765px;}
.h5{height:45.425492px;}
.h2{height:59.221114px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x6{left:10.311000px;}
.x7{left:12.756000px;}
.xa{left:16.363500px;}
.x8{left:20.209500px;}
.x1{left:39.943500px;}
.x9{left:49.090500px;}
.xb{left:81.819000px;}
.x4{left:137.797500px;}
.x3{left:216.325500px;}
.x5{left:225.538500px;}
.x2{left:243.430500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002400pt;}
.ls1{letter-spacing:43.615733pt;}
.ws15{word-spacing:-38.256533pt;}
.wsc{word-spacing:-29.090933pt;}
.ws0{word-spacing:-19.128267pt;}
.ws8{word-spacing:-16.232741pt;}
.ws12{word-spacing:-15.418195pt;}
.ws11{word-spacing:-15.301831pt;}
.ws9{word-spacing:-15.185467pt;}
.ws13{word-spacing:-15.010922pt;}
.ws4{word-spacing:-14.546231pt;}
.ws1{word-spacing:-14.545467pt;}
.ws7{word-spacing:-13.381829pt;}
.ws10{word-spacing:-13.283467pt;}
.wsa{word-spacing:-11.461828pt;}
.ws2{word-spacing:-7.970133pt;}
.ws6{word-spacing:-7.563643pt;}
.ws5{word-spacing:-2.967275pt;}
.wsb{word-spacing:-0.058182pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:14.487285pt;}
.ws14{word-spacing:20.945472pt;}
.wse{word-spacing:20.946625pt;}
.wsf{word-spacing:20.946743pt;}
._0{margin-left:-5.738480pt;}
._1{margin-left:-4.590784pt;}
._3{margin-left:-3.060523pt;}
._5{margin-left:-2.132013pt;}
._2{margin-left:-1.147696pt;}
._4{width:1.530261pt;}
._b{width:16.645597pt;}
._1e{width:18.986070pt;}
._1a{width:19.984993pt;}
._6{width:21.003654pt;}
._a{width:25.172033pt;}
._f{width:64.305313pt;}
._14{width:92.898908pt;}
._16{width:211.412188pt;}
._d{width:246.022076pt;}
._c{width:254.593948pt;}
._1d{width:267.860238pt;}
._10{width:269.073601pt;}
._1c{width:275.411937pt;}
._11{width:277.120231pt;}
._13{width:283.599943pt;}
._e{width:318.158380pt;}
._1b{width:343.604397pt;}
._19{width:351.769805pt;}
._18{width:359.544664pt;}
._15{width:374.612324pt;}
._9{width:383.650338pt;}
._8{width:391.425197pt;}
._20{width:427.486071pt;}
._1f{width:435.260931pt;}
._17{width:441.949459pt;}
._12{width:497.550608pt;}
._7{width:1023.934979pt;}
.fs2{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:5.380000pt;}
.y3a{bottom:40.204000pt;}
.y49{bottom:44.240000pt;}
.y48{bottom:60.180000pt;}
.y39{bottom:62.254667pt;}
.y5c{bottom:67.722667pt;}
.y47{bottom:78.777333pt;}
.y38{bottom:80.321333pt;}
.y5b{bottom:85.788000pt;}
.y78{bottom:87.162667pt;}
.y2d{bottom:92.104000pt;}
.y46{bottom:98.702667pt;}
.yb{bottom:101.465333pt;}
.y37{bottom:102.372000pt;}
.y5{bottom:104.776000pt;}
.y5a{bottom:107.838667pt;}
.y77{bottom:109.213333pt;}
.y2c{bottom:110.169333pt;}
.y1f{bottom:112.413333pt;}
.y45{bottom:114.642667pt;}
.y50{bottom:114.805333pt;}
.y18{bottom:118.081333pt;}
.y36{bottom:120.437333pt;}
.y59{bottom:125.905333pt;}
.y2b{bottom:128.234667pt;}
.y63{bottom:129.150667pt;}
.y76{bottom:131.264000pt;}
.y69{bottom:132.817333pt;}
.y44{bottom:133.240000pt;}
.y1e{bottom:134.464000pt;}
.y17{bottom:136.146667pt;}
.y4f{bottom:136.856000pt;}
.y35{bottom:142.488000pt;}
.y6f{bottom:143.548000pt;}
.y10{bottom:143.657333pt;}
.y58{bottom:143.970667pt;}
.y2a{bottom:146.301333pt;}
.y62{bottom:147.217333pt;}
.ya{bottom:150.770667pt;}
.y68{bottom:150.882667pt;}
.y23{bottom:152.105333pt;}
.y43{bottom:153.165333pt;}
.y75{bottom:153.314667pt;}
.y16{bottom:154.212000pt;}
.y1d{bottom:156.514667pt;}
.y4e{bottom:158.906667pt;}
.y6e{bottom:159.488000pt;}
.y57{bottom:162.036000pt;}
.y29{bottom:164.366667pt;}
.y34{bottom:164.538667pt;}
.yf{bottom:165.708000pt;}
.y42{bottom:169.105333pt;}
.y61{bottom:169.268000pt;}
.y4{bottom:170.345333pt;}
.y15{bottom:172.277333pt;}
.y67{bottom:172.933333pt;}
.y22{bottom:174.156000pt;}
.y74{bottom:175.365333pt;}
.y6d{bottom:175.428000pt;}
.y1c{bottom:178.565333pt;}
.y56{bottom:180.101333pt;}
.y4d{bottom:180.957333pt;}
.y28{bottom:182.432000pt;}
.ye{bottom:183.773333pt;}
.y60{bottom:185.208000pt;}
.y33{bottom:186.589333pt;}
.y41{bottom:187.701333pt;}
.y14{bottom:190.342667pt;}
.y66{bottom:190.998667pt;}
.y6c{bottom:191.368000pt;}
.y21{bottom:196.206667pt;}
.y3{bottom:196.381333pt;}
.y73{bottom:197.416000pt;}
.y9{bottom:200.076000pt;}
.y27{bottom:200.497333pt;}
.y1b{bottom:200.616000pt;}
.y5f{bottom:201.148000pt;}
.y55{bottom:202.152000pt;}
.y4c{bottom:203.008000pt;}
.yd{bottom:205.824000pt;}
.y6b{bottom:207.308000pt;}
.y40{bottom:207.626667pt;}
.y13{bottom:208.409333pt;}
.y32{bottom:208.640000pt;}
.y65{bottom:213.049333pt;}
.y72{bottom:215.481333pt;}
.y5e{bottom:217.088000pt;}
.y20{bottom:218.257333pt;}
.y26{bottom:218.562667pt;}
.y54{bottom:220.217333pt;}
.y1a{bottom:222.666667pt;}
.y3f{bottom:223.568000pt;}
.yc{bottom:223.889333pt;}
.y4b{bottom:225.058667pt;}
.y6a{bottom:225.905333pt;}
.y12{bottom:226.474667pt;}
.y31{bottom:230.690667pt;}
.y64{bottom:231.116000pt;}
.y5d{bottom:235.685333pt;}
.y25{bottom:236.629333pt;}
.y71{bottom:237.532000pt;}
.y53{bottom:238.284000pt;}
.y3e{bottom:239.508000pt;}
.y19{bottom:244.717333pt;}
.y11{bottom:244.828000pt;}
.y4a{bottom:247.109333pt;}
.y8{bottom:249.381333pt;}
.y2{bottom:249.578667pt;}
.y30{bottom:252.741333pt;}
.y3d{bottom:255.448000pt;}
.y52{bottom:256.349333pt;}
.y70{bottom:259.582667pt;}
.y24{bottom:262.294667pt;}
.y1{bottom:273.488000pt;}
.y3c{bottom:274.045333pt;}
.y51{bottom:274.414667pt;}
.y2f{bottom:274.792000pt;}
.y3b{bottom:293.970667pt;}
.y2e{bottom:296.842667pt;}
.y7{bottom:336.193333pt;}
.h4{height:21.933807pt;}
.h7{height:36.556100pt;}
.h6{height:39.738215pt;}
.h3{height:40.029124pt;}
.h5{height:40.378215pt;}
.h2{height:52.640990pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.165333pt;}
.x7{left:11.338667pt;}
.xa{left:14.545333pt;}
.x8{left:17.964000pt;}
.x1{left:35.505333pt;}
.x9{left:43.636000pt;}
.xb{left:72.728000pt;}
.x4{left:122.486667pt;}
.x3{left:192.289333pt;}
.x5{left:200.478667pt;}
.x2{left:216.382667pt;}
}




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