
    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_c006a93703f34ccd1e1cf962.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_7ac4504d59285982240c2cf5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_ef3ae1bab5e88b451c92dc6b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_b2bdfa455cd5412529e49a2d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.727000;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_2bb082459cdcf784e3537fc3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.912000;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:ff6;src:url('chunks/assets/font_8f348aa6fb0d2025c11a2fa4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948730;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:ff7;src:url('chunks/assets/font_030a8a7d1bcb76bded89478c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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:ff8;src:url('chunks/assets/font_89be1fe04be2d63e42df7357.woff')format("woff");}.ff8{font-family:ff8;line-height:0.912000;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:ff9;src:url('chunks/assets/font_157f19434fe46a14222278cd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.499448;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:-2.996400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.136000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.507800px;}
.ls0{letter-spacing:41.191200px;}
.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:-22.855800px;}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:-18.348000px;}
.ws3{word-spacing:-15.012000px;}
.ws0{word-spacing:-13.344000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-8.658000px;}
._4{margin-left:-6.624000px;}
._2{margin-left:-3.630000px;}
._3{margin-left:-2.462001px;}
._0{margin-left:-1.188000px;}
._6{width:1.008000px;}
._5{width:2.427600px;}
._9{width:4.507800px;}
._8{width:5.900400px;}
._7{width:14.658600px;}
._a{width:35.258220px;}
.fc4{color:transparent;}
.fc3{color:rgb(234,195,99);}
.fc2{color:rgb(146,146,146);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:6.808080px;}
.fs8{font-size:14.030106px;}
.fs9{font-size:14.075742px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:56.000004px;}
.fsd{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:79.200000px;}
.fsc{font-size:84.000000px;}
.fs7{font-size:114.000000px;}
.fs3{font-size:174.000000px;}
.y31{bottom:-26.589906px;}
.y30{bottom:-23.082379px;}
.y36{bottom:-12.990670px;}
.y35{bottom:-9.471734px;}
.y47{bottom:-6.841262px;}
.y46{bottom:-5.139242px;}
.y0{bottom:0.000000px;}
.y38{bottom:1.011150px;}
.y4b{bottom:1.499991px;}
.y56{bottom:2.190030px;}
.y19{bottom:2.837940px;}
.y1c{bottom:4.011000px;}
.y33{bottom:4.011150px;}
.y53{bottom:11.357024px;}
.y4f{bottom:13.852438px;}
.y4c{bottom:15.235614px;}
.y52{bottom:15.504000px;}
.y4e{bottom:15.511500px;}
.y55{bottom:17.754150px;}
.y1a{bottom:20.452515px;}
.y17{bottom:22.614450px;}
.y50{bottom:25.290541px;}
.y26{bottom:25.542000px;}
.y54{bottom:26.587156px;}
.y14{bottom:27.326850px;}
.y44{bottom:31.407900px;}
.y5b{bottom:38.689800px;}
.y16{bottom:40.893450px;}
.y25{bottom:43.542000px;}
.y18{bottom:43.962255px;}
.y43{bottom:50.907900px;}
.y2f{bottom:56.111640px;}
.y5a{bottom:58.189800px;}
.y4d{bottom:58.205430px;}
.y24{bottom:61.542000px;}
.y3d{bottom:65.393850px;}
.y2e{bottom:67.263750px;}
.y4a{bottom:70.407750px;}
.y42{bottom:70.407900px;}
.y59{bottom:77.689800px;}
.y23{bottom:79.542000px;}
.y3c{bottom:84.976350px;}
.y2d{bottom:86.763750px;}
.y41{bottom:89.990400px;}
.y58{bottom:95.689800px;}
.y22{bottom:97.542000px;}
.y3b{bottom:104.476350px;}
.y2c{bottom:106.263750px;}
.y40{bottom:109.490400px;}
.y21{bottom:115.542000px;}
.y3a{bottom:122.559000px;}
.y7{bottom:124.765650px;}
.y2b{bottom:125.681250px;}
.y49{bottom:127.572900px;}
.y3f{bottom:127.573050px;}
.y20{bottom:133.542000px;}
.y12{bottom:140.713200px;}
.y2a{bottom:143.681250px;}
.y4{bottom:146.681100px;}
.y6{bottom:148.765650px;}
.y1f{bottom:151.542000px;}
.y11{bottom:158.713200px;}
.y29{bottom:161.763750px;}
.y3{bottom:164.681100px;}
.y10{bottom:176.713200px;}
.y28{bottom:181.263750px;}
.y2{bottom:182.681100px;}
.y1e{bottom:189.862500px;}
.yf{bottom:194.713200px;}
.ye{bottom:213.462300px;}
.y1{bottom:214.725300px;}
.yd{bottom:230.713200px;}
.yc{bottom:248.713200px;}
.yb{bottom:266.713200px;}
.y8{bottom:269.697450px;}
.ya{bottom:285.462300px;}
.y9{bottom:321.533700px;}
.y27{bottom:391.519950px;}
.y5{bottom:570.232650px;}
.y57{bottom:570.455400px;}
.y51{bottom:619.924500px;}
.y1d{bottom:656.505750px;}
.y32{bottom:752.193450px;}
.y48{bottom:759.353250px;}
.y39{bottom:760.360200px;}
.y45{bottom:782.737800px;}
.y34{bottom:870.360150px;}
.y3e{bottom:882.515100px;}
.y1b{bottom:1037.425800px;}
.y37{bottom:1039.225350px;}
.y15{bottom:1070.425800px;}
.y13{bottom:1171.881300px;}
.h1b{height:4.976706px;}
.h13{height:10.256007px;}
.h15{height:10.323127px;}
.hd{height:19.500000px;}
.h16{height:30.000000px;}
.hf{height:33.000000px;}
.h1c{height:34.482150px;}
.h25{height:34.500000px;}
.h1d{height:39.474000px;}
.hc{height:40.936003px;}
.h24{height:43.860000px;}
.he{height:44.524470px;}
.h12{height:44.638605px;}
.h23{height:46.897125px;}
.h18{height:47.124000px;}
.h3{height:48.246000px;}
.h20{height:48.292830px;}
.h1e{height:48.923505px;}
.h21{height:51.255249px;}
.hb{height:52.632000px;}
.h22{height:52.986015px;}
.h5{height:57.018000px;}
.h7{height:57.895200px;}
.h1a{height:58.991820px;}
.ha{height:63.555555px;}
.h1f{height:79.730387px;}
.h14{height:80.261100px;}
.h8{height:82.088790px;}
.h10{height:83.334000px;}
.h9{height:127.194000px;}
.h26{height:133.713270px;}
.h17{height:143.999970px;}
.h19{height:149.013975px;}
.h4{height:173.968500px;}
.h2{height:202.704750px;}
.h11{height:215.065500px;}
.h6{height:346.736700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wb{width:42.329580px;}
.w11{width:59.025045px;}
.wd{width:77.416560px;}
.w10{width:178.177050px;}
.w17{width:192.318000px;}
.w16{width:195.378000px;}
.we{width:241.860450px;}
.w18{width:245.338050px;}
.wc{width:255.092250px;}
.w12{width:266.941200px;}
.w4{width:268.045050px;}
.w14{width:268.634550px;}
.w7{width:274.942200px;}
.wa{width:278.861250px;}
.w15{width:280.868700px;}
.w8{width:286.443300px;}
.w13{width:287.704650px;}
.w2{width:293.779500px;}
.w3{width:302.953050px;}
.w9{width:312.886650px;}
.wf{width:321.381900px;}
.w6{width:503.964000px;}
.w5{width:586.742550px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.xf{left:-13.910400px;}
.x0{left:0.000000px;}
.xa{left:2.821502px;}
.x1a{left:4.470000px;}
.x2{left:6.000000px;}
.xb{left:8.493009px;}
.x4{left:10.284061px;}
.x7{left:12.963015px;}
.xc{left:16.497060px;}
.x5{left:23.999998px;}
.x8{left:41.938110px;}
.x6{left:91.327965px;}
.x9{left:140.858070px;}
.x10{left:169.851450px;}
.x14{left:269.612250px;}
.x1{left:295.557300px;}
.x11{left:349.027350px;}
.x12{left:356.199150px;}
.xe{left:421.296600px;}
.x18{left:423.330150px;}
.x19{left:424.860150px;}
.xd{left:585.895500px;}
.x3{left:588.394800px;}
.x17{left:624.285450px;}
.x16{left:625.978800px;}
.x13{left:699.461400px;}
.x15{left:701.497950px;}
@media print{
.v1{vertical-align:-2.663467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.232000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:4.006933pt;}
.ls0{letter-spacing:36.614400pt;}
.ws4{word-spacing:-20.316267pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.309333pt;}
.ws3{word-spacing:-13.344000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-7.696000pt;}
._4{margin-left:-5.888000pt;}
._2{margin-left:-3.226667pt;}
._3{margin-left:-2.188445pt;}
._0{margin-left:-1.056000pt;}
._6{width:0.896000pt;}
._5{width:2.157867pt;}
._9{width:4.006933pt;}
._8{width:5.244800pt;}
._7{width:13.029867pt;}
._a{width:31.340640pt;}
.fsa{font-size:6.051627pt;}
.fs8{font-size:12.471205pt;}
.fs9{font-size:12.511771pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:49.777781pt;}
.fsd{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:70.400000pt;}
.fsc{font-size:74.666667pt;}
.fs7{font-size:101.333333pt;}
.fs3{font-size:154.666667pt;}
.y31{bottom:-23.635472pt;}
.y30{bottom:-20.517671pt;}
.y36{bottom:-11.547262pt;}
.y35{bottom:-8.419319pt;}
.y47{bottom:-6.081122pt;}
.y46{bottom:-4.568215pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:0.898800pt;}
.y4b{bottom:1.333326pt;}
.y56{bottom:1.946693pt;}
.y19{bottom:2.522613pt;}
.y1c{bottom:3.565333pt;}
.y33{bottom:3.565467pt;}
.y53{bottom:10.095132pt;}
.y4f{bottom:12.313279pt;}
.y4c{bottom:13.542768pt;}
.y52{bottom:13.781333pt;}
.y4e{bottom:13.788000pt;}
.y55{bottom:15.781467pt;}
.y1a{bottom:18.180013pt;}
.y17{bottom:20.101733pt;}
.y50{bottom:22.480481pt;}
.y26{bottom:22.704000pt;}
.y54{bottom:23.633028pt;}
.y14{bottom:24.290533pt;}
.y44{bottom:27.918133pt;}
.y5b{bottom:34.390933pt;}
.y16{bottom:36.349733pt;}
.y25{bottom:38.704000pt;}
.y18{bottom:39.077560pt;}
.y43{bottom:45.251467pt;}
.y2f{bottom:49.877013pt;}
.y5a{bottom:51.724267pt;}
.y4d{bottom:51.738160pt;}
.y24{bottom:54.704000pt;}
.y3d{bottom:58.127867pt;}
.y2e{bottom:59.790000pt;}
.y4a{bottom:62.584667pt;}
.y42{bottom:62.584800pt;}
.y59{bottom:69.057600pt;}
.y23{bottom:70.704000pt;}
.y3c{bottom:75.534533pt;}
.y2d{bottom:77.123333pt;}
.y41{bottom:79.991467pt;}
.y58{bottom:85.057600pt;}
.y22{bottom:86.704000pt;}
.y3b{bottom:92.867867pt;}
.y2c{bottom:94.456667pt;}
.y40{bottom:97.324800pt;}
.y21{bottom:102.704000pt;}
.y3a{bottom:108.941333pt;}
.y7{bottom:110.902800pt;}
.y2b{bottom:111.716667pt;}
.y49{bottom:113.398133pt;}
.y3f{bottom:113.398267pt;}
.y20{bottom:118.704000pt;}
.y12{bottom:125.078400pt;}
.y2a{bottom:127.716667pt;}
.y4{bottom:130.383200pt;}
.y6{bottom:132.236133pt;}
.y1f{bottom:134.704000pt;}
.y11{bottom:141.078400pt;}
.y29{bottom:143.790000pt;}
.y3{bottom:146.383200pt;}
.y10{bottom:157.078400pt;}
.y28{bottom:161.123333pt;}
.y2{bottom:162.383200pt;}
.y1e{bottom:168.766667pt;}
.yf{bottom:173.078400pt;}
.ye{bottom:189.744267pt;}
.y1{bottom:190.866933pt;}
.yd{bottom:205.078400pt;}
.yc{bottom:221.078400pt;}
.yb{bottom:237.078400pt;}
.y8{bottom:239.731067pt;}
.ya{bottom:253.744267pt;}
.y9{bottom:285.807733pt;}
.y27{bottom:348.017733pt;}
.y5{bottom:506.873467pt;}
.y57{bottom:507.071467pt;}
.y51{bottom:551.044000pt;}
.y1d{bottom:583.560667pt;}
.y32{bottom:668.616400pt;}
.y48{bottom:674.980667pt;}
.y39{bottom:675.875733pt;}
.y45{bottom:695.766933pt;}
.y34{bottom:773.653467pt;}
.y3e{bottom:784.457867pt;}
.y1b{bottom:922.156267pt;}
.y37{bottom:923.755867pt;}
.y15{bottom:951.489600pt;}
.y13{bottom:1041.672267pt;}
.h1b{height:4.423739pt;}
.h13{height:9.116451pt;}
.h15{height:9.176113pt;}
.hd{height:17.333333pt;}
.h16{height:26.666667pt;}
.hf{height:29.333333pt;}
.h1c{height:30.650800pt;}
.h25{height:30.666667pt;}
.h1d{height:35.088000pt;}
.hc{height:36.387558pt;}
.h24{height:38.986667pt;}
.he{height:39.577307pt;}
.h12{height:39.678760pt;}
.h23{height:41.686333pt;}
.h18{height:41.888000pt;}
.h3{height:42.885333pt;}
.h20{height:42.926960pt;}
.h1e{height:43.487560pt;}
.h21{height:45.560221pt;}
.hb{height:46.784000pt;}
.h22{height:47.098680pt;}
.h5{height:50.682667pt;}
.h7{height:51.462400pt;}
.h1a{height:52.437173pt;}
.ha{height:56.493827pt;}
.h1f{height:70.871455pt;}
.h14{height:71.343200pt;}
.h8{height:72.967813pt;}
.h10{height:74.074667pt;}
.h9{height:113.061333pt;}
.h26{height:118.856240pt;}
.h17{height:127.999973pt;}
.h19{height:132.456867pt;}
.h4{height:154.638667pt;}
.h2{height:180.182000pt;}
.h11{height:191.169333pt;}
.h6{height:308.210400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wb{width:37.626293pt;}
.w11{width:52.466707pt;}
.wd{width:68.814720pt;}
.w10{width:158.379600pt;}
.w17{width:170.949333pt;}
.w16{width:173.669333pt;}
.we{width:214.987067pt;}
.w18{width:218.078267pt;}
.wc{width:226.748667pt;}
.w12{width:237.281067pt;}
.w4{width:238.262267pt;}
.w14{width:238.786267pt;}
.w7{width:244.393067pt;}
.wa{width:247.876667pt;}
.w15{width:249.661067pt;}
.w8{width:254.616267pt;}
.w13{width:255.737467pt;}
.w2{width:261.137333pt;}
.w3{width:269.291600pt;}
.w9{width:278.121467pt;}
.wf{width:285.672800pt;}
.w6{width:447.968000pt;}
.w5{width:521.548933pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.xf{left:-12.364800pt;}
.x0{left:0.000000pt;}
.xa{left:2.508001pt;}
.x1a{left:3.973333pt;}
.x2{left:5.333333pt;}
.xb{left:7.549341pt;}
.x4{left:9.141388pt;}
.x7{left:11.522680pt;}
.xc{left:14.664053pt;}
.x5{left:21.333332pt;}
.x8{left:37.278320pt;}
.x6{left:81.180413pt;}
.x9{left:125.207173pt;}
.x10{left:150.979067pt;}
.x14{left:239.655333pt;}
.x1{left:262.717600pt;}
.x11{left:310.246533pt;}
.x12{left:316.621467pt;}
.xe{left:374.485867pt;}
.x18{left:376.293467pt;}
.x19{left:377.653467pt;}
.xd{left:520.796000pt;}
.x3{left:523.017600pt;}
.x17{left:554.920400pt;}
.x16{left:556.425600pt;}
.x13{left:621.743467pt;}
.x15{left:623.553733pt;}
}




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