
    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_ca2ee896319edd7a1f2b147d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_e8451b9ac4e34f2c403783b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_9c5ae1f6303844832b3356e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_f0f529fd238ecd393fbea52d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_7d2602bf045f4e970d89e4b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_daacc38e4cbfc41669e85be0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.860840;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_44541a0ee9d76e988cf3bfcf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_cede538b50b141129e65d2e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707000;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_bd051d42c26469d4fc51bbff.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ca2ee896319edd7a1f2b147d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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:ffb;src:url('chunks/assets/font_e8451b9ac4e34f2c403783b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.720000;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:ffc;src:url('chunks/assets/font_cea92ca5961b712b2beb0586.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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:ffd;src:url('chunks/assets/font_44071acc644fe5287ffc973d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws7{word-spacing:-3.300000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.720000px;}
.ws4{word-spacing:16.740000px;}
.ws0{word-spacing:48.021000px;}
.ws1{word-spacing:386.314800px;}
.ws5{word-spacing:1714.377600px;}
._1{margin-left:-8.262000px;}
._3{margin-left:-7.179000px;}
._2{margin-left:-5.526000px;}
._5{margin-left:-3.651000px;}
._a{margin-left:-2.631000px;}
._0{margin-left:-1.629000px;}
._b{width:1.836000px;}
._10{width:3.882000px;}
._15{width:5.208000px;}
._f{width:7.014000px;}
._14{width:8.274000px;}
._e{width:9.702000px;}
._16{width:10.824000px;}
._6{width:12.414000px;}
._d{width:13.695000px;}
._9{width:16.431000px;}
._7{width:18.309000px;}
._8{width:19.509000px;}
._1d{width:21.882000px;}
._18{width:24.210000px;}
._17{width:25.386000px;}
._1b{width:27.186000px;}
._1c{width:29.178000px;}
._12{width:30.252000px;}
._13{width:32.670000px;}
._11{width:33.741000px;}
._1a{width:49.272000px;}
._19{width:50.316000px;}
._4{width:53.280000px;}
._c{width:70.020000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y35{bottom:64.760550px;}
.y34{bottom:65.586600px;}
.y2a{bottom:112.642650px;}
.y29{bottom:132.142650px;}
.y28{bottom:151.642650px;}
.y27{bottom:171.142650px;}
.y26{bottom:190.642650px;}
.y25{bottom:210.142650px;}
.y24{bottom:229.642650px;}
.y23{bottom:249.142650px;}
.y22{bottom:268.642650px;}
.y21{bottom:307.642650px;}
.y59{bottom:313.659600px;}
.y20{bottom:327.142650px;}
.y58{bottom:333.159600px;}
.y1f{bottom:346.642650px;}
.y57{bottom:352.659600px;}
.y1e{bottom:366.142650px;}
.y56{bottom:372.159600px;}
.y1d{bottom:385.642650px;}
.y5b{bottom:391.659600px;}
.y1c{bottom:405.142650px;}
.y55{bottom:411.159600px;}
.y1b{bottom:424.642650px;}
.y54{bottom:430.659600px;}
.y1a{bottom:444.142650px;}
.y53{bottom:450.159600px;}
.y33{bottom:456.139950px;}
.y19{bottom:463.642650px;}
.y52{bottom:469.659600px;}
.y32{bottom:478.639950px;}
.y51{bottom:489.159600px;}
.y31{bottom:501.139950px;}
.y18{bottom:502.642650px;}
.y50{bottom:508.659600px;}
.y17{bottom:522.142650px;}
.y4f{bottom:528.159600px;}
.y30{bottom:541.639950px;}
.y16{bottom:541.642650px;}
.y4e{bottom:547.659600px;}
.y15{bottom:561.142650px;}
.y4d{bottom:567.159600px;}
.y14{bottom:580.642650px;}
.y2f{bottom:586.639950px;}
.y4c{bottom:586.659600px;}
.y13{bottom:600.142650px;}
.y4b{bottom:606.159600px;}
.y12{bottom:619.642650px;}
.y4a{bottom:625.659600px;}
.y2e{bottom:627.139950px;}
.y11{bottom:639.142650px;}
.y5a{bottom:645.159600px;}
.y10{bottom:658.642650px;}
.y2d{bottom:663.139950px;}
.y49{bottom:664.659600px;}
.yf{bottom:678.142650px;}
.y48{bottom:684.159600px;}
.y2c{bottom:699.139950px;}
.y47{bottom:703.659600px;}
.ye{bottom:717.142650px;}
.y46{bottom:723.159600px;}
.y2b{bottom:735.139950px;}
.yd{bottom:736.642650px;}
.y45{bottom:742.659600px;}
.yc{bottom:756.142650px;}
.y44{bottom:762.159600px;}
.yb{bottom:775.642650px;}
.y43{bottom:781.659600px;}
.ya{bottom:795.142650px;}
.y42{bottom:801.159600px;}
.y9{bottom:814.642650px;}
.y41{bottom:820.659600px;}
.y8{bottom:834.142650px;}
.y40{bottom:840.159600px;}
.y7{bottom:853.642650px;}
.y3f{bottom:859.659600px;}
.y3e{bottom:879.159600px;}
.y6{bottom:892.648650px;}
.y3d{bottom:898.659600px;}
.y5{bottom:912.142650px;}
.y3c{bottom:918.159600px;}
.y4{bottom:930.142650px;}
.y3b{bottom:937.659600px;}
.y3a{bottom:957.159600px;}
.y3{bottom:969.142650px;}
.y39{bottom:976.659600px;}
.y38{bottom:996.159600px;}
.y37{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y36{bottom:1039.374150px;}
.he{height:34.176000px;}
.hd{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.h7{height:41.660156px;}
.h8{height:41.689453px;}
.hc{height:42.000000px;}
.hb{height:42.720000px;}
.ha{height:46.200000px;}
.h9{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.x2{left:65.202600px;}
.x8{left:73.559100px;}
.x1{left:74.853150px;}
.x7{left:224.187900px;}
.x3{left:299.408850px;}
.xd{left:399.929550px;}
.xc{left:412.272150px;}
.xe{left:426.929550px;}
.x6{left:534.900000px;}
.x4{left:536.993250px;}
.x5{left:548.616000px;}
.xb{left:614.196150px;}
.xa{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws7{word-spacing:-2.933333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.640000pt;}
.ws4{word-spacing:14.880000pt;}
.ws0{word-spacing:42.685333pt;}
.ws1{word-spacing:343.390933pt;}
.ws5{word-spacing:1523.891200pt;}
._1{margin-left:-7.344000pt;}
._3{margin-left:-6.381333pt;}
._2{margin-left:-4.912000pt;}
._5{margin-left:-3.245333pt;}
._a{margin-left:-2.338667pt;}
._0{margin-left:-1.448000pt;}
._b{width:1.632000pt;}
._10{width:3.450667pt;}
._15{width:4.629333pt;}
._f{width:6.234667pt;}
._14{width:7.354667pt;}
._e{width:8.624000pt;}
._16{width:9.621333pt;}
._6{width:11.034667pt;}
._d{width:12.173333pt;}
._9{width:14.605333pt;}
._7{width:16.274667pt;}
._8{width:17.341333pt;}
._1d{width:19.450667pt;}
._18{width:21.520000pt;}
._17{width:22.565333pt;}
._1b{width:24.165333pt;}
._1c{width:25.936000pt;}
._12{width:26.890667pt;}
._13{width:29.040000pt;}
._11{width:29.992000pt;}
._1a{width:43.797333pt;}
._19{width:44.725333pt;}
._4{width:47.360000pt;}
._c{width:62.240000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y35{bottom:57.564933pt;}
.y34{bottom:58.299200pt;}
.y2a{bottom:100.126800pt;}
.y29{bottom:117.460133pt;}
.y28{bottom:134.793467pt;}
.y27{bottom:152.126800pt;}
.y26{bottom:169.460133pt;}
.y25{bottom:186.793467pt;}
.y24{bottom:204.126800pt;}
.y23{bottom:221.460133pt;}
.y22{bottom:238.793467pt;}
.y21{bottom:273.460133pt;}
.y59{bottom:278.808533pt;}
.y20{bottom:290.793467pt;}
.y58{bottom:296.141867pt;}
.y1f{bottom:308.126800pt;}
.y57{bottom:313.475200pt;}
.y1e{bottom:325.460133pt;}
.y56{bottom:330.808533pt;}
.y1d{bottom:342.793467pt;}
.y5b{bottom:348.141867pt;}
.y1c{bottom:360.126800pt;}
.y55{bottom:365.475200pt;}
.y1b{bottom:377.460133pt;}
.y54{bottom:382.808533pt;}
.y1a{bottom:394.793467pt;}
.y53{bottom:400.141867pt;}
.y33{bottom:405.457733pt;}
.y19{bottom:412.126800pt;}
.y52{bottom:417.475200pt;}
.y32{bottom:425.457733pt;}
.y51{bottom:434.808533pt;}
.y31{bottom:445.457733pt;}
.y18{bottom:446.793467pt;}
.y50{bottom:452.141867pt;}
.y17{bottom:464.126800pt;}
.y4f{bottom:469.475200pt;}
.y30{bottom:481.457733pt;}
.y16{bottom:481.460133pt;}
.y4e{bottom:486.808533pt;}
.y15{bottom:498.793467pt;}
.y4d{bottom:504.141867pt;}
.y14{bottom:516.126800pt;}
.y2f{bottom:521.457733pt;}
.y4c{bottom:521.475200pt;}
.y13{bottom:533.460133pt;}
.y4b{bottom:538.808533pt;}
.y12{bottom:550.793467pt;}
.y4a{bottom:556.141867pt;}
.y2e{bottom:557.457733pt;}
.y11{bottom:568.126800pt;}
.y5a{bottom:573.475200pt;}
.y10{bottom:585.460133pt;}
.y2d{bottom:589.457733pt;}
.y49{bottom:590.808533pt;}
.yf{bottom:602.793467pt;}
.y48{bottom:608.141867pt;}
.y2c{bottom:621.457733pt;}
.y47{bottom:625.475200pt;}
.ye{bottom:637.460133pt;}
.y46{bottom:642.808533pt;}
.y2b{bottom:653.457733pt;}
.yd{bottom:654.793467pt;}
.y45{bottom:660.141867pt;}
.yc{bottom:672.126800pt;}
.y44{bottom:677.475200pt;}
.yb{bottom:689.460133pt;}
.y43{bottom:694.808533pt;}
.ya{bottom:706.793467pt;}
.y42{bottom:712.141867pt;}
.y9{bottom:724.126800pt;}
.y41{bottom:729.475200pt;}
.y8{bottom:741.460133pt;}
.y40{bottom:746.808533pt;}
.y7{bottom:758.793467pt;}
.y3f{bottom:764.141867pt;}
.y3e{bottom:781.475200pt;}
.y6{bottom:793.465467pt;}
.y3d{bottom:798.808533pt;}
.y5{bottom:810.793467pt;}
.y3c{bottom:816.141867pt;}
.y4{bottom:826.793467pt;}
.y3b{bottom:833.475200pt;}
.y3a{bottom:850.808533pt;}
.y3{bottom:861.460133pt;}
.y39{bottom:868.141867pt;}
.y38{bottom:885.475200pt;}
.y37{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y36{bottom:923.888133pt;}
.he{height:30.378667pt;}
.hd{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.h7{height:37.031250pt;}
.h8{height:37.057292pt;}
.hc{height:37.333333pt;}
.hb{height:37.973333pt;}
.ha{height:41.066667pt;}
.h9{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.x2{left:57.957867pt;}
.x8{left:65.385867pt;}
.x1{left:66.536133pt;}
.x7{left:199.278133pt;}
.x3{left:266.141200pt;}
.xd{left:355.492933pt;}
.xc{left:366.464133pt;}
.xe{left:379.492933pt;}
.x6{left:475.466667pt;}
.x4{left:477.327333pt;}
.x5{left:487.658667pt;}
.xb{left:545.952133pt;}
.xa{left:562.556267pt;}
}




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