
    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_74db28f21b64879f2f45e578.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_3d5804f4b510020da07f0426.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_b7663e733e276ab479b6f674.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_ccede2b36d09e7c26f3c028b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_534e9787d3d2e8c3f904421c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-73.223725px;}
.ws3{word-spacing:-70.168700px;}
.ws0{word-spacing:-69.379963px;}
.ws2{word-spacing:-69.373199px;}
.ws5{word-spacing:-59.923648px;}
.ws4{word-spacing:-41.072696px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:644.764551px;}
._2{margin-left:-13.919482px;}
._3{margin-left:-12.915416px;}
._1{margin-left:-6.851846px;}
._0{margin-left:-5.802495px;}
._4{margin-left:-2.697687px;}
._5{margin-left:-1.007256px;}
._6{width:13.653703px;}
._11{width:17.282059px;}
._10{width:31.779225px;}
._f{width:65.121828px;}
._7{width:77.209071px;}
._8{width:108.068037px;}
._c{width:146.433509px;}
._e{width:264.488206px;}
._a{width:1101.931090px;}
._b{width:1128.477276px;}
._d{width:1240.877453px;}
._9{width:1434.070422px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,151,178);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(14,14,14);}
.fs9{font-size:124.346613px;}
.fs7{font-size:199.745495px;}
.fsa{font-size:201.178306px;}
.fs8{font-size:207.259473px;}
.fs6{font-size:211.714926px;}
.fs4{font-size:219.624157px;}
.fs2{font-size:231.243997px;}
.fs0{font-size:231.266542px;}
.fsb{font-size:237.302354px;}
.fs5{font-size:361.694330px;}
.fs3{font-size:371.352055px;}
.fs1{font-size:377.441880px;}
.y0{bottom:0.000000px;}
.y11{bottom:0.000097px;}
.y3b{bottom:12.663534px;}
.y55{bottom:13.741047px;}
.y23{bottom:13.937180px;}
.y51{bottom:14.814989px;}
.y44{bottom:14.965242px;}
.ye{bottom:15.106039px;}
.y25{bottom:21.712524px;}
.y20{bottom:21.836328px;}
.y10{bottom:22.702557px;}
.y53{bottom:22.763641px;}
.y63{bottom:22.971239px;}
.y1d{bottom:23.012899px;}
.y50{bottom:79.484304px;}
.y3a{bottom:84.140145px;}
.yd{bottom:85.448101px;}
.y43{bottom:86.441853px;}
.y22{bottom:90.417529px;}
.y32{bottom:105.908595px;}
.y1f{bottom:120.005134px;}
.y4f{bottom:144.153619px;}
.yc{bottom:155.790162px;}
.y39{bottom:156.751306px;}
.y42{bottom:157.918464px;}
.y31{bottom:170.030545px;}
.y4e{bottom:208.822934px;}
.y38{bottom:225.958818px;}
.yb{bottom:226.132224px;}
.y41{bottom:229.395076px;}
.y30{bottom:234.152495px;}
.y4d{bottom:273.492249px;}
.ya{bottom:296.474286px;}
.y37{bottom:297.435430px;}
.y2f{bottom:298.274445px;}
.y40{bottom:300.871687px;}
.y4c{bottom:338.161564px;}
.y2e{bottom:362.396395px;}
.y9{bottom:366.816348px;}
.y36{bottom:368.912041px;}
.y3f{bottom:372.348298px;}
.y4b{bottom:402.830879px;}
.y34{bottom:423.370411px;}
.y2d{bottom:426.518345px;}
.y8{bottom:437.158410px;}
.y3e{bottom:443.824909px;}
.y35{bottom:446.061399px;}
.y4a{bottom:467.500194px;}
.y2c{bottom:490.640295px;}
.y7{bottom:507.500472px;}
.y3d{bottom:515.301521px;}
.y49{bottom:532.169509px;}
.y2b{bottom:554.762246px;}
.y6{bottom:577.842534px;}
.y48{bottom:596.838824px;}
.y2a{bottom:618.884196px;}
.y5{bottom:648.184595px;}
.y47{bottom:661.508139px;}
.y29{bottom:683.006146px;}
.y4{bottom:718.526657px;}
.y46{bottom:726.177454px;}
.y28{bottom:747.128096px;}
.y3{bottom:788.868719px;}
.y27{bottom:811.250046px;}
.y2{bottom:859.210781px;}
.y26{bottom:875.371996px;}
.y61{bottom:1021.437524px;}
.y60{bottom:1086.684421px;}
.y5f{bottom:1151.931317px;}
.y5e{bottom:1217.178214px;}
.y5d{bottom:1282.425110px;}
.y5c{bottom:1347.672007px;}
.y5b{bottom:1412.918904px;}
.y5a{bottom:1478.165800px;}
.y59{bottom:1543.412697px;}
.y58{bottom:1608.659593px;}
.y57{bottom:1673.906490px;}
.y56{bottom:1739.153387px;}
.y62{bottom:1834.425020px;}
.y54{bottom:1996.065013px;}
.y21{bottom:4045.904928px;}
.y45{bottom:4229.144920px;}
.y52{bottom:5044.184886px;}
.y1b{bottom:5242.968462px;}
.y1a{bottom:5312.715145px;}
.y19{bottom:5382.461827px;}
.y18{bottom:5452.208510px;}
.y17{bottom:5521.955193px;}
.y16{bottom:5591.701875px;}
.y15{bottom:5661.448558px;}
.y14{bottom:5731.195240px;}
.y13{bottom:5800.941923px;}
.y12{bottom:5870.688605px;}
.y1c{bottom:5960.384848px;}
.y1{bottom:6127.424841px;}
.y3c{bottom:6264.584836px;}
.y24{bottom:6901.064809px;}
.yf{bottom:7091.504801px;}
.y33{bottom:7284.104793px;}
.y1e{bottom:7795.304772px;}
.h17{height:66.599997px;}
.h12{height:96.990358px;}
.hc{height:107.999996px;}
.h3{height:113.759995px;}
.h7{height:114.119995px;}
.ha{height:143.279994px;}
.h13{height:156.919079px;}
.hf{height:159.796396px;}
.h11{height:161.662389px;}
.he{height:165.137642px;}
.hb{height:171.306842px;}
.h6{height:184.995197px;}
.h2{height:185.013234px;}
.h15{height:189.841883px;}
.h8{height:210.239991px;}
.hd{height:265.845333px;}
.h9{height:272.943761px;}
.h4{height:277.419782px;}
.h10{height:475.559980px;}
.h14{height:572.039976px;}
.h16{height:780.839967px;}
.h1{height:913.679962px;}
.h5{height:8078.624663px;}
.h0{height:8078.624760px;}
.w8{width:366.839985px;}
.wc{width:493.919979px;}
.w3{width:561.959977px;}
.wd{width:713.519970px;}
.wa{width:885.239963px;}
.w5{width:941.039961px;}
.we{width:1124.639953px;}
.w9{width:1695.239929px;}
.w2{width:2593.799892px;}
.w7{width:3580.199851px;}
.wb{width:3647.879848px;}
.w6{width:3673.439847px;}
.w4{width:3911.624837px;}
.w0{width:3911.625000px;}
.w1{width:3911.849634px;}
.x0{left:0.000000px;}
.x7{left:70.600285px;}
.x5{left:80.279997px;}
.xb{left:108.092642px;}
.xa{left:111.678409px;}
.x1{left:122.039995px;}
.x8{left:123.718852px;}
.xf{left:130.319224px;}
.xe{left:134.279994px;}
.x3{left:144.760368px;}
.x4{left:146.879994px;}
.x9{left:155.481013px;}
.x2{left:163.799993px;}
.xc{left:464.110910px;}
.xd{left:2884.679880px;}
.x6{left:2921.399878px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-65.087755pt;}
.ws3{word-spacing:-62.372178pt;}
.ws0{word-spacing:-61.671078pt;}
.ws2{word-spacing:-61.665066pt;}
.ws5{word-spacing:-53.265465pt;}
.ws4{word-spacing:-36.509063pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:573.124046pt;}
._2{margin-left:-12.372873pt;}
._3{margin-left:-11.480370pt;}
._1{margin-left:-6.090530pt;}
._0{margin-left:-5.157774pt;}
._4{margin-left:-2.397944pt;}
._5{margin-left:-0.895338pt;}
._6{width:12.136625pt;}
._11{width:15.361830pt;}
._10{width:28.248200pt;}
._f{width:57.886069pt;}
._7{width:68.630286pt;}
._8{width:96.060477pt;}
._c{width:130.163119pt;}
._e{width:235.100628pt;}
._a{width:979.494302pt;}
._b{width:1003.090912pt;}
._d{width:1103.002180pt;}
._9{width:1274.729264pt;}
.fs9{font-size:110.530322pt;}
.fs7{font-size:177.551551pt;}
.fsa{font-size:178.825161pt;}
.fs8{font-size:184.230642pt;}
.fs6{font-size:188.191045pt;}
.fs4{font-size:195.221473pt;}
.fs2{font-size:205.550219pt;}
.fs0{font-size:205.570260pt;}
.fsb{font-size:210.935426pt;}
.fs5{font-size:321.506071pt;}
.fs3{font-size:330.090716pt;}
.fs1{font-size:335.503894pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:0.000086pt;}
.y3b{bottom:11.256475pt;}
.y55{bottom:12.214264pt;}
.y23{bottom:12.388604pt;}
.y51{bottom:13.168880pt;}
.y44{bottom:13.302437pt;}
.ye{bottom:13.427590pt;}
.y25{bottom:19.300022pt;}
.y20{bottom:19.410069pt;}
.y10{bottom:20.180051pt;}
.y53{bottom:20.234348pt;}
.y63{bottom:20.418879pt;}
.y1d{bottom:20.455911pt;}
.y50{bottom:70.652715pt;}
.y3a{bottom:74.791240pt;}
.yd{bottom:75.953867pt;}
.y43{bottom:76.837203pt;}
.y22{bottom:80.371136pt;}
.y32{bottom:94.140973pt;}
.y1f{bottom:106.671230pt;}
.y4f{bottom:128.136551pt;}
.yc{bottom:138.480144pt;}
.y39{bottom:139.334494pt;}
.y42{bottom:140.371968pt;}
.y31{bottom:151.138262pt;}
.y4e{bottom:185.620386pt;}
.y38{bottom:200.852283pt;}
.yb{bottom:201.006422pt;}
.y41{bottom:203.906734pt;}
.y30{bottom:208.135551pt;}
.y4d{bottom:243.104221pt;}
.ya{bottom:263.532699pt;}
.y37{bottom:264.387049pt;}
.y2f{bottom:265.132840pt;}
.y40{bottom:267.441499pt;}
.y4c{bottom:300.588057pt;}
.y2e{bottom:322.130129pt;}
.y9{bottom:326.058976pt;}
.y36{bottom:327.921814pt;}
.y3f{bottom:330.976265pt;}
.y4b{bottom:358.071892pt;}
.y34{bottom:376.329255pt;}
.y2d{bottom:379.127418pt;}
.y8{bottom:388.585253pt;}
.y3e{bottom:394.511031pt;}
.y35{bottom:396.499021pt;}
.y4a{bottom:415.555728pt;}
.y2c{bottom:436.124707pt;}
.y7{bottom:451.111530pt;}
.y3d{bottom:458.045796pt;}
.y49{bottom:473.039563pt;}
.y2b{bottom:493.121996pt;}
.y6{bottom:513.637808pt;}
.y48{bottom:530.523399pt;}
.y2a{bottom:550.119285pt;}
.y5{bottom:576.164085pt;}
.y47{bottom:588.007234pt;}
.y29{bottom:607.116574pt;}
.y4{bottom:638.690362pt;}
.y46{bottom:645.491070pt;}
.y28{bottom:664.113863pt;}
.y3{bottom:701.216639pt;}
.y27{bottom:721.111152pt;}
.y2{bottom:763.742916pt;}
.y26{bottom:778.108441pt;}
.y61{bottom:907.944466pt;}
.y60{bottom:965.941707pt;}
.y5f{bottom:1023.938949pt;}
.y5e{bottom:1081.936190pt;}
.y5d{bottom:1139.933432pt;}
.y5c{bottom:1197.930673pt;}
.y5b{bottom:1255.927914pt;}
.y5a{bottom:1313.925156pt;}
.y59{bottom:1371.922397pt;}
.y58{bottom:1429.919639pt;}
.y57{bottom:1487.916880pt;}
.y56{bottom:1545.914122pt;}
.y62{bottom:1630.600018pt;}
.y54{bottom:1774.280012pt;}
.y21{bottom:3596.359936pt;}
.y45{bottom:3759.239929pt;}
.y52{bottom:4483.719899pt;}
.y1b{bottom:4660.416411pt;}
.y1a{bottom:4722.413462pt;}
.y19{bottom:4784.410513pt;}
.y18{bottom:4846.407564pt;}
.y17{bottom:4908.404616pt;}
.y16{bottom:4970.401667pt;}
.y15{bottom:5032.398718pt;}
.y14{bottom:5094.395769pt;}
.y13{bottom:5156.392820pt;}
.y12{bottom:5218.389872pt;}
.y1c{bottom:5298.119865pt;}
.y1{bottom:5446.599859pt;}
.y3c{bottom:5568.519854pt;}
.y24{bottom:6134.279830pt;}
.yf{bottom:6303.559823pt;}
.y33{bottom:6474.759816pt;}
.y1e{bottom:6929.159797pt;}
.h17{height:59.199998pt;}
.h12{height:86.213651pt;}
.hc{height:95.999996pt;}
.h3{height:101.119996pt;}
.h7{height:101.439996pt;}
.ha{height:127.359995pt;}
.h13{height:139.483625pt;}
.hf{height:142.041241pt;}
.h11{height:143.699901pt;}
.he{height:146.789015pt;}
.hb{height:152.272749pt;}
.h6{height:164.440175pt;}
.h2{height:164.456208pt;}
.h15{height:168.748341pt;}
.h8{height:186.879992pt;}
.hd{height:236.306962pt;}
.h9{height:242.616676pt;}
.h4{height:246.595362pt;}
.h10{height:422.719982pt;}
.h14{height:508.479979pt;}
.h16{height:694.079971pt;}
.h1{height:812.159966pt;}
.h5{height:7180.999701pt;}
.h0{height:7180.999787pt;}
.w8{width:326.079986pt;}
.wc{width:439.039982pt;}
.w3{width:499.519979pt;}
.wd{width:634.239974pt;}
.wa{width:786.879967pt;}
.w5{width:836.479965pt;}
.we{width:999.679958pt;}
.w9{width:1506.879937pt;}
.w2{width:2305.599904pt;}
.w7{width:3182.399867pt;}
.wb{width:3242.559865pt;}
.w6{width:3265.279864pt;}
.w4{width:3476.999855pt;}
.w0{width:3477.000000pt;}
.w1{width:3477.199674pt;}
.x0{left:0.000000pt;}
.x7{left:62.755809pt;}
.x5{left:71.359997pt;}
.xb{left:96.082348pt;}
.xa{left:99.269697pt;}
.x1{left:108.479995pt;}
.x8{left:109.972313pt;}
.xf{left:115.839310pt;}
.xe{left:119.359995pt;}
.x3{left:128.675883pt;}
.x4{left:130.559995pt;}
.x9{left:138.205345pt;}
.x2{left:145.599994pt;}
.xc{left:412.543031pt;}
.xd{left:2564.159893pt;}
.x6{left:2596.799892pt;}
}




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