
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_1c605f2b09a228f4abd700f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_0165b3770cceca4d84b6c92f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_dca1ecfc3c9721a48a27bcd0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_ce93375a0e6201b7e4e83b3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_bf42452781b8317b2e2a9869.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_a5addcdef2cd8dec59b634ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_8ff03d7fec469816f57e637a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_089d6d7be76ae761f917f351.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_1332ce6a55a044065c4a9195.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.lsb{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.123600px;}
.lsa{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.056160px;}
.ls7{letter-spacing:-0.007920px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.185760px;}
.ls1{letter-spacing:0.186000px;}
.ls0{letter-spacing:0.189600px;}
.ls4{letter-spacing:0.360000px;}
.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:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws0{word-spacing:-16.563840px;}
.ws1{word-spacing:-16.374240px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-5.244480px;}
._1{margin-left:-3.683520px;}
._7{margin-left:-2.583600px;}
._0{margin-left:-1.059600px;}
._3{width:1.075680px;}
._4{width:2.220480px;}
._6{width:3.838800px;}
._f{width:4.903920px;}
._e{width:6.192000px;}
._5{width:7.485120px;}
._b{width:9.002880px;}
._8{width:10.872000px;}
._9{width:12.392640px;}
._14{width:13.836480px;}
._d{width:14.990880px;}
._13{width:16.560000px;}
._10{width:19.728000px;}
._11{width:21.096000px;}
._12{width:22.512000px;}
._15{width:23.904000px;}
._16{width:34.848000px;}
._17{width:36.216000px;}
._c{width:53.611200px;}
._2{width:199.625760px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.y31{bottom:-24.330000px;}
.y0{bottom:0.000000px;}
.y30{bottom:8.820000px;}
.y4{bottom:10.260000px;}
.y2{bottom:80.496000px;}
.y5b{bottom:112.176000px;}
.y2d{bottom:135.036000px;}
.y5a{bottom:137.016000px;}
.y2c{bottom:159.870000px;}
.y59{bottom:161.850000px;}
.y2b{bottom:184.710000px;}
.y58{bottom:186.690000px;}
.y2a{bottom:209.550000px;}
.y57{bottom:211.530000px;}
.y29{bottom:234.390000px;}
.y56{bottom:236.370000px;}
.y28{bottom:259.230000px;}
.y55{bottom:261.210000px;}
.y27{bottom:284.070000px;}
.y54{bottom:286.050000px;}
.y26{bottom:308.910000px;}
.y53{bottom:310.890000px;}
.y25{bottom:333.750000px;}
.y52{bottom:335.730000px;}
.y24{bottom:358.635000px;}
.y51{bottom:360.615000px;}
.y23{bottom:383.475000px;}
.y50{bottom:385.455000px;}
.y22{bottom:408.315000px;}
.y4f{bottom:410.295000px;}
.y21{bottom:433.155000px;}
.y4e{bottom:435.135000px;}
.y20{bottom:457.995000px;}
.y4d{bottom:459.975000px;}
.y1f{bottom:482.835000px;}
.y4c{bottom:484.815000px;}
.y1e{bottom:507.675000px;}
.y4b{bottom:509.655000px;}
.y1d{bottom:532.515000px;}
.y4a{bottom:534.495000px;}
.y1c{bottom:557.355000px;}
.y49{bottom:559.335000px;}
.y1b{bottom:582.195000px;}
.y48{bottom:584.175000px;}
.y47{bottom:606.165000px;}
.y1a{bottom:607.065000px;}
.y46{bottom:625.605000px;}
.y19{bottom:631.725000px;}
.y45{bottom:650.445000px;}
.y18{bottom:655.845000px;}
.y44{bottom:675.285000px;}
.y17{bottom:678.525000px;}
.y43{bottom:697.245000px;}
.y16{bottom:701.385000px;}
.y42{bottom:716.685000px;}
.y15{bottom:724.065000px;}
.y41{bottom:741.525000px;}
.y14{bottom:746.925000px;}
.y40{bottom:766.365000px;}
.y13{bottom:769.605000px;}
.y3f{bottom:791.205000px;}
.y12{bottom:792.465000px;}
.y11{bottom:815.145000px;}
.y3e{bottom:816.045000px;}
.y10{bottom:838.005000px;}
.y3d{bottom:840.885000px;}
.yf{bottom:860.685000px;}
.y3c{bottom:865.725000px;}
.ye{bottom:879.990000px;}
.y3b{bottom:890.610000px;}
.yd{bottom:898.890000px;}
.y3a{bottom:915.450000px;}
.yc{bottom:918.690000px;}
.y39{bottom:940.290000px;}
.yb{bottom:942.270000px;}
.ya{bottom:962.970000px;}
.y38{bottom:965.130000px;}
.y9{bottom:987.450000px;}
.y37{bottom:989.970000px;}
.y36{bottom:1014.810000px;}
.y8{bottom:1024.350000px;}
.y35{bottom:1039.650000px;}
.y7{bottom:1046.130000px;}
.y34{bottom:1061.610000px;}
.y33{bottom:1081.050000px;}
.y6{bottom:1083.750000px;}
.y5{bottom:1104.450000px;}
.y32{bottom:1105.890000px;}
.y1{bottom:1125.690000px;}
.y2e{bottom:1127.130000px;}
.y2f{bottom:1161.180000px;}
.y3{bottom:1161.540000px;}
.hb{height:23.040000px;}
.h4{height:26.460000px;}
.he{height:42.233555px;}
.h3{height:44.236406px;}
.h5{height:44.936719px;}
.hc{height:45.637031px;}
.hd{height:46.628800px;}
.hf{height:52.136719px;}
.h8{height:52.319180px;}
.h10{height:54.878906px;}
.ha{height:57.992344px;}
.h9{height:60.999961px;}
.h6{height:63.035156px;}
.h2{height:65.884219px;}
.h7{height:104.273438px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:241.950000px;}
.w3{width:672.585000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:10.800000px;}
.x1{left:108.035987px;}
.x4{left:150.509987px;}
.x2{left:166.350000px;}
.xd{left:449.714987px;}
.xa{left:498.524987px;}
.x9{left:499.604987px;}
.x10{left:504.104987px;}
.x6{left:566.925000px;}
.xe{left:591.044987px;}
.x12{left:592.124987px;}
.xc{left:594.644987px;}
.x5{left:606.524987px;}
.x7{left:646.664987px;}
.xb{left:649.544987px;}
.xf{left:670.649987px;}
.x11{left:684.149987px;}
.x8{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.109867pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.049920pt;}
.ls7{letter-spacing:-0.007040pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.165120pt;}
.ls1{letter-spacing:0.165333pt;}
.ls0{letter-spacing:0.168533pt;}
.ls4{letter-spacing:0.320000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws0{word-spacing:-14.723413pt;}
.ws1{word-spacing:-14.554880pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-4.661760pt;}
._1{margin-left:-3.274240pt;}
._7{margin-left:-2.296533pt;}
._0{margin-left:-0.941867pt;}
._3{width:0.956160pt;}
._4{width:1.973760pt;}
._6{width:3.412267pt;}
._f{width:4.359040pt;}
._e{width:5.504000pt;}
._5{width:6.653440pt;}
._b{width:8.002560pt;}
._8{width:9.664000pt;}
._9{width:11.015680pt;}
._14{width:12.299093pt;}
._d{width:13.325227pt;}
._13{width:14.720000pt;}
._10{width:17.536000pt;}
._11{width:18.752000pt;}
._12{width:20.010667pt;}
._15{width:21.248000pt;}
._16{width:30.976000pt;}
._17{width:32.192000pt;}
._c{width:47.654400pt;}
._2{width:177.445120pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.y31{bottom:-21.626667pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:7.840000pt;}
.y4{bottom:9.120000pt;}
.y2{bottom:71.552000pt;}
.y5b{bottom:99.712000pt;}
.y2d{bottom:120.032000pt;}
.y5a{bottom:121.792000pt;}
.y2c{bottom:142.106667pt;}
.y59{bottom:143.866667pt;}
.y2b{bottom:164.186667pt;}
.y58{bottom:165.946667pt;}
.y2a{bottom:186.266667pt;}
.y57{bottom:188.026667pt;}
.y29{bottom:208.346667pt;}
.y56{bottom:210.106667pt;}
.y28{bottom:230.426667pt;}
.y55{bottom:232.186667pt;}
.y27{bottom:252.506667pt;}
.y54{bottom:254.266667pt;}
.y26{bottom:274.586667pt;}
.y53{bottom:276.346667pt;}
.y25{bottom:296.666667pt;}
.y52{bottom:298.426667pt;}
.y24{bottom:318.786667pt;}
.y51{bottom:320.546667pt;}
.y23{bottom:340.866667pt;}
.y50{bottom:342.626667pt;}
.y22{bottom:362.946667pt;}
.y4f{bottom:364.706667pt;}
.y21{bottom:385.026667pt;}
.y4e{bottom:386.786667pt;}
.y20{bottom:407.106667pt;}
.y4d{bottom:408.866667pt;}
.y1f{bottom:429.186667pt;}
.y4c{bottom:430.946667pt;}
.y1e{bottom:451.266667pt;}
.y4b{bottom:453.026667pt;}
.y1d{bottom:473.346667pt;}
.y4a{bottom:475.106667pt;}
.y1c{bottom:495.426667pt;}
.y49{bottom:497.186667pt;}
.y1b{bottom:517.506667pt;}
.y48{bottom:519.266667pt;}
.y47{bottom:538.813333pt;}
.y1a{bottom:539.613333pt;}
.y46{bottom:556.093333pt;}
.y19{bottom:561.533333pt;}
.y45{bottom:578.173333pt;}
.y18{bottom:582.973333pt;}
.y44{bottom:600.253333pt;}
.y17{bottom:603.133333pt;}
.y43{bottom:619.773333pt;}
.y16{bottom:623.453333pt;}
.y42{bottom:637.053333pt;}
.y15{bottom:643.613333pt;}
.y41{bottom:659.133333pt;}
.y14{bottom:663.933333pt;}
.y40{bottom:681.213333pt;}
.y13{bottom:684.093333pt;}
.y3f{bottom:703.293333pt;}
.y12{bottom:704.413333pt;}
.y11{bottom:724.573333pt;}
.y3e{bottom:725.373333pt;}
.y10{bottom:744.893333pt;}
.y3d{bottom:747.453333pt;}
.yf{bottom:765.053333pt;}
.y3c{bottom:769.533333pt;}
.ye{bottom:782.213333pt;}
.y3b{bottom:791.653333pt;}
.yd{bottom:799.013333pt;}
.y3a{bottom:813.733333pt;}
.yc{bottom:816.613333pt;}
.y39{bottom:835.813333pt;}
.yb{bottom:837.573333pt;}
.ya{bottom:855.973333pt;}
.y38{bottom:857.893333pt;}
.y9{bottom:877.733333pt;}
.y37{bottom:879.973333pt;}
.y36{bottom:902.053333pt;}
.y8{bottom:910.533333pt;}
.y35{bottom:924.133333pt;}
.y7{bottom:929.893333pt;}
.y34{bottom:943.653333pt;}
.y33{bottom:960.933333pt;}
.y6{bottom:963.333333pt;}
.y5{bottom:981.733333pt;}
.y32{bottom:983.013333pt;}
.y1{bottom:1000.613333pt;}
.y2e{bottom:1001.893333pt;}
.y2f{bottom:1032.160000pt;}
.y3{bottom:1032.480000pt;}
.hb{height:20.480000pt;}
.h4{height:23.520000pt;}
.he{height:37.540937pt;}
.h3{height:39.321250pt;}
.h5{height:39.943750pt;}
.hc{height:40.566250pt;}
.hd{height:41.447822pt;}
.hf{height:46.343750pt;}
.h8{height:46.505938pt;}
.h10{height:48.781250pt;}
.ha{height:51.548750pt;}
.h9{height:54.222187pt;}
.h6{height:56.031250pt;}
.h2{height:58.563750pt;}
.h7{height:92.687500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:215.066667pt;}
.w3{width:597.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:9.600000pt;}
.x1{left:96.031988pt;}
.x4{left:133.786655pt;}
.x2{left:147.866667pt;}
.xd{left:399.746655pt;}
.xa{left:443.133322pt;}
.x9{left:444.093322pt;}
.x10{left:448.093322pt;}
.x6{left:503.933333pt;}
.xe{left:525.373322pt;}
.x12{left:526.333322pt;}
.xc{left:528.573322pt;}
.x5{left:539.133322pt;}
.x7{left:574.813322pt;}
.xb{left:577.373322pt;}
.xf{left:596.133322pt;}
.x11{left:608.133322pt;}
.x8{left:697.893322pt;}
}




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