
    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_98d94faa89f36463f368005c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_6a366b3faf2e6e6cfb912b1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_fe0a454378125b0284bb9797.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_7fb23b614f64147e052cc763.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9d408aec16a2e64a57eda010.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_56cde26179bcb9b0537169e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_fdd66e4a12d09bd2d1f1337e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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;}
.ls4{letter-spacing:-0.552000px;}
.ls2{letter-spacing:-0.276000px;}
.ls5{letter-spacing:-0.096000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.600000px;}
.ls6{letter-spacing:87.984000px;}
.ls3{letter-spacing:100.248000px;}
.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;}
}
.ws3{word-spacing:-84.000000px;}
.ws1{word-spacing:-21.000000px;}
.ws6{word-spacing:-20.904000px;}
.ws2{word-spacing:-20.724000px;}
.ws5{word-spacing:-20.448000px;}
.ws7{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws8{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-10.188000px;}
._6{margin-left:-7.896000px;}
._7{margin-left:-6.636000px;}
._5{margin-left:-5.352000px;}
._4{margin-left:-4.284000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._b{width:2.778000px;}
._14{width:4.140000px;}
._10{width:5.148000px;}
._19{width:6.378000px;}
._11{width:7.806000px;}
._2c{width:8.928000px;}
._16{width:10.032000px;}
._1f{width:11.328000px;}
._d{width:12.768000px;}
._c{width:14.136000px;}
._9{width:16.152000px;}
._12{width:17.274000px;}
._f{width:18.336000px;}
._13{width:19.944000px;}
._1b{width:22.062000px;}
._24{width:23.412000px;}
._1e{width:25.644000px;}
._20{width:27.408000px;}
._21{width:28.812000px;}
._26{width:30.516000px;}
._15{width:31.560000px;}
._1c{width:33.456000px;}
._27{width:34.464000px;}
._1d{width:35.514000px;}
._23{width:37.872000px;}
._22{width:38.916000px;}
._28{width:40.068000px;}
._29{width:41.148000px;}
._25{width:42.612000px;}
._17{width:44.028000px;}
._18{width:45.726000px;}
._1a{width:47.646000px;}
._2a{width:49.668000px;}
._2d{width:50.964000px;}
._a{width:52.272000px;}
._2b{width:57.312000px;}
._e{width:66.714000px;}
._8{width:67.950000px;}
.fc4{color:rgb(31,55,99);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.600000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:69.337500px;}
.y57{bottom:94.537500px;}
.y4d{bottom:116.437500px;}
.y56{bottom:122.437500px;}
.y29{bottom:128.437500px;}
.y4c{bottom:144.037500px;}
.y55{bottom:150.045000px;}
.y28{bottom:156.045000px;}
.y4b{bottom:171.975000px;}
.y54{bottom:177.975000px;}
.y27{bottom:183.975000px;}
.y4a{bottom:199.575000px;}
.y53{bottom:205.575000px;}
.y26{bottom:213.075000px;}
.y49{bottom:227.475000px;}
.y52{bottom:233.475000px;}
.y25{bottom:245.175000px;}
.y48{bottom:255.075000px;}
.y51{bottom:261.375000px;}
.y24{bottom:277.275000px;}
.y47{bottom:282.975000px;}
.y50{bottom:288.975000px;}
.y23{bottom:309.375000px;}
.y46{bottom:310.875000px;}
.y4f{bottom:316.875000px;}
.y45{bottom:338.505000px;}
.y22{bottom:341.505000px;}
.y4e{bottom:344.505000px;}
.y5c{bottom:360.405000px;}
.y44{bottom:366.405000px;}
.y21{bottom:372.420000px;}
.y5b{bottom:384.405000px;}
.y43{bottom:394.005000px;}
.y20{bottom:400.005000px;}
.y5a{bottom:408.120000px;}
.y42{bottom:421.905000px;}
.y1f{bottom:427.905000px;}
.y59{bottom:431.820000px;}
.y41{bottom:449.505000px;}
.y1e{bottom:455.505000px;}
.y58{bottom:456.420000px;}
.y40{bottom:477.405000px;}
.y1d{bottom:483.420000px;}
.y3f{bottom:505.305000px;}
.y1c{bottom:511.350000px;}
.y3e{bottom:532.950000px;}
.y1b{bottom:538.950000px;}
.y3d{bottom:560.850000px;}
.y1a{bottom:566.850000px;}
.y3c{bottom:588.450000px;}
.y19{bottom:594.450000px;}
.y3b{bottom:616.350000px;}
.y18{bottom:622.350000px;}
.y3a{bottom:643.950000px;}
.y17{bottom:649.950000px;}
.y39{bottom:671.850000px;}
.y16{bottom:677.880000px;}
.y38{bottom:699.480000px;}
.y15{bottom:705.780000px;}
.y37{bottom:727.380000px;}
.y14{bottom:733.380000px;}
.y36{bottom:755.280000px;}
.y13{bottom:761.280000px;}
.y35{bottom:782.880000px;}
.y12{bottom:788.880000px;}
.y34{bottom:810.795000px;}
.y11{bottom:816.795000px;}
.y33{bottom:838.380000px;}
.y10{bottom:844.380000px;}
.y32{bottom:866.325000px;}
.yf{bottom:872.325000px;}
.y31{bottom:893.925000px;}
.ye{bottom:900.225000px;}
.y30{bottom:923.325000px;}
.yd{bottom:927.825000px;}
.y2f{bottom:951.225000px;}
.yc{bottom:955.725000px;}
.y2e{bottom:980.325000px;}
.yb{bottom:983.325000px;}
.y2d{bottom:1008.225000px;}
.ya{bottom:1011.225000px;}
.y2c{bottom:1035.855000px;}
.y9{bottom:1038.870000px;}
.y2b{bottom:1065.255000px;}
.y8{bottom:1066.755000px;}
.y2a{bottom:1093.155000px;}
.y7{bottom:1094.670000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h2{height:42.333984px;}
.h8{height:58.652344px;}
.h7{height:59.267578px;}
.h9{height:62.179688px;}
.h3{height:62.460938px;}
.hc{height:74.004654px;}
.h6{height:74.953125px;}
.h5{height:82.441406px;}
.hb{height:84.946875px;}
.ha{height:86.338763px;}
.h4{height:87.445312px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.937487px;}
.x6{left:224.474987px;}
.x9{left:266.174987px;}
.xa{left:284.774987px;}
.x8{left:320.519987px;}
.xb{left:328.319987px;}
.x4{left:350.819987px;}
.x5{left:430.649987px;}
.x7{left:446.249987px;}
.x2{left:457.049987px;}
.x1{left:510.449987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.490667pt;}
.ls2{letter-spacing:-0.245333pt;}
.ls5{letter-spacing:-0.085333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.533333pt;}
.ls6{letter-spacing:78.208000pt;}
.ls3{letter-spacing:89.109333pt;}
.ws3{word-spacing:-74.666667pt;}
.ws1{word-spacing:-18.666667pt;}
.ws6{word-spacing:-18.581333pt;}
.ws2{word-spacing:-18.421333pt;}
.ws5{word-spacing:-18.176000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws8{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-9.056000pt;}
._6{margin-left:-7.018667pt;}
._7{margin-left:-5.898667pt;}
._5{margin-left:-4.757333pt;}
._4{margin-left:-3.808000pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._b{width:2.469333pt;}
._14{width:3.680000pt;}
._10{width:4.576000pt;}
._19{width:5.669333pt;}
._11{width:6.938667pt;}
._2c{width:7.936000pt;}
._16{width:8.917333pt;}
._1f{width:10.069333pt;}
._d{width:11.349333pt;}
._c{width:12.565333pt;}
._9{width:14.357333pt;}
._12{width:15.354667pt;}
._f{width:16.298667pt;}
._13{width:17.728000pt;}
._1b{width:19.610667pt;}
._24{width:20.810667pt;}
._1e{width:22.794667pt;}
._20{width:24.362667pt;}
._21{width:25.610667pt;}
._26{width:27.125333pt;}
._15{width:28.053333pt;}
._1c{width:29.738667pt;}
._27{width:30.634667pt;}
._1d{width:31.568000pt;}
._23{width:33.664000pt;}
._22{width:34.592000pt;}
._28{width:35.616000pt;}
._29{width:36.576000pt;}
._25{width:37.877333pt;}
._17{width:39.136000pt;}
._18{width:40.645333pt;}
._1a{width:42.352000pt;}
._2a{width:44.149333pt;}
._2d{width:45.301333pt;}
._a{width:46.464000pt;}
._2b{width:50.944000pt;}
._e{width:59.301333pt;}
._8{width:60.400000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.533333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:61.633333pt;}
.y57{bottom:84.033333pt;}
.y4d{bottom:103.500000pt;}
.y56{bottom:108.833333pt;}
.y29{bottom:114.166667pt;}
.y4c{bottom:128.033333pt;}
.y55{bottom:133.373333pt;}
.y28{bottom:138.706667pt;}
.y4b{bottom:152.866667pt;}
.y54{bottom:158.200000pt;}
.y27{bottom:163.533333pt;}
.y4a{bottom:177.400000pt;}
.y53{bottom:182.733333pt;}
.y26{bottom:189.400000pt;}
.y49{bottom:202.200000pt;}
.y52{bottom:207.533333pt;}
.y25{bottom:217.933333pt;}
.y48{bottom:226.733333pt;}
.y51{bottom:232.333333pt;}
.y24{bottom:246.466667pt;}
.y47{bottom:251.533333pt;}
.y50{bottom:256.866667pt;}
.y23{bottom:275.000000pt;}
.y46{bottom:276.333333pt;}
.y4f{bottom:281.666667pt;}
.y45{bottom:300.893333pt;}
.y22{bottom:303.560000pt;}
.y4e{bottom:306.226667pt;}
.y5c{bottom:320.360000pt;}
.y44{bottom:325.693333pt;}
.y21{bottom:331.040000pt;}
.y5b{bottom:341.693333pt;}
.y43{bottom:350.226667pt;}
.y20{bottom:355.560000pt;}
.y5a{bottom:362.773333pt;}
.y42{bottom:375.026667pt;}
.y1f{bottom:380.360000pt;}
.y59{bottom:383.840000pt;}
.y41{bottom:399.560000pt;}
.y1e{bottom:404.893333pt;}
.y58{bottom:405.706667pt;}
.y40{bottom:424.360000pt;}
.y1d{bottom:429.706667pt;}
.y3f{bottom:449.160000pt;}
.y1c{bottom:454.533333pt;}
.y3e{bottom:473.733333pt;}
.y1b{bottom:479.066667pt;}
.y3d{bottom:498.533333pt;}
.y1a{bottom:503.866667pt;}
.y3c{bottom:523.066667pt;}
.y19{bottom:528.400000pt;}
.y3b{bottom:547.866667pt;}
.y18{bottom:553.200000pt;}
.y3a{bottom:572.400000pt;}
.y17{bottom:577.733333pt;}
.y39{bottom:597.200000pt;}
.y16{bottom:602.560000pt;}
.y38{bottom:621.760000pt;}
.y15{bottom:627.360000pt;}
.y37{bottom:646.560000pt;}
.y14{bottom:651.893333pt;}
.y36{bottom:671.360000pt;}
.y13{bottom:676.693333pt;}
.y35{bottom:695.893333pt;}
.y12{bottom:701.226667pt;}
.y34{bottom:720.706667pt;}
.y11{bottom:726.040000pt;}
.y33{bottom:745.226667pt;}
.y10{bottom:750.560000pt;}
.y32{bottom:770.066667pt;}
.yf{bottom:775.400000pt;}
.y31{bottom:794.600000pt;}
.ye{bottom:800.200000pt;}
.y30{bottom:820.733333pt;}
.yd{bottom:824.733333pt;}
.y2f{bottom:845.533333pt;}
.yc{bottom:849.533333pt;}
.y2e{bottom:871.400000pt;}
.yb{bottom:874.066667pt;}
.y2d{bottom:896.200000pt;}
.ya{bottom:898.866667pt;}
.y2c{bottom:920.760000pt;}
.y9{bottom:923.440000pt;}
.y2b{bottom:946.893333pt;}
.y8{bottom:948.226667pt;}
.y2a{bottom:971.693333pt;}
.y7{bottom:973.040000pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h2{height:37.630208pt;}
.h8{height:52.135417pt;}
.h7{height:52.682292pt;}
.h9{height:55.270833pt;}
.h3{height:55.520833pt;}
.hc{height:65.781915pt;}
.h6{height:66.625000pt;}
.h5{height:73.281250pt;}
.hb{height:75.508333pt;}
.ha{height:76.745567pt;}
.h4{height:77.729167pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.499988pt;}
.x6{left:199.533322pt;}
.x9{left:236.599988pt;}
.xa{left:253.133322pt;}
.x8{left:284.906655pt;}
.xb{left:291.839988pt;}
.x4{left:311.839988pt;}
.x5{left:382.799988pt;}
.x7{left:396.666655pt;}
.x2{left:406.266655pt;}
.x1{left:453.733322pt;}
}




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