
    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_6c6776a6f5ea296fa948e672.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_6b13aed03f3bd67f5ab94a44.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_995503c5bdb8b4e3d3697ab9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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;}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010641px;}
.ls2{letter-spacing:0.021282px;}
.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;}
}
.ws4{word-spacing:-18.021275px;}
.ws3{word-spacing:-17.999993px;}
.ws5{word-spacing:-13.499995px;}
.ws0{word-spacing:-12.059995px;}
.ws2{word-spacing:-9.719996px;}
.ws6{word-spacing:-8.999996px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.417853px;}
._0{width:1.276660px;}
._5{width:2.517046px;}
._2{width:4.464315px;}
._3{width:6.019743px;}
._e{width:7.088490px;}
._9{width:8.475043px;}
._4{width:9.869796px;}
._6{width:11.602240px;}
._7{width:12.708208px;}
._b{width:14.641617px;}
._1a{width:15.677265px;}
._d{width:16.705600px;}
._8{width:19.210538px;}
._c{width:20.456518px;}
._10{width:21.906797px;}
._a{width:23.302797px;}
._1c{width:24.456596px;}
._1b{width:26.165583px;}
._18{width:27.291186px;}
._17{width:29.301051px;}
._f{width:30.442098px;}
._19{width:33.050911px;}
._13{width:35.273635px;}
._14{width:36.302458px;}
._12{width:40.190110px;}
._11{width:41.379595px;}
._15{width:42.959767px;}
._16{width:44.167952px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.999986px;}
.fs2{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs4{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y4a{bottom:109.739956px;}
.y51{bottom:109.740256px;}
.y40{bottom:110.100256px;}
.y5a{bottom:114.240254px;}
.y49{bottom:125.219950px;}
.y50{bottom:125.220250px;}
.y59{bottom:125.760250px;}
.y21{bottom:126.299949px;}
.y3f{bottom:127.380249px;}
.y4f{bottom:129.720248px;}
.y58{bottom:130.980248px;}
.y48{bottom:140.699944px;}
.y4e{bottom:140.700244px;}
.y57{bottom:142.860243px;}
.y3e{bottom:144.660242px;}
.y4d{bottom:145.200242px;}
.y41{bottom:146.999941px;}
.y56{bottom:148.080241px;}
.y3d{bottom:149.880240px;}
.y47{bottom:156.359937px;}
.y55{bottom:160.859936px;}
.y3c{bottom:162.659935px;}
.y20{bottom:167.699933px;}
.y46{bottom:171.839931px;}
.y54{bottom:176.339929px;}
.y6d{bottom:187.319925px;}
.y3b{bottom:188.399925px;}
.y45{bottom:188.579925px;}
.y6c{bottom:191.819923px;}
.y6b{bottom:204.059918px;}
.y1f{bottom:209.099916px;}
.y6a{bottom:229.619908px;}
.y3a{bottom:229.799908px;}
.y1e{bottom:250.499900px;}
.y69{bottom:260.579896px;}
.y39{bottom:271.199892px;}
.y68{bottom:291.719883px;}
.y1d{bottom:291.899883px;}
.y38{bottom:312.599875px;}
.y67{bottom:322.679871px;}
.y1c{bottom:333.299867px;}
.y66{bottom:353.819858px;}
.y37{bottom:353.999858px;}
.y44{bottom:360.839856px;}
.y1b{bottom:374.699850px;}
.y65{bottom:384.779846px;}
.y36{bottom:395.399842px;}
.y53{bottom:402.239839px;}
.y64{bottom:415.919834px;}
.y1a{bottom:416.099834px;}
.y35{bottom:436.799825px;}
.y43{bottom:443.639823px;}
.y63{bottom:446.879821px;}
.y19{bottom:457.499817px;}
.y62{bottom:478.019809px;}
.y34{bottom:478.199809px;}
.y18{bottom:488.279805px;}
.y61{bottom:508.979796px;}
.y17{bottom:519.419792px;}
.y32{bottom:519.599792px;}
.y33{bottom:526.439789px;}
.y5f{bottom:540.119784px;}
.y60{bottom:546.959781px;}
.y16{bottom:550.379780px;}
.y30{bottom:560.999776px;}
.y31{bottom:567.839773px;}
.y5e{bottom:571.079772px;}
.y15{bottom:581.519767px;}
.y5d{bottom:602.219759px;}
.y2f{bottom:602.399759px;}
.y14{bottom:612.479755px;}
.y13{bottom:643.619743px;}
.y2e{bottom:643.799742px;}
.y4c{bottom:650.639740px;}
.y12{bottom:674.579730px;}
.y2d{bottom:685.199726px;}
.y11{bottom:705.719718px;}
.y2c{bottom:726.599709px;}
.y10{bottom:736.679705px;}
.yf{bottom:767.819693px;}
.y2b{bottom:767.999693px;}
.y5c{bottom:774.839690px;}
.ye{bottom:798.779680px;}
.y2a{bottom:809.399676px;}
.yd{bottom:829.919668px;}
.y29{bottom:850.799660px;}
.yc{bottom:860.879656px;}
.yb{bottom:892.019643px;}
.y28{bottom:892.199643px;}
.ya{bottom:922.979631px;}
.y27{bottom:933.599627px;}
.y42{bottom:940.439624px;}
.y9{bottom:954.119618px;}
.y26{bottom:974.999610px;}
.y5b{bottom:981.839607px;}
.y8{bottom:985.079606px;}
.y6{bottom:1016.219594px;}
.y25{bottom:1016.399593px;}
.y7{bottom:1023.059591px;}
.y52{bottom:1023.239591px;}
.y4{bottom:1046.819581px;}
.y70{bottom:1047.359581px;}
.y5{bottom:1052.759579px;}
.y24{bottom:1057.799577px;}
.y3{bottom:1077.959569px;}
.y6f{bottom:1078.319569px;}
.y23{bottom:1099.199560px;}
.y2{bottom:1108.919556px;}
.y6e{bottom:1109.279556px;}
.y1{bottom:1140.419544px;}
.y22{bottom:1140.599544px;}
.y4b{bottom:1147.439541px;}
.h8{height:35.332017px;}
.h5{height:38.158578px;}
.h4{height:47.344903px;}
.h3{height:48.616856px;}
.h7{height:52.998026px;}
.h6{height:58.651148px;}
.h1{height:70.664034px;}
.h2{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:106.199563px;}
.x20{left:110.699956px;}
.x31{left:115.919954px;}
.x32{left:119.699952px;}
.x11{left:148.679941px;}
.x1{left:159.299936px;}
.x16{left:165.959934px;}
.x17{left:167.219406px;}
.xd{left:169.019932px;}
.xe{left:201.960235px;}
.x14{left:211.139916px;}
.x8{left:212.399918px;}
.x15{left:217.259913px;}
.x1c{left:235.259906px;}
.x1d{left:241.379903px;}
.x1a{left:315.539874px;}
.x1b{left:325.079870px;}
.x9{left:395.459842px;}
.xf{left:399.059840px;}
.x35{left:403.019839px;}
.xa{left:404.999838px;}
.x10{left:408.599837px;}
.x36{left:415.259834px;}
.x12{left:425.159830px;}
.x23{left:429.299828px;}
.x13{left:431.279827px;}
.x24{left:435.419826px;}
.xb{left:442.439823px;}
.x2f{left:444.599822px;}
.xc{left:448.559821px;}
.x30{left:456.839817px;}
.x1e{left:483.839806px;}
.x2{left:487.799805px;}
.x1f{left:489.959804px;}
.x3{left:498.419801px;}
.x6{left:530.999113px;}
.x4{left:538.559785px;}
.x5{left:548.099781px;}
.x18{left:559.619776px;}
.x19{left:565.739774px;}
.x2b{left:595.259762px;}
.x2c{left:604.799758px;}
.x33{left:616.679753px;}
.x2d{left:669.419732px;}
.x21{left:679.139728px;}
.x2e{left:681.659727px;}
.x22{left:685.259726px;}
.x27{left:689.399724px;}
.x37{left:690.479724px;}
.x28{left:695.519722px;}
.x29{left:711.899715px;}
.x2a{left:724.139710px;}
.x34{left:731.879707px;}
.x25{left:734.759706px;}
.x26{left:744.119702px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009459pt;}
.ls2{letter-spacing:0.018917pt;}
.ws4{word-spacing:-16.018911pt;}
.ws3{word-spacing:-15.999994pt;}
.ws5{word-spacing:-11.999995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws2{word-spacing:-8.639997pt;}
.ws6{word-spacing:-7.999997pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.260313pt;}
._0{width:1.134809pt;}
._5{width:2.237374pt;}
._2{width:3.968280pt;}
._3{width:5.350883pt;}
._e{width:6.300880pt;}
._9{width:7.533371pt;}
._4{width:8.773152pt;}
._6{width:10.313102pt;}
._7{width:11.296185pt;}
._b{width:13.014770pt;}
._1a{width:13.935346pt;}
._d{width:14.849422pt;}
._8{width:17.076034pt;}
._c{width:18.183572pt;}
._10{width:19.472709pt;}
._a{width:20.713598pt;}
._1c{width:21.739197pt;}
._1b{width:23.258296pt;}
._18{width:24.258832pt;}
._17{width:26.045379pt;}
._f{width:27.059643pt;}
._19{width:29.378588pt;}
._13{width:31.354342pt;}
._14{width:32.268852pt;}
._12{width:35.724542pt;}
._11{width:36.781862pt;}
._15{width:38.186459pt;}
._16{width:39.260402pt;}
.fs5{font-size:31.999987pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs4{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:97.546628pt;}
.y51{bottom:97.546894pt;}
.y40{bottom:97.866894pt;}
.y5a{bottom:101.546893pt;}
.y49{bottom:111.306622pt;}
.y50{bottom:111.306889pt;}
.y59{bottom:111.786889pt;}
.y21{bottom:112.266622pt;}
.y3f{bottom:113.226888pt;}
.y4f{bottom:115.306887pt;}
.y58{bottom:116.426887pt;}
.y48{bottom:125.066617pt;}
.y4e{bottom:125.066883pt;}
.y57{bottom:126.986883pt;}
.y3e{bottom:128.586882pt;}
.y4d{bottom:129.066882pt;}
.y41{bottom:130.666614pt;}
.y56{bottom:131.626881pt;}
.y3d{bottom:133.226880pt;}
.y47{bottom:138.986611pt;}
.y55{bottom:142.986609pt;}
.y3c{bottom:144.586609pt;}
.y20{bottom:149.066607pt;}
.y46{bottom:152.746606pt;}
.y54{bottom:156.746604pt;}
.y6d{bottom:166.506600pt;}
.y3b{bottom:167.466600pt;}
.y45{bottom:167.626600pt;}
.y6c{bottom:170.506598pt;}
.y6b{bottom:181.386594pt;}
.y1f{bottom:185.866592pt;}
.y6a{bottom:204.106585pt;}
.y3a{bottom:204.266585pt;}
.y1e{bottom:222.666578pt;}
.y69{bottom:231.626574pt;}
.y39{bottom:241.066570pt;}
.y68{bottom:259.306563pt;}
.y1d{bottom:259.466563pt;}
.y38{bottom:277.866556pt;}
.y67{bottom:286.826552pt;}
.y1c{bottom:296.266548pt;}
.y66{bottom:314.506541pt;}
.y37{bottom:314.666541pt;}
.y44{bottom:320.746538pt;}
.y1b{bottom:333.066533pt;}
.y65{bottom:342.026530pt;}
.y36{bottom:351.466526pt;}
.y53{bottom:357.546524pt;}
.y64{bottom:369.706519pt;}
.y1a{bottom:369.866519pt;}
.y35{bottom:388.266511pt;}
.y43{bottom:394.346509pt;}
.y63{bottom:397.226508pt;}
.y19{bottom:406.666504pt;}
.y62{bottom:424.906497pt;}
.y34{bottom:425.066497pt;}
.y18{bottom:434.026493pt;}
.y61{bottom:452.426486pt;}
.y17{bottom:461.706482pt;}
.y32{bottom:461.866482pt;}
.y33{bottom:467.946479pt;}
.y5f{bottom:480.106475pt;}
.y60{bottom:486.186472pt;}
.y16{bottom:489.226471pt;}
.y30{bottom:498.666467pt;}
.y31{bottom:504.746465pt;}
.y5e{bottom:507.626464pt;}
.y15{bottom:516.906460pt;}
.y5d{bottom:535.306453pt;}
.y2f{bottom:535.466452pt;}
.y14{bottom:544.426449pt;}
.y13{bottom:572.106438pt;}
.y2e{bottom:572.266438pt;}
.y4c{bottom:578.346435pt;}
.y12{bottom:599.626427pt;}
.y2d{bottom:609.066423pt;}
.y11{bottom:627.306416pt;}
.y2c{bottom:645.866408pt;}
.y10{bottom:654.826405pt;}
.yf{bottom:682.506394pt;}
.y2b{bottom:682.666394pt;}
.y5c{bottom:688.746391pt;}
.ye{bottom:710.026383pt;}
.y2a{bottom:719.466379pt;}
.yd{bottom:737.706372pt;}
.y29{bottom:756.266364pt;}
.yc{bottom:765.226361pt;}
.yb{bottom:792.906350pt;}
.y28{bottom:793.066349pt;}
.ya{bottom:820.426338pt;}
.y27{bottom:829.866335pt;}
.y42{bottom:835.946332pt;}
.y9{bottom:848.106327pt;}
.y26{bottom:866.666320pt;}
.y5b{bottom:872.746318pt;}
.y8{bottom:875.626316pt;}
.y6{bottom:903.306305pt;}
.y25{bottom:903.466305pt;}
.y7{bottom:909.386303pt;}
.y52{bottom:909.546303pt;}
.y4{bottom:930.506294pt;}
.y70{bottom:930.986294pt;}
.y5{bottom:935.786292pt;}
.y24{bottom:940.266291pt;}
.y3{bottom:958.186283pt;}
.y6f{bottom:958.506283pt;}
.y23{bottom:977.066276pt;}
.y2{bottom:985.706272pt;}
.y6e{bottom:986.026272pt;}
.y1{bottom:1013.706261pt;}
.y22{bottom:1013.866261pt;}
.y4b{bottom:1019.946259pt;}
.h8{height:31.406237pt;}
.h5{height:33.918736pt;}
.h4{height:42.084358pt;}
.h3{height:43.214983pt;}
.h7{height:47.109356pt;}
.h6{height:52.134354pt;}
.h1{height:62.812475pt;}
.h2{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:94.399611pt;}
.x20{left:98.399961pt;}
.x31{left:103.039959pt;}
.x32{left:106.399957pt;}
.x11{left:132.159947pt;}
.x1{left:141.599943pt;}
.x16{left:147.519941pt;}
.x17{left:148.639472pt;}
.xd{left:150.239940pt;}
.xe{left:179.520209pt;}
.x14{left:187.679925pt;}
.x8{left:188.799927pt;}
.x15{left:193.119923pt;}
.x1c{left:209.119916pt;}
.x1d{left:214.559914pt;}
.x1a{left:280.479888pt;}
.x1b{left:288.959884pt;}
.x9{left:351.519859pt;}
.xf{left:354.719858pt;}
.x35{left:358.239857pt;}
.xa{left:359.999856pt;}
.x10{left:363.199855pt;}
.x36{left:369.119852pt;}
.x12{left:377.919849pt;}
.x23{left:381.599847pt;}
.x13{left:383.359847pt;}
.x24{left:387.039845pt;}
.xb{left:393.279843pt;}
.x2f{left:395.199842pt;}
.xc{left:398.719841pt;}
.x30{left:406.079838pt;}
.x1e{left:430.079828pt;}
.x2{left:433.599827pt;}
.x1f{left:435.519826pt;}
.x3{left:443.039823pt;}
.x6{left:471.999212pt;}
.x4{left:478.719809pt;}
.x5{left:487.199805pt;}
.x18{left:497.439801pt;}
.x19{left:502.879799pt;}
.x2b{left:529.119788pt;}
.x2c{left:537.599785pt;}
.x33{left:548.159781pt;}
.x2d{left:595.039762pt;}
.x21{left:603.679759pt;}
.x2e{left:605.919758pt;}
.x22{left:609.119756pt;}
.x27{left:612.799755pt;}
.x37{left:613.759754pt;}
.x28{left:618.239753pt;}
.x29{left:632.799747pt;}
.x2a{left:643.679743pt;}
.x34{left:650.559740pt;}
.x25{left:653.119739pt;}
.x26{left:661.439735pt;}
}




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