
    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_fc3d5f22c623d200412d86fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_98b3bcb75147c14602b7d909.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_55e61fc8e522f7b99b69d69b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_df017e5bac57e40d955c4702.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.169922;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_ccfb771a8b409ac965a8ce0c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.281250;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_7e6d5535240e952a618486e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.930664;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_fcd0ad73515867c2e1520d2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765137;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_cbcb62f05f277b0485387a71.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6a592dd66040d2d84d62e787.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_7223ea594c01136fc2c62b0d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.880371;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);}
.v5{vertical-align:-35.279986px;}
.v7{vertical-align:-26.639989px;}
.v2{vertical-align:-8.639997px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.559993px;}
.v6{vertical-align:17.999993px;}
.v3{vertical-align:20.159992px;}
.v4{vertical-align:26.639989px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.182160px;}
.ls9{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.324720px;}
.ls4{letter-spacing:0.429120px;}
.ls1{letter-spacing:70.559972px;}
.ls3{letter-spacing:83.814446px;}
.ls6{letter-spacing:122.142191px;}
.ls5{letter-spacing:982.083927px;}
.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;}
}
.wse{word-spacing:-58.319977px;}
.wsf{word-spacing:-38.159985px;}
.ws2{word-spacing:-35.999986px;}
.ws7{word-spacing:-26.999989px;}
.ws10{word-spacing:-16.212954px;}
.ws5{word-spacing:-2.051999px;}
.wsc{word-spacing:-1.800035px;}
.ws6{word-spacing:-1.584035px;}
.ws15{word-spacing:-1.511999px;}
.ws11{word-spacing:-1.366527px;}
.ws14{word-spacing:-1.331963px;}
.ws17{word-spacing:-1.080000px;}
.ws12{word-spacing:-0.899996px;}
.ws4{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.791964px;}
.wsb{word-spacing:-0.396036px;}
.ws9{word-spacing:-0.359964px;}
.ws16{word-spacing:-0.324000px;}
.wsa{word-spacing:-0.143964px;}
.ws13{word-spacing:-0.072036px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.359964px;}
.ws0{word-spacing:4.355859px;}
.ws3{word-spacing:4.716034px;}
.ws8{word-spacing:13.788030px;}
._d{margin-left:-11.735923px;}
._2{margin-left:-8.639997px;}
._c{margin-left:-7.631776px;}
._f{margin-left:-6.263424px;}
._5{margin-left:-5.040000px;}
._0{margin-left:-2.879999px;}
._3{margin-left:-1.154537px;}
._1{width:1.007784px;}
._4{width:3.069146px;}
._8{width:19.872505px;}
._b{width:24.650589px;}
._7{width:27.215752px;}
._e{width:28.449629px;}
._10{width:30.464156px;}
._6{width:31.716023px;}
._a{width:36.072057px;}
._9{width:42.120036px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(153,51,0);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.999986px;}
.fs8{font-size:38.159985px;}
.fs9{font-size:39.599984px;}
.fs4{font-size:53.999978px;}
.fs7{font-size:58.319977px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs1{font-size:95.759962px;}
.fs6{font-size:107.999957px;}
.fsa{font-size:120.239952px;}
.fs0{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y9{bottom:74.400327px;}
.y7{bottom:81.960324px;}
.y6{bottom:98.160318px;}
.y8{bottom:99.600317px;}
.y28{bottom:202.020276px;}
.y36{bottom:203.820275px;}
.y2b{bottom:208.140274px;}
.y25{bottom:212.100272px;}
.y37{bottom:225.240267px;}
.y35{bottom:229.560265px;}
.y22{bottom:240.000261px;}
.y27{bottom:259.080253px;}
.y33{bottom:268.440250px;}
.y39{bottom:280.860245px;}
.y26{bottom:300.480237px;}
.y5{bottom:331.440224px;}
.y2a{bottom:346.020219px;}
.y4{bottom:359.520213px;}
.y11{bottom:360.960213px;}
.y31{bottom:363.120212px;}
.y3{bottom:387.780202px;}
.y10{bottom:400.020197px;}
.y32{bottom:401.820196px;}
.y23{bottom:405.420195px;}
.y24{bottom:414.780191px;}
.y34{bottom:426.120187px;}
.yf{bottom:439.080181px;}
.y2d{bottom:451.320176px;}
.y38{bottom:455.280175px;}
.y29{bottom:456.180175px;}
.y2c{bottom:468.780169px;}
.ye{bottom:477.960166px;}
.y2{bottom:481.920164px;}
.y30{bottom:500.640157px;}
.y46{bottom:502.080156px;}
.y17{bottom:503.160156px;}
.yd{bottom:517.020150px;}
.y2f{bottom:518.100150px;}
.y1{bottom:525.120147px;}
.y2e{bottom:535.740143px;}
.y1d{bottom:536.100143px;}
.y45{bottom:541.140141px;}
.y16{bottom:542.220140px;}
.yc{bottom:556.080135px;}
.y21{bottom:571.560128px;}
.y1c{bottom:575.160127px;}
.y44{bottom:580.020125px;}
.y15{bottom:581.100125px;}
.y43{bottom:593.520120px;}
.yb{bottom:594.960119px;}
.y20{bottom:610.620113px;}
.y1b{bottom:614.040111px;}
.y3c{bottom:619.080109px;}
.y14{bottom:620.160109px;}
.y3f{bottom:623.400108px;}
.y42{bottom:632.580104px;}
.y1f{bottom:649.680097px;}
.y1a{bottom:653.100096px;}
.y3b{bottom:658.140094px;}
.y13{bottom:659.220093px;}
.y3e{bottom:662.460092px;}
.y41{bottom:671.640088px;}
.y12{bottom:680.100085px;}
.y1e{bottom:688.560082px;}
.y19{bottom:692.160080px;}
.y3a{bottom:697.020078px;}
.y3d{bottom:701.340076px;}
.y40{bottom:710.520073px;}
.ya{bottom:792.060040px;}
.y18{bottom:792.960040px;}
.h9{height:27.998426px;}
.ha{height:42.458538px;}
.h7{height:43.739983px;}
.hc{height:46.619981px;}
.h5{height:47.777325px;}
.h4{height:48.411543px;}
.hd{height:54.539978px;}
.hb{height:55.259978px;}
.h8{height:63.899974px;}
.h3{height:82.635787px;}
.h2{height:96.508086px;}
.h6{height:105.996051px;}
.hf{height:118.008937px;}
.he{height:121.179327px;}
.h1{height:145.124942px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xc{left:183.406427px;}
.x2a{left:191.686423px;}
.x2d{left:198.706421px;}
.xd{left:200.326420px;}
.x1{left:208.786416px;}
.x2c{left:210.766416px;}
.x11{left:223.726411px;}
.x2e{left:234.166406px;}
.x10{left:311.206376px;}
.xf{left:317.866373px;}
.xe{left:356.206358px;}
.x2{left:385.726346px;}
.x9{left:395.986342px;}
.x6{left:433.246327px;}
.xa{left:443.146323px;}
.x3{left:446.926321px;}
.x1d{left:450.166320px;}
.x12{left:462.046315px;}
.x7{left:467.626313px;}
.x2b{left:494.626302px;}
.xb{left:519.826292px;}
.x4{left:526.666289px;}
.x2f{left:537.286285px;}
.x21{left:540.526284px;}
.x8{left:543.406283px;}
.x16{left:546.646281px;}
.x1b{left:566.266273px;}
.x15{left:568.066273px;}
.x26{left:587.146265px;}
.x25{left:588.226265px;}
.x20{left:601.186260px;}
.x22{left:612.526255px;}
.x1c{left:614.686254px;}
.x27{left:625.846250px;}
.x29{left:631.246248px;}
.x1a{left:646.186242px;}
.x18{left:667.786233px;}
.x19{left:682.366227px;}
.x17{left:685.786226px;}
.x14{left:692.086223px;}
.x23{left:693.166223px;}
.x1f{left:721.786211px;}
.x28{left:728.986208px;}
.x1e{left:732.766207px;}
.x24{left:748.426201px;}
.x13{left:753.466199px;}
.x5{left:880.546148px;}
@media print{
.v5{vertical-align:-31.359987pt;}
.v7{vertical-align:-23.679991pt;}
.v2{vertical-align:-7.679997pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.719994pt;}
.v6{vertical-align:15.999994pt;}
.v3{vertical-align:17.919993pt;}
.v4{vertical-align:23.679991pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.161920pt;}
.ls9{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.288640pt;}
.ls4{letter-spacing:0.381440pt;}
.ls1{letter-spacing:62.719975pt;}
.ls3{letter-spacing:74.501730pt;}
.ls6{letter-spacing:108.570837pt;}
.ls5{letter-spacing:872.963491pt;}
.wse{word-spacing:-51.839979pt;}
.wsf{word-spacing:-33.919986pt;}
.ws2{word-spacing:-31.999987pt;}
.ws7{word-spacing:-23.999990pt;}
.ws10{word-spacing:-14.411514pt;}
.ws5{word-spacing:-1.823999pt;}
.wsc{word-spacing:-1.600031pt;}
.ws6{word-spacing:-1.408031pt;}
.ws15{word-spacing:-1.343999pt;}
.ws11{word-spacing:-1.214691pt;}
.ws14{word-spacing:-1.183968pt;}
.ws17{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.799996pt;}
.ws4{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.703968pt;}
.wsb{word-spacing:-0.352032pt;}
.ws9{word-spacing:-0.319968pt;}
.ws16{word-spacing:-0.288000pt;}
.wsa{word-spacing:-0.127968pt;}
.ws13{word-spacing:-0.064032pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.319968pt;}
.ws0{word-spacing:3.871875pt;}
.ws3{word-spacing:4.192030pt;}
.ws8{word-spacing:12.256027pt;}
._d{margin-left:-10.431932pt;}
._2{margin-left:-7.679997pt;}
._c{margin-left:-6.783801pt;}
._f{margin-left:-5.567488pt;}
._5{margin-left:-4.480000pt;}
._0{margin-left:-2.559999pt;}
._3{margin-left:-1.026255pt;}
._1{width:0.895808pt;}
._4{width:2.728130pt;}
._8{width:17.664449pt;}
._b{width:21.911635pt;}
._7{width:24.191780pt;}
._e{width:25.288559pt;}
._10{width:27.079250pt;}
._6{width:28.192021pt;}
._a{width:32.064050pt;}
._9{width:37.440032pt;}
.fs5{font-size:31.999987pt;}
.fs8{font-size:33.919986pt;}
.fs9{font-size:35.199986pt;}
.fs4{font-size:47.999981pt;}
.fs7{font-size:51.839979pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs1{font-size:85.119966pt;}
.fs6{font-size:95.999962pt;}
.fsa{font-size:106.879957pt;}
.fs0{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:66.133624pt;}
.y7{bottom:72.853622pt;}
.y6{bottom:87.253616pt;}
.y8{bottom:88.533615pt;}
.y28{bottom:179.573579pt;}
.y36{bottom:181.173578pt;}
.y2b{bottom:185.013577pt;}
.y25{bottom:188.533575pt;}
.y37{bottom:200.213571pt;}
.y35{bottom:204.053569pt;}
.y22{bottom:213.333565pt;}
.y27{bottom:230.293559pt;}
.y33{bottom:238.613555pt;}
.y39{bottom:249.653551pt;}
.y26{bottom:267.093544pt;}
.y5{bottom:294.613533pt;}
.y2a{bottom:307.573528pt;}
.y4{bottom:319.573523pt;}
.y11{bottom:320.853522pt;}
.y31{bottom:322.773522pt;}
.y3{bottom:344.693513pt;}
.y10{bottom:355.573508pt;}
.y32{bottom:357.173508pt;}
.y23{bottom:360.373507pt;}
.y24{bottom:368.693503pt;}
.y34{bottom:378.773499pt;}
.yf{bottom:390.293495pt;}
.y2d{bottom:401.173490pt;}
.y38{bottom:404.693489pt;}
.y29{bottom:405.493488pt;}
.y2c{bottom:416.693484pt;}
.ye{bottom:424.853481pt;}
.y2{bottom:428.373479pt;}
.y30{bottom:445.013473pt;}
.y46{bottom:446.293472pt;}
.y17{bottom:447.253472pt;}
.yd{bottom:459.573467pt;}
.y2f{bottom:460.533466pt;}
.y1{bottom:466.773464pt;}
.y2e{bottom:476.213460pt;}
.y1d{bottom:476.533460pt;}
.y45{bottom:481.013458pt;}
.y16{bottom:481.973458pt;}
.yc{bottom:494.293453pt;}
.y21{bottom:508.053447pt;}
.y1c{bottom:511.253446pt;}
.y44{bottom:515.573444pt;}
.y15{bottom:516.533444pt;}
.y43{bottom:527.573440pt;}
.yb{bottom:528.853439pt;}
.y20{bottom:542.773434pt;}
.y1b{bottom:545.813432pt;}
.y3c{bottom:550.293431pt;}
.y14{bottom:551.253430pt;}
.y3f{bottom:554.133429pt;}
.y42{bottom:562.293426pt;}
.y1f{bottom:577.493420pt;}
.y1a{bottom:580.533418pt;}
.y3b{bottom:585.013417pt;}
.y13{bottom:585.973416pt;}
.y3e{bottom:588.853415pt;}
.y41{bottom:597.013412pt;}
.y12{bottom:604.533409pt;}
.y1e{bottom:612.053406pt;}
.y19{bottom:615.253405pt;}
.y3a{bottom:619.573403pt;}
.y3d{bottom:623.413401pt;}
.y40{bottom:631.573398pt;}
.ya{bottom:704.053369pt;}
.y18{bottom:704.853369pt;}
.h9{height:24.887490pt;}
.ha{height:37.740922pt;}
.h7{height:38.879984pt;}
.hc{height:41.439983pt;}
.h5{height:42.468733pt;}
.h4{height:43.032483pt;}
.hd{height:48.479981pt;}
.hb{height:49.119980pt;}
.h8{height:56.799977pt;}
.h3{height:73.454033pt;}
.h2{height:85.784966pt;}
.h6{height:94.218712pt;}
.hf{height:104.896833pt;}
.he{height:107.714957pt;}
.h1{height:128.999948pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xc{left:163.027935pt;}
.x2a{left:170.387932pt;}
.x2d{left:176.627929pt;}
.xd{left:178.067929pt;}
.x1{left:185.587926pt;}
.x2c{left:187.347925pt;}
.x11{left:198.867920pt;}
.x2e{left:208.147917pt;}
.x10{left:276.627889pt;}
.xf{left:282.547887pt;}
.xe{left:316.627873pt;}
.x2{left:342.867863pt;}
.x9{left:351.987859pt;}
.x6{left:385.107846pt;}
.xa{left:393.907842pt;}
.x3{left:397.267841pt;}
.x1d{left:400.147840pt;}
.x12{left:410.707836pt;}
.x7{left:415.667834pt;}
.x2b{left:439.667824pt;}
.xb{left:462.067815pt;}
.x4{left:468.147813pt;}
.x2f{left:477.587809pt;}
.x21{left:480.467808pt;}
.x8{left:483.027807pt;}
.x16{left:485.907806pt;}
.x1b{left:503.347799pt;}
.x15{left:504.947798pt;}
.x26{left:521.907791pt;}
.x25{left:522.867791pt;}
.x20{left:534.387786pt;}
.x22{left:544.467782pt;}
.x1c{left:546.387781pt;}
.x27{left:556.307777pt;}
.x29{left:561.107776pt;}
.x1a{left:574.387770pt;}
.x18{left:593.587763pt;}
.x19{left:606.547757pt;}
.x17{left:609.587756pt;}
.x14{left:615.187754pt;}
.x23{left:616.147754pt;}
.x1f{left:641.587743pt;}
.x28{left:647.987741pt;}
.x1e{left:651.347739pt;}
.x24{left:665.267734pt;}
.x13{left:669.747732pt;}
.x5{left:782.707687pt;}
}




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