
    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_e934ca310ee86a8f2415bc58.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_c41b02d983164dde941c133c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;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_b6de8c3e47531995a544a50c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.117000;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_b04e47fa02cb5e6b89b43e09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976000;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:-24.822000px;}
.v4{vertical-align:-13.902000px;}
.v3{vertical-align:-11.124000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.902000px;}
.v1{vertical-align:29.790000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000014px;}
.ls6{letter-spacing:0.002465px;}
.ls0{letter-spacing:2.986160px;}
.ls2{letter-spacing:2.990623px;}
.ls1{letter-spacing:2.992160px;}
.ls8{letter-spacing:2.992848px;}
.ls3{letter-spacing:16.974994px;}
.ls5{letter-spacing:16.976329px;}
.ls4{letter-spacing:16.977430px;}
.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:-36.582912px;}
.ws2d{word-spacing:-33.092700px;}
.ws5{word-spacing:-29.266146px;}
.ws0{word-spacing:-28.715287px;}
.ws1{word-spacing:-28.611995px;}
.ws7{word-spacing:-20.873779px;}
.ws2{word-spacing:-19.941274px;}
.ws3{word-spacing:-19.869542px;}
.wsd{word-spacing:-16.617617px;}
.ws8{word-spacing:-13.294127px;}
.ws9{word-spacing:-13.246708px;}
.ws6{word-spacing:-10.400954px;}
.ws32{word-spacing:-2.809453px;}
.ws29{word-spacing:-2.749678px;}
.ws30{word-spacing:-2.630126px;}
.ws2e{word-spacing:-2.570351px;}
.ws34{word-spacing:-2.510575px;}
.ws1a{word-spacing:-2.391024px;}
.ws21{word-spacing:-2.331248px;}
.ws23{word-spacing:-2.271473px;}
.ws28{word-spacing:-2.151922px;}
.ws26{word-spacing:-2.092146px;}
.ws1e{word-spacing:-2.032370px;}
.ws1c{word-spacing:-1.972595px;}
.ws18{word-spacing:-0.717307px;}
.wsf{word-spacing:-0.657532px;}
.ws11{word-spacing:-0.597756px;}
.ws17{word-spacing:-0.478205px;}
.ws15{word-spacing:-0.418429px;}
.wsb{word-spacing:-0.239102px;}
.wse{word-spacing:0.000000px;}
.wsa{word-spacing:0.187845px;}
.ws36{word-spacing:9.391144px;}
.ws33{word-spacing:9.397301px;}
.ws31{word-spacing:9.409301px;}
.ws2a{word-spacing:9.427301px;}
.ws2c{word-spacing:9.439144px;}
.ws37{word-spacing:9.487144px;}
.ws2f{word-spacing:9.529301px;}
.ws35{word-spacing:9.607301px;}
.ws1b{word-spacing:9.763301px;}
.ws25{word-spacing:9.775301px;}
.ws1f{word-spacing:9.781144px;}
.ws24{word-spacing:9.787301px;}
.ws20{word-spacing:9.799144px;}
.ws2b{word-spacing:9.859144px;}
.ws22{word-spacing:9.871301px;}
.ws38{word-spacing:9.877144px;}
.ws27{word-spacing:10.063144px;}
.ws1d{word-spacing:10.195144px;}
.ws19{word-spacing:11.485144px;}
.ws10{word-spacing:11.497301px;}
.ws12{word-spacing:11.515301px;}
.ws14{word-spacing:11.533144px;}
.ws13{word-spacing:11.581144px;}
.ws16{word-spacing:11.695301px;}
.wsc{word-spacing:11.953144px;}
._10{margin-left:-6.806759px;}
._4{margin-left:-5.616026px;}
._5{margin-left:-4.184292px;}
._0{margin-left:-2.995480px;}
._1{margin-left:-1.136216px;}
._3{width:1.326872px;}
._7{width:3.434432px;}
._b{width:18.755329px;}
._2{width:24.996761px;}
._f{width:27.491516px;}
._11{width:31.149787px;}
._e{width:32.165972px;}
._c{width:33.779434px;}
._a{width:34.796099px;}
._d{width:46.924326px;}
._9{width:51.228649px;}
._8{width:605.066704px;}
._6{width:809.597245px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:39.711000px;}
.fs4{font-size:41.842800px;}
.fsa{font-size:46.329600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:52.948200px;}
.fs2{font-size:57.384600px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:63.537600px;}
.fs9{font-size:66.185400px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1a{bottom:63.168000px;}
.y11{bottom:114.213000px;}
.y19{bottom:132.715500px;}
.y2a{bottom:132.781500px;}
.y22{bottom:132.847500px;}
.y32{bottom:132.913500px;}
.y3a{bottom:133.111500px;}
.y18{bottom:150.648000px;}
.y29{bottom:150.714000px;}
.y21{bottom:150.780000px;}
.y31{bottom:150.846000px;}
.y39{bottom:151.044000px;}
.y17{bottom:182.403000px;}
.y28{bottom:182.469000px;}
.y20{bottom:182.535000px;}
.y30{bottom:182.601000px;}
.y38{bottom:182.799000px;}
.y10{bottom:247.821000px;}
.yf{bottom:265.753500px;}
.ye{bottom:297.510000px;}
.y2f{bottom:392.697000px;}
.y37{bottom:392.895000px;}
.y1f{bottom:393.159000px;}
.y16{bottom:393.291000px;}
.y27{bottom:393.357000px;}
.y3e{bottom:398.556000px;}
.y3d{bottom:416.488500px;}
.y3c{bottom:448.243500px;}
.yd{bottom:508.396500px;}
.y3b{bottom:658.339500px;}
.y2e{bottom:663.406500px;}
.y15{bottom:663.604500px;}
.y1e{bottom:663.736500px;}
.y26{bottom:663.802500px;}
.y36{bottom:664.000500px;}
.y2d{bottom:681.339000px;}
.y14{bottom:681.537000px;}
.y1d{bottom:681.669000px;}
.y25{bottom:681.735000px;}
.y35{bottom:681.933000px;}
.y2c{bottom:713.095500px;}
.y13{bottom:713.293500px;}
.y1c{bottom:713.425500px;}
.y24{bottom:713.491500px;}
.y34{bottom:713.688000px;}
.yc{bottom:758.445000px;}
.yb{bottom:873.807000px;}
.ya{bottom:897.945000px;}
.y9{bottom:909.672000px;}
.y33{bottom:923.784000px;}
.y2b{bottom:923.982000px;}
.y1b{bottom:924.048000px;}
.y23{bottom:924.114000px;}
.y12{bottom:924.180000px;}
.y8{bottom:933.810000px;}
.y7{bottom:945.537000px;}
.y6{bottom:969.676500px;}
.y5{bottom:996.346500px;}
.y4{bottom:1018.015500px;}
.y3{bottom:1069.740000px;}
.y2{bottom:1102.617000px;}
.y1{bottom:1135.494000px;}
.hc{height:32.338061px;}
.h8{height:36.248015px;}
.h5{height:36.277708px;}
.h9{height:36.957844px;}
.hd{height:36.963844px;}
.hb{height:45.309905px;}
.ha{height:46.197409px;}
.h6{height:51.825445px;}
.h7{height:52.578970px;}
.he{height:54.372250px;}
.h3{height:73.287527px;}
.h4{height:74.139245px;}
.h2{height:78.295639px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x4{left:113.382000px;}
.x2{left:114.577500px;}
.x6{left:117.177000px;}
.xc{left:128.418000px;}
.x1{left:140.374500px;}
.xb{left:155.331000px;}
.xa{left:214.290000px;}
.x5{left:319.218000px;}
.x8{left:334.161000px;}
.x3{left:340.995000px;}
.x7{left:365.452500px;}
.xe{left:438.136500px;}
.xd{left:441.901500px;}
@media print{
.v2{vertical-align:-22.064000pt;}
.v4{vertical-align:-12.357333pt;}
.v3{vertical-align:-9.888000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.357333pt;}
.v1{vertical-align:26.480000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000012pt;}
.ls6{letter-spacing:0.002191pt;}
.ls0{letter-spacing:2.654365pt;}
.ls2{letter-spacing:2.658332pt;}
.ls1{letter-spacing:2.659698pt;}
.ls8{letter-spacing:2.660309pt;}
.ls3{letter-spacing:15.088883pt;}
.ls5{letter-spacing:15.090070pt;}
.ls4{letter-spacing:15.091049pt;}
.ws4{word-spacing:-32.518144pt;}
.ws2d{word-spacing:-29.415733pt;}
.ws5{word-spacing:-26.014352pt;}
.ws0{word-spacing:-25.524700pt;}
.ws1{word-spacing:-25.432884pt;}
.ws7{word-spacing:-18.554470pt;}
.ws2{word-spacing:-17.725577pt;}
.ws3{word-spacing:-17.661815pt;}
.wsd{word-spacing:-14.771215pt;}
.ws8{word-spacing:-11.817002pt;}
.ws9{word-spacing:-11.774851pt;}
.ws6{word-spacing:-9.245293pt;}
.ws32{word-spacing:-2.497292pt;}
.ws29{word-spacing:-2.444158pt;}
.ws30{word-spacing:-2.337890pt;}
.ws2e{word-spacing:-2.284756pt;}
.ws34{word-spacing:-2.231622pt;}
.ws1a{word-spacing:-2.125355pt;}
.ws21{word-spacing:-2.072221pt;}
.ws23{word-spacing:-2.019087pt;}
.ws28{word-spacing:-1.912819pt;}
.ws26{word-spacing:-1.859685pt;}
.ws1e{word-spacing:-1.806551pt;}
.ws1c{word-spacing:-1.753418pt;}
.ws18{word-spacing:-0.637606pt;}
.wsf{word-spacing:-0.584473pt;}
.ws11{word-spacing:-0.531339pt;}
.ws17{word-spacing:-0.425071pt;}
.ws15{word-spacing:-0.371937pt;}
.wsb{word-spacing:-0.212535pt;}
.wse{word-spacing:0.000000pt;}
.wsa{word-spacing:0.166973pt;}
.ws36{word-spacing:8.347683pt;}
.ws33{word-spacing:8.353156pt;}
.ws31{word-spacing:8.363823pt;}
.ws2a{word-spacing:8.379823pt;}
.ws2c{word-spacing:8.390350pt;}
.ws37{word-spacing:8.433017pt;}
.ws2f{word-spacing:8.470490pt;}
.ws35{word-spacing:8.539823pt;}
.ws1b{word-spacing:8.678490pt;}
.ws25{word-spacing:8.689156pt;}
.ws1f{word-spacing:8.694350pt;}
.ws24{word-spacing:8.699823pt;}
.ws20{word-spacing:8.710350pt;}
.ws2b{word-spacing:8.763683pt;}
.ws22{word-spacing:8.774490pt;}
.ws38{word-spacing:8.779683pt;}
.ws27{word-spacing:8.945017pt;}
.ws1d{word-spacing:9.062350pt;}
.ws19{word-spacing:10.209017pt;}
.ws10{word-spacing:10.219823pt;}
.ws12{word-spacing:10.235823pt;}
.ws14{word-spacing:10.251683pt;}
.ws13{word-spacing:10.294350pt;}
.ws16{word-spacing:10.395823pt;}
.wsc{word-spacing:10.625017pt;}
._10{margin-left:-6.050452pt;}
._4{margin-left:-4.992023pt;}
._5{margin-left:-3.719371pt;}
._0{margin-left:-2.662649pt;}
._1{margin-left:-1.009970pt;}
._3{width:1.179442pt;}
._7{width:3.052829pt;}
._b{width:16.671404pt;}
._2{width:22.219343pt;}
._f{width:24.436903pt;}
._11{width:27.688700pt;}
._e{width:28.591975pt;}
._c{width:30.026163pt;}
._a{width:30.929866pt;}
._d{width:41.710512pt;}
._9{width:45.536577pt;}
._8{width:537.837070pt;}
._6{width:719.641996pt;}
.fs8{font-size:35.298667pt;}
.fs4{font-size:37.193600pt;}
.fsa{font-size:41.181867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.065067pt;}
.fs2{font-size:51.008533pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:56.477867pt;}
.fs9{font-size:58.831467pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:56.149333pt;}
.y11{bottom:101.522667pt;}
.y19{bottom:117.969333pt;}
.y2a{bottom:118.028000pt;}
.y22{bottom:118.086667pt;}
.y32{bottom:118.145333pt;}
.y3a{bottom:118.321333pt;}
.y18{bottom:133.909333pt;}
.y29{bottom:133.968000pt;}
.y21{bottom:134.026667pt;}
.y31{bottom:134.085333pt;}
.y39{bottom:134.261333pt;}
.y17{bottom:162.136000pt;}
.y28{bottom:162.194667pt;}
.y20{bottom:162.253333pt;}
.y30{bottom:162.312000pt;}
.y38{bottom:162.488000pt;}
.y10{bottom:220.285333pt;}
.yf{bottom:236.225333pt;}
.ye{bottom:264.453333pt;}
.y2f{bottom:349.064000pt;}
.y37{bottom:349.240000pt;}
.y1f{bottom:349.474667pt;}
.y16{bottom:349.592000pt;}
.y27{bottom:349.650667pt;}
.y3e{bottom:354.272000pt;}
.y3d{bottom:370.212000pt;}
.y3c{bottom:398.438667pt;}
.yd{bottom:451.908000pt;}
.y3b{bottom:585.190667pt;}
.y2e{bottom:589.694667pt;}
.y15{bottom:589.870667pt;}
.y1e{bottom:589.988000pt;}
.y26{bottom:590.046667pt;}
.y36{bottom:590.222667pt;}
.y2d{bottom:605.634667pt;}
.y14{bottom:605.810667pt;}
.y1d{bottom:605.928000pt;}
.y25{bottom:605.986667pt;}
.y35{bottom:606.162667pt;}
.y2c{bottom:633.862667pt;}
.y13{bottom:634.038667pt;}
.y1c{bottom:634.156000pt;}
.y24{bottom:634.214667pt;}
.y34{bottom:634.389333pt;}
.yc{bottom:674.173333pt;}
.yb{bottom:776.717333pt;}
.ya{bottom:798.173333pt;}
.y9{bottom:808.597333pt;}
.y33{bottom:821.141333pt;}
.y2b{bottom:821.317333pt;}
.y1b{bottom:821.376000pt;}
.y23{bottom:821.434667pt;}
.y12{bottom:821.493333pt;}
.y8{bottom:830.053333pt;}
.y7{bottom:840.477333pt;}
.y6{bottom:861.934667pt;}
.y5{bottom:885.641333pt;}
.y4{bottom:904.902667pt;}
.y3{bottom:950.880000pt;}
.y2{bottom:980.104000pt;}
.y1{bottom:1009.328000pt;}
.hc{height:28.744943pt;}
.h8{height:32.220458pt;}
.h5{height:32.246851pt;}
.h9{height:32.851417pt;}
.hd{height:32.856750pt;}
.hb{height:40.275471pt;}
.ha{height:41.064364pt;}
.h6{height:46.067062pt;}
.h7{height:46.736862pt;}
.he{height:48.330889pt;}
.h3{height:65.144468pt;}
.h4{height:65.901551pt;}
.h2{height:69.596124pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x4{left:100.784000pt;}
.x2{left:101.846667pt;}
.x6{left:104.157333pt;}
.xc{left:114.149333pt;}
.x1{left:124.777333pt;}
.xb{left:138.072000pt;}
.xa{left:190.480000pt;}
.x5{left:283.749333pt;}
.x8{left:297.032000pt;}
.x3{left:303.106667pt;}
.x7{left:324.846667pt;}
.xe{left:389.454667pt;}
.xd{left:392.801333pt;}
}




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