
    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_11b9eb11c26f1384fa45f644.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_20a66f0ab96a7479701366ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.947000;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_7a53564ca9742c83cfd048fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_c6ccd43fcfc294b9cebb1edf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bc6017eafef50f9ca1f10a10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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_76f11df8bb4bc0eb2a76b363.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_0d04571b1400aecb7aa3dd46.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.694000;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_d9319a082accc16594ff0e5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_3355489981f2c4d47b89a53b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.804000;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_1ce4f93acb19b82b2a612bd6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.388000;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_aa35955c0776a1f0704ee9f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:93.276000px;}
.v2{vertical-align:120.750000px;}
.v3{vertical-align:122.436000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.071721px;}
.ls0{letter-spacing:2.987810px;}
.ls6{letter-spacing:29.884800px;}
.ls4{letter-spacing:39.658167px;}
.ls2{letter-spacing:49.574972px;}
.ls3{letter-spacing:56.760610px;}
.ls5{letter-spacing:320.305562px;}
.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;}
}
.ws1{word-spacing:-59.541095px;}
.wsb{word-spacing:-19.938338px;}
.wsa{word-spacing:-19.866617px;}
.ws11{word-spacing:-18.188354px;}
.wsd{word-spacing:-15.914810px;}
.wsc{word-spacing:-13.906632px;}
.ws10{word-spacing:-8.882243px;}
.ws1d{word-spacing:-6.694884px;}
.ws3{word-spacing:-1.147694px;}
.ws9{word-spacing:-0.191282px;}
.ws1b{word-spacing:-0.178490px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.191282px;}
.ws8{word-spacing:1.338977px;}
.ws15{word-spacing:6.886166px;}
.ws14{word-spacing:7.268731px;}
.ws16{word-spacing:8.416426px;}
.ws19{word-spacing:8.798990px;}
.ws1e{word-spacing:12.624638px;}
.ws2{word-spacing:19.893370px;}
.ws7{word-spacing:21.423629px;}
.ws17{word-spacing:21.806194px;}
.ws18{word-spacing:25.823124px;}
.ws4{word-spacing:28.118513px;}
.ws1a{word-spacing:39.413639px;}
.ws5{word-spacing:40.551869px;}
.ws12{word-spacing:47.629318px;}
.ws13{word-spacing:52.985225px;}
.wse{word-spacing:74.617254px;}
.wsf{word-spacing:218.208170px;}
.ws1c{word-spacing:516.351323px;}
._2{margin-left:-50.211720px;}
._d{margin-left:-22.953888px;}
._7{margin-left:-19.128240px;}
._4{margin-left:-17.944719px;}
._1f{margin-left:-11.166098px;}
._0{margin-left:-9.253296px;}
._8{margin-left:-5.738472px;}
._3{margin-left:-4.184310px;}
._1{margin-left:-3.084432px;}
._9{margin-left:-1.912824px;}
._15{width:1.052176px;}
._6{width:2.962526px;}
._a{width:4.643317px;}
._f{width:5.953711px;}
._5{width:7.161141px;}
._1d{width:10.530934px;}
._1e{width:47.605426px;}
._17{width:59.297544px;}
._18{width:61.569030px;}
._19{width:64.294800px;}
._c{width:66.040255px;}
._13{width:67.479594px;}
._b{width:77.973842px;}
._1a{width:81.271128px;}
._16{width:85.134855px;}
._e{width:88.372469px;}
._12{width:94.852114px;}
._11{width:104.387651px;}
._20{width:106.692565px;}
._14{width:130.385220px;}
._1b{width:144.035658px;}
._10{width:149.965402px;}
._1c{width:644.645256px;}
.fc4{color:transparent;}
.fc2{color:rgb(13,71,179);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,61,175);}
.fs7{font-size:32.065859px;}
.fs6{font-size:50.204448px;}
.fs8{font-size:57.376512px;}
.fs5{font-size:71.720640px;}
.fs9{font-size:178.490400px;}
.fs4{font-size:191.282400px;}
.fs3{font-size:214.176600px;}
.fs2{font-size:257.036400px;}
.fs0{font-size:308.443200px;}
.fs1{font-size:418.431000px;}
.y0{bottom:0.000000px;}
.y19{bottom:13.283421px;}
.y1c{bottom:26.161917px;}
.y17{bottom:26.161927px;}
.y18{bottom:35.696121px;}
.y2f{bottom:53.790467px;}
.y2c{bottom:85.168250px;}
.y2b{bottom:100.857140px;}
.y21{bottom:109.979832px;}
.y3d{bottom:116.536196px;}
.y2a{bottom:116.546030px;}
.y20{bottom:127.155373px;}
.y3c{bottom:134.466356px;}
.y1f{bottom:143.523593px;}
.y3b{bottom:152.396516px;}
.y1e{bottom:159.212483px;}
.y3a{bottom:170.326676px;}
.y1d{bottom:174.901373px;}
.y60{bottom:210.298500px;}
.y1b{bottom:232.556777px;}
.y3e{bottom:232.556781px;}
.y15{bottom:232.556787px;}
.y22{bottom:317.485899px;}
.y32{bottom:323.826314px;}
.y35{bottom:323.841978px;}
.y39{bottom:332.233242px;}
.y23{bottom:332.426931px;}
.y5e{bottom:336.835500px;}
.y5b{bottom:341.341500px;}
.y24{bottom:349.862246px;}
.y38{bottom:350.163402px;}
.y2e{bottom:352.227247px;}
.y31{bottom:359.900405px;}
.y34{bottom:359.916069px;}
.y2d{bottom:367.916137px;}
.y37{bottom:368.093562px;}
.y27{bottom:368.223334px;}
.y29{bottom:372.050849px;}
.y26{bottom:383.912224px;}
.y5d{bottom:384.141000px;}
.y36{bottom:386.023722px;}
.y28{bottom:387.739739px;}
.y5a{bottom:388.648500px;}
.y33{bottom:396.066485px;}
.y25{bottom:399.601114px;}
.y30{bottom:407.911124px;}
.y14{bottom:442.874964px;}
.y1a{bottom:443.315176px;}
.y16{bottom:443.319561px;}
.y5c{bottom:463.464000px;}
.y5f{bottom:464.491500px;}
.y58{bottom:688.186500px;}
.y57{bottom:747.447000px;}
.y4a{bottom:753.921000px;}
.y56{bottom:806.709000px;}
.y55{bottom:865.971000px;}
.y54{bottom:925.233000px;}
.y53{bottom:984.493500px;}
.y52{bottom:1043.181000px;}
.y51{bottom:1101.868500px;}
.y50{bottom:1160.556000px;}
.y4f{bottom:1219.818000px;}
.y4e{bottom:1326.936000px;}
.y4d{bottom:1575.966000px;}
.y49{bottom:1586.644500px;}
.y4c{bottom:1606.575000px;}
.y48{bottom:1633.951500px;}
.y47{bottom:1681.257000px;}
.y46{bottom:1726.089000px;}
.y45{bottom:1827.229500px;}
.y44{bottom:2375.938500px;}
.y43{bottom:2420.770500px;}
.y42{bottom:2468.076000px;}
.y41{bottom:2515.383000px;}
.y4b{bottom:2622.601500px;}
.y3f{bottom:2795.838000px;}
.y13{bottom:2865.619500px;}
.y40{bottom:3413.194500px;}
.y59{bottom:3414.222000px;}
.y11{bottom:3548.797500px;}
.y10{bottom:3596.104500px;}
.yf{bottom:3643.410000px;}
.ye{bottom:3690.717000px;}
.yd{bottom:3738.022500px;}
.yc{bottom:3827.686500px;}
.yb{bottom:3874.993500px;}
.ya{bottom:3922.300500px;}
.y9{bottom:3969.606000px;}
.y8{bottom:4016.913000px;}
.y12{bottom:4091.728500px;}
.y7{bottom:4243.383000px;}
.y6{bottom:4290.115500px;}
.y5{bottom:4337.422500px;}
.y4{bottom:4406.319000px;}
.y3{bottom:4539.075000px;}
.y2{bottom:4673.571000px;}
.y1{bottom:4802.979000px;}
.hc{height:23.360479px;}
.ha{height:36.574725px;}
.hb{height:38.143614px;}
.hd{height:43.592702px;}
.h9{height:52.214587px;}
.h8{height:52.249607px;}
.he{height:131.602291px;}
.h6{height:139.444870px;}
.h5{height:141.740258px;}
.h2{height:228.556411px;}
.hf{height:244.622338px;}
.h4{height:251.980861px;}
.h10{height:256.125310px;}
.h3{height:310.057371px;}
.h7{height:476.045735px;}
.h1{height:5052.000000px;}
.h0{height:5052.189000px;}
.w2{width:1190.562651px;}
.w0{width:3569.953500px;}
.w1{width:3570.000000px;}
.x0{left:0.000000px;}
.xe{left:21.357727px;}
.x16{left:62.755569px;}
.x17{left:74.847915px;}
.xf{left:91.134774px;}
.x2d{left:170.079000px;}
.x9{left:205.444500px;}
.x8{left:241.810500px;}
.x28{left:250.402500px;}
.x10{left:268.952400px;}
.x1{left:274.780500px;}
.x21{left:295.876500px;}
.xa{left:308.964000px;}
.x11{left:339.906974px;}
.x29{left:362.658000px;}
.x1f{left:377.380500px;}
.x15{left:425.841300px;}
.x12{left:435.316820px;}
.x14{left:439.288923px;}
.x13{left:448.253999px;}
.x20{left:473.977500px;}
.x5{left:546.508500px;}
.x2{left:571.003500px;}
.xb{left:580.937184px;}
.x19{left:683.624340px;}
.x18{left:735.136560px;}
.xd{left:818.426881px;}
.x3{left:902.394000px;}
.xc{left:914.532933px;}
.x4{left:919.210500px;}
.x1d{left:922.715160px;}
.x1a{left:954.781019px;}
.x1b{left:963.466826px;}
.x1c{left:981.503872px;}
.x1e{left:1075.809600px;}
.x2c{left:1217.446500px;}
.x7{left:1229.233500px;}
.x2a{left:1262.890500px;}
.x2b{left:1295.241000px;}
.x6{left:1298.095500px;}
.x27{left:1734.216000px;}
.x26{left:1740.798000px;}
.x25{left:1770.580500px;}
.x24{left:2283.091500px;}
.x22{left:2588.449500px;}
.x23{left:2811.126000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:82.912000pt;}
.v2{vertical-align:107.333333pt;}
.v3{vertical-align:108.832000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.063752pt;}
.ls0{letter-spacing:2.655831pt;}
.ls6{letter-spacing:26.564267pt;}
.ls4{letter-spacing:35.251704pt;}
.ls2{letter-spacing:44.066642pt;}
.ls3{letter-spacing:50.453876pt;}
.ls5{letter-spacing:284.716055pt;}
.ws1{word-spacing:-52.925418pt;}
.wsb{word-spacing:-17.722967pt;}
.wsa{word-spacing:-17.659215pt;}
.ws11{word-spacing:-16.167426pt;}
.wsd{word-spacing:-14.146498pt;}
.wsc{word-spacing:-12.361451pt;}
.ws10{word-spacing:-7.895327pt;}
.ws1d{word-spacing:-5.951008pt;}
.ws3{word-spacing:-1.020173pt;}
.ws9{word-spacing:-0.170029pt;}
.ws1b{word-spacing:-0.158658pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.170029pt;}
.ws8{word-spacing:1.190202pt;}
.ws15{word-spacing:6.121037pt;}
.ws14{word-spacing:6.461094pt;}
.ws16{word-spacing:7.481267pt;}
.ws19{word-spacing:7.821325pt;}
.ws1e{word-spacing:11.221901pt;}
.ws2{word-spacing:17.682995pt;}
.ws7{word-spacing:19.043226pt;}
.ws17{word-spacing:19.383283pt;}
.ws18{word-spacing:22.953888pt;}
.ws4{word-spacing:24.994234pt;}
.ws1a{word-spacing:35.034346pt;}
.ws5{word-spacing:36.046106pt;}
.ws12{word-spacing:42.337171pt;}
.ws13{word-spacing:47.097978pt;}
.wse{word-spacing:66.326448pt;}
.wsf{word-spacing:193.962817pt;}
.ws1c{word-spacing:458.978954pt;}
._2{margin-left:-44.632640pt;}
._d{margin-left:-20.403456pt;}
._7{margin-left:-17.002880pt;}
._4{margin-left:-15.950861pt;}
._1f{margin-left:-9.925421pt;}
._0{margin-left:-8.225152pt;}
._8{margin-left:-5.100864pt;}
._3{margin-left:-3.719387pt;}
._1{margin-left:-2.741717pt;}
._9{margin-left:-1.700288pt;}
._15{width:0.935268pt;}
._6{width:2.633357pt;}
._a{width:4.127393pt;}
._f{width:5.292188pt;}
._5{width:6.365459pt;}
._1d{width:9.360830pt;}
._1e{width:42.315934pt;}
._17{width:52.708928pt;}
._18{width:54.728027pt;}
._19{width:57.150933pt;}
._c{width:58.702449pt;}
._13{width:59.981861pt;}
._b{width:69.310082pt;}
._1a{width:72.241003pt;}
._16{width:75.675427pt;}
._e{width:78.553306pt;}
._12{width:84.312990pt;}
._11{width:92.789023pt;}
._20{width:94.837836pt;}
._14{width:115.897973pt;}
._1b{width:128.031696pt;}
._10{width:133.302579pt;}
._1c{width:573.018005pt;}
.fs7{font-size:28.502986pt;}
.fs6{font-size:44.626176pt;}
.fs8{font-size:51.001344pt;}
.fs5{font-size:63.751680pt;}
.fs9{font-size:158.658133pt;}
.fs4{font-size:170.028800pt;}
.fs3{font-size:190.379200pt;}
.fs2{font-size:228.476800pt;}
.fs0{font-size:274.171733pt;}
.fs1{font-size:371.938667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:11.807486pt;}
.y1c{bottom:23.255037pt;}
.y17{bottom:23.255046pt;}
.y18{bottom:31.729886pt;}
.y2f{bottom:47.813748pt;}
.y2c{bottom:75.705111pt;}
.y2b{bottom:89.650791pt;}
.y21{bottom:97.759850pt;}
.y3d{bottom:103.587730pt;}
.y2a{bottom:103.596471pt;}
.y20{bottom:113.026998pt;}
.y3c{bottom:119.525650pt;}
.y1f{bottom:127.576527pt;}
.y3b{bottom:135.463570pt;}
.y1e{bottom:141.522207pt;}
.y3a{bottom:151.401490pt;}
.y1d{bottom:155.467887pt;}
.y60{bottom:186.932000pt;}
.y1b{bottom:206.717135pt;}
.y3e{bottom:206.717138pt;}
.y15{bottom:206.717144pt;}
.y22{bottom:282.209688pt;}
.y32{bottom:287.845612pt;}
.y35{bottom:287.859536pt;}
.y39{bottom:295.318437pt;}
.y23{bottom:295.490606pt;}
.y5e{bottom:299.409333pt;}
.y5b{bottom:303.414667pt;}
.y24{bottom:310.988663pt;}
.y38{bottom:311.256357pt;}
.y2e{bottom:313.090887pt;}
.y31{bottom:319.911471pt;}
.y34{bottom:319.925395pt;}
.y2d{bottom:327.036567pt;}
.y37{bottom:327.194277pt;}
.y27{bottom:327.309630pt;}
.y29{bottom:330.711866pt;}
.y26{bottom:341.255310pt;}
.y5d{bottom:341.458667pt;}
.y36{bottom:343.132197pt;}
.y28{bottom:344.657546pt;}
.y5a{bottom:345.465333pt;}
.y33{bottom:352.059098pt;}
.y25{bottom:355.200990pt;}
.y30{bottom:362.587666pt;}
.y14{bottom:393.666635pt;}
.y1a{bottom:394.057934pt;}
.y16{bottom:394.061832pt;}
.y5c{bottom:411.968000pt;}
.y5f{bottom:412.881333pt;}
.y58{bottom:611.721333pt;}
.y57{bottom:664.397333pt;}
.y4a{bottom:670.152000pt;}
.y56{bottom:717.074667pt;}
.y55{bottom:769.752000pt;}
.y54{bottom:822.429333pt;}
.y53{bottom:875.105333pt;}
.y52{bottom:927.272000pt;}
.y51{bottom:979.438667pt;}
.y50{bottom:1031.605333pt;}
.y4f{bottom:1084.282667pt;}
.y4e{bottom:1179.498667pt;}
.y4d{bottom:1400.858667pt;}
.y49{bottom:1410.350667pt;}
.y4c{bottom:1428.066667pt;}
.y48{bottom:1452.401333pt;}
.y47{bottom:1494.450667pt;}
.y46{bottom:1534.301333pt;}
.y45{bottom:1624.204000pt;}
.y44{bottom:2111.945333pt;}
.y43{bottom:2151.796000pt;}
.y42{bottom:2193.845333pt;}
.y41{bottom:2235.896000pt;}
.y4b{bottom:2331.201333pt;}
.y3f{bottom:2485.189333pt;}
.y13{bottom:2547.217333pt;}
.y40{bottom:3033.950667pt;}
.y59{bottom:3034.864000pt;}
.y11{bottom:3154.486667pt;}
.y10{bottom:3196.537333pt;}
.yf{bottom:3238.586667pt;}
.ye{bottom:3280.637333pt;}
.yd{bottom:3322.686667pt;}
.yc{bottom:3402.388000pt;}
.yb{bottom:3444.438667pt;}
.ya{bottom:3486.489333pt;}
.y9{bottom:3528.538667pt;}
.y8{bottom:3570.589333pt;}
.y12{bottom:3637.092000pt;}
.y7{bottom:3771.896000pt;}
.y6{bottom:3813.436000pt;}
.y5{bottom:3855.486667pt;}
.y4{bottom:3916.728000pt;}
.y3{bottom:4034.733333pt;}
.y2{bottom:4154.285333pt;}
.y1{bottom:4269.314667pt;}
.hc{height:20.764870pt;}
.ha{height:32.510866pt;}
.hb{height:33.905435pt;}
.hd{height:38.749068pt;}
.h9{height:46.412966pt;}
.h8{height:46.444095pt;}
.he{height:116.979814pt;}
.h6{height:123.950995pt;}
.h5{height:125.991341pt;}
.h2{height:203.161254pt;}
.hf{height:217.442078pt;}
.h4{height:223.982987pt;}
.h10{height:227.666942pt;}
.h3{height:275.606552pt;}
.h7{height:423.151764pt;}
.h1{height:4490.666667pt;}
.h0{height:4490.834667pt;}
.w2{width:1058.277912pt;}
.w0{width:3173.292000pt;}
.w1{width:3173.333333pt;}
.x0{left:0.000000pt;}
.xe{left:18.984647pt;}
.x16{left:55.782728pt;}
.x17{left:66.531480pt;}
.xf{left:81.008688pt;}
.x2d{left:151.181333pt;}
.x9{left:182.617333pt;}
.x8{left:214.942667pt;}
.x28{left:222.580000pt;}
.x10{left:239.068800pt;}
.x1{left:244.249333pt;}
.x21{left:263.001333pt;}
.xa{left:274.634667pt;}
.x11{left:302.139532pt;}
.x29{left:322.362667pt;}
.x1f{left:335.449333pt;}
.x15{left:378.525600pt;}
.x12{left:386.948285pt;}
.x14{left:390.479043pt;}
.x13{left:398.447999pt;}
.x20{left:421.313333pt;}
.x5{left:485.785333pt;}
.x2{left:507.558667pt;}
.xb{left:516.388608pt;}
.x19{left:607.666080pt;}
.x18{left:653.454720pt;}
.xd{left:727.490561pt;}
.x3{left:802.128000pt;}
.xc{left:812.918163pt;}
.x4{left:817.076000pt;}
.x1d{left:820.191253pt;}
.x1a{left:848.694239pt;}
.x1b{left:856.414957pt;}
.x1c{left:872.447886pt;}
.x1e{left:956.275200pt;}
.x2c{left:1082.174667pt;}
.x7{left:1092.652000pt;}
.x2a{left:1122.569333pt;}
.x2b{left:1151.325333pt;}
.x6{left:1153.862667pt;}
.x27{left:1541.525333pt;}
.x26{left:1547.376000pt;}
.x25{left:1573.849333pt;}
.x24{left:2029.414667pt;}
.x22{left:2300.844000pt;}
.x23{left:2498.778667pt;}
}




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