
    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_41ed4d35957705dd08e3352d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_68d0203b92a13db5aa681695.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_6aaec46ffa7cd75da147dec9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.055000;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_99b8527dba1cdd2858bb5305.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_0ca26a1014311b85f9b6dc8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_2c9515d6ccbd0b0e6ea14666.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1cae2cac9499f8f3ecc2722a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dce22c7d4966bdbba5668005.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m4{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247881,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls9{letter-spacing:-3.133584px;}
.ls5{letter-spacing:-2.764800px;}
.ls8{letter-spacing:-0.094752px;}
.ls7{letter-spacing:-0.013536px;}
.ls4{letter-spacing:-0.006768px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006768px;}
.ls0{letter-spacing:0.011376px;}
.ls6{letter-spacing:0.368640px;}
.ls3{letter-spacing:3.738240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(145,143,143),0 0.015em rgb(145,143,143),0.015em 0 rgb(145,143,143),0 -0.015em  rgb(145,143,143);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(145,143,143);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-173.658238px;}
.ws6{word-spacing:-113.771370px;}
.ws7{word-spacing:-67.686766px;}
.ws2{word-spacing:-67.679998px;}
.ws1{word-spacing:-67.673230px;}
.wsc{word-spacing:-67.666462px;}
.ws12{word-spacing:-64.546414px;}
.wsa{word-spacing:-57.703967px;}
.ws5{word-spacing:-57.600002px;}
.ws9{word-spacing:-56.255614px;}
.wsf{word-spacing:-56.242079px;}
.ws8{word-spacing:-56.052575px;}
.ws15{word-spacing:-53.602559px;}
.ws13{word-spacing:-50.489279px;}
.wsd{word-spacing:-49.406399px;}
.ws17{word-spacing:-49.054462px;}
.ws10{word-spacing:-47.565502px;}
.wse{word-spacing:-46.157759px;}
.ws3{word-spacing:-46.079999px;}
.ws11{word-spacing:-45.277919px;}
.wsb{word-spacing:-45.210239px;}
.ws4{word-spacing:-43.315199px;}
.ws14{word-spacing:-31.065119px;}
.ws16{word-spacing:-22.537439px;}
.ws18{word-spacing:0.000000px;}
._0{margin-left:-5.947200px;}
._5{margin-left:-3.924039px;}
._1{margin-left:-2.905632px;}
._4{margin-left:-1.743264px;}
._2{width:1.766448px;}
._3{width:2.986848px;}
._c{width:4.309978px;}
._f{width:5.713430px;}
._9{width:6.761232px;}
._8{width:8.676576px;}
._7{width:10.475013px;}
._18{width:11.526830px;}
._6{width:12.730607px;}
._10{width:14.230617px;}
._d{width:15.480902px;}
._17{width:16.733664px;}
._11{width:18.277920px;}
._a{width:20.161871px;}
._b{width:21.441024px;}
._e{width:23.065343px;}
._19{width:24.256656px;}
._16{width:31.200480px;}
._13{width:34.610399px;}
._14{width:37.732606px;}
._12{width:38.972303px;}
._15{width:46.945008px;}
.fc3{color:rgb(57,76,168);}
.fc2{color:transparent;}
.fc1{color:rgb(145,143,143);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(128,128,128);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:46.079999px;}
.fs9{font-size:46.080000px;}
.fs7{font-size:57.600000px;}
.fs0{font-size:57.600002px;}
.fs6{font-size:63.360000px;}
.fs2{font-size:67.679998px;}
.fs8{font-size:67.680000px;}
.fsa{font-size:79.200000px;}
.fs3{font-size:102.240005px;}
.fs5{font-size:113.759994px;}
.fs1{font-size:169.919998px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.045044px;}
.ya{bottom:49.812103px;}
.y8{bottom:49.857124px;}
.yb{bottom:49.857147px;}
.yc{bottom:49.860003px;}
.y7{bottom:66.780003px;}
.y6{bottom:82.620003px;}
.y38{bottom:107.104373px;}
.y37{bottom:126.545453px;}
.y36{bottom:145.986534px;}
.y35{bottom:165.427614px;}
.y34{bottom:184.868694px;}
.y33{bottom:204.309774px;}
.y32{bottom:224.106173px;}
.y31{bottom:251.821132px;}
.y30{bottom:271.262213px;}
.y2f{bottom:290.703293px;}
.y2e{bottom:310.144373px;}
.y2d{bottom:329.585453px;}
.y2c{bottom:349.026533px;}
.y2b{bottom:368.467614px;}
.y2a{bottom:396.182573px;}
.y29{bottom:415.978972px;}
.y28{bottom:435.064732px;}
.y27{bottom:454.861130px;}
.y26{bottom:482.576090px;}
.y25{bottom:502.372489px;}
.y24{bottom:521.458248px;}
.y54{bottom:524.700000px;}
.y23{bottom:541.254647px;}
.y53{bottom:545.248800px;}
.y52{bottom:567.919800px;}
.y22{bottom:568.969607px;}
.y21{bottom:588.410687px;}
.y51{bottom:590.590800px;}
.y20{bottom:607.851767px;}
.y50{bottom:613.261800px;}
.y1f{bottom:627.292847px;}
.y4f{bottom:636.309000px;}
.y1e{bottom:646.733927px;}
.y4e{bottom:658.980000px;}
.y1d{bottom:666.175008px;}
.y4d{bottom:688.829400px;}
.y1c{bottom:694.617527px;}
.y1b{bottom:714.413926px;}
.y4c{bottom:716.916600px;}
.y1a{bottom:733.855006px;}
.y4b{bottom:744.631560px;}
.y19{bottom:753.296086px;}
.y4a{bottom:772.718760px;}
.y18{bottom:772.737166px;}
.y49{bottom:791.804520px;}
.y17{bottom:792.178247px;}
.y48{bottom:811.600920px;}
.y16{bottom:811.619327px;}
.y47{bottom:830.686680px;}
.y15{bottom:839.706525px;}
.y46{bottom:850.483080px;}
.y14{bottom:858.420044px;}
.y45{bottom:869.568840px;}
.y13{bottom:880.734249px;}
.y44{bottom:889.365240px;}
.y43{bottom:908.806320px;}
.y12{bottom:917.820007px;}
.y42{bottom:936.893520px;}
.y11{bottom:955.972768px;}
.y41{bottom:955.979280px;}
.y40{bottom:975.775680px;}
.y10{bottom:984.059967px;}
.y3f{bottom:994.861440px;}
.yf{bottom:1007.100018px;}
.y3e{bottom:1014.657840px;}
.ye{bottom:1023.300018px;}
.y3d{bottom:1033.743600px;}
.yd{bottom:1044.179993px;}
.y3c{bottom:1053.540000px;}
.y5{bottom:1069.379974px;}
.y3b{bottom:1073.700000px;}
.y4{bottom:1107.543598px;}
.y2{bottom:1110.419996px;}
.y3{bottom:1110.420044px;}
.y39{bottom:1126.620000px;}
.y1{bottom:1127.339996px;}
.y3a{bottom:1133.100000px;}
.h8{height:13.271040px;}
.h10{height:33.570000px;}
.h6{height:33.730559px;}
.h9{height:40.032002px;}
.ha{height:40.032077px;}
.h1{height:41.932802px;}
.he{height:41.962500px;}
.hd{height:46.158750px;}
.h3{height:49.271039px;}
.hf{height:49.305937px;}
.h4{height:49.541759px;}
.h11{height:57.659766px;}
.h5{height:74.430724px;}
.hc{height:82.817276px;}
.hb{height:83.272316px;}
.h2{height:124.381439px;}
.h7{height:1187.954956px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:128.640003px;}
.x2{left:138.720005px;}
.x6{left:240.595669px;}
.xb{left:283.080002px;}
.x5{left:290.280006px;}
.x3{left:298.919998px;}
.xd{left:310.800000px;}
.x7{left:342.832421px;}
.xc{left:372.719994px;}
.xe{left:474.600000px;}
.x4{left:478.560013px;}
.x8{left:488.994919px;}
.x9{left:495.110550px;}
.xa{left:614.279984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.785408pt;}
.ls5{letter-spacing:-2.457600pt;}
.ls8{letter-spacing:-0.084224pt;}
.ls7{letter-spacing:-0.012032pt;}
.ls4{letter-spacing:-0.006016pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006016pt;}
.ls0{letter-spacing:0.010112pt;}
.ls6{letter-spacing:0.327680pt;}
.ls3{letter-spacing:3.322880pt;}
.ws0{word-spacing:-154.362878pt;}
.ws6{word-spacing:-101.130107pt;}
.ws7{word-spacing:-60.166015pt;}
.ws2{word-spacing:-60.159999pt;}
.ws1{word-spacing:-60.153983pt;}
.wsc{word-spacing:-60.147967pt;}
.ws12{word-spacing:-57.374591pt;}
.wsa{word-spacing:-51.292415pt;}
.ws5{word-spacing:-51.200002pt;}
.ws9{word-spacing:-50.004991pt;}
.wsf{word-spacing:-49.992959pt;}
.ws8{word-spacing:-49.824511pt;}
.ws15{word-spacing:-47.646719pt;}
.ws13{word-spacing:-44.879359pt;}
.wsd{word-spacing:-43.916799pt;}
.ws17{word-spacing:-43.603967pt;}
.ws10{word-spacing:-42.280447pt;}
.wse{word-spacing:-41.029119pt;}
.ws3{word-spacing:-40.959999pt;}
.ws11{word-spacing:-40.247039pt;}
.wsb{word-spacing:-40.186879pt;}
.ws4{word-spacing:-38.502399pt;}
.ws14{word-spacing:-27.613439pt;}
.ws16{word-spacing:-20.033280pt;}
.ws18{word-spacing:0.000000pt;}
._0{margin-left:-5.286400pt;}
._5{margin-left:-3.488034pt;}
._1{margin-left:-2.582784pt;}
._4{margin-left:-1.549568pt;}
._2{width:1.570176pt;}
._3{width:2.654976pt;}
._c{width:3.831091pt;}
._f{width:5.078604pt;}
._9{width:6.009984pt;}
._8{width:7.712512pt;}
._7{width:9.311123pt;}
._18{width:10.246071pt;}
._6{width:11.316095pt;}
._10{width:12.649438pt;}
._d{width:13.760802pt;}
._17{width:14.874368pt;}
._11{width:16.247040pt;}
._a{width:17.921664pt;}
._b{width:19.058688pt;}
._e{width:20.502527pt;}
._19{width:21.561472pt;}
._16{width:27.733760pt;}
._13{width:30.764799pt;}
._14{width:33.540095pt;}
._12{width:34.642047pt;}
._15{width:41.728896pt;}
.fs4{font-size:40.959999pt;}
.fs9{font-size:40.960000pt;}
.fs7{font-size:51.200000pt;}
.fs0{font-size:51.200002pt;}
.fs6{font-size:56.320000pt;}
.fs2{font-size:60.159999pt;}
.fs8{font-size:60.160000pt;}
.fsa{font-size:70.400000pt;}
.fs3{font-size:90.880005pt;}
.fs5{font-size:101.119995pt;}
.fs1{font-size:151.039998pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.040039pt;}
.ya{bottom:44.277425pt;}
.y8{bottom:44.317443pt;}
.yb{bottom:44.317464pt;}
.yc{bottom:44.320002pt;}
.y7{bottom:59.360003pt;}
.y6{bottom:73.440002pt;}
.y38{bottom:95.203887pt;}
.y37{bottom:112.484847pt;}
.y36{bottom:129.765808pt;}
.y35{bottom:147.046768pt;}
.y34{bottom:164.327728pt;}
.y33{bottom:181.608688pt;}
.y32{bottom:199.205487pt;}
.y31{bottom:223.841007pt;}
.y30{bottom:241.121967pt;}
.y2f{bottom:258.402927pt;}
.y2e{bottom:275.683887pt;}
.y2d{bottom:292.964847pt;}
.y2c{bottom:310.245807pt;}
.y2b{bottom:327.526768pt;}
.y2a{bottom:352.162287pt;}
.y29{bottom:369.759086pt;}
.y28{bottom:386.724206pt;}
.y27{bottom:404.321005pt;}
.y26{bottom:428.956524pt;}
.y25{bottom:446.553323pt;}
.y24{bottom:463.518443pt;}
.y54{bottom:466.400000pt;}
.y23{bottom:481.115242pt;}
.y53{bottom:484.665600pt;}
.y52{bottom:504.817600pt;}
.y22{bottom:505.750761pt;}
.y21{bottom:523.031722pt;}
.y51{bottom:524.969600pt;}
.y20{bottom:540.312682pt;}
.y50{bottom:545.121600pt;}
.y1f{bottom:557.593642pt;}
.y4f{bottom:565.608000pt;}
.y1e{bottom:574.874602pt;}
.y4e{bottom:585.760000pt;}
.y1d{bottom:592.155562pt;}
.y4d{bottom:612.292800pt;}
.y1c{bottom:617.437802pt;}
.y1b{bottom:635.034601pt;}
.y4c{bottom:637.259200pt;}
.y1a{bottom:652.315561pt;}
.y4b{bottom:661.894720pt;}
.y19{bottom:669.596521pt;}
.y4a{bottom:686.861120pt;}
.y18{bottom:686.877481pt;}
.y49{bottom:703.826240pt;}
.y17{bottom:704.158441pt;}
.y48{bottom:721.423040pt;}
.y16{bottom:721.439402pt;}
.y47{bottom:738.388160pt;}
.y15{bottom:746.405800pt;}
.y46{bottom:755.984960pt;}
.y14{bottom:763.040039pt;}
.y45{bottom:772.950080pt;}
.y13{bottom:782.874888pt;}
.y44{bottom:790.546880pt;}
.y43{bottom:807.827840pt;}
.y12{bottom:815.840007pt;}
.y42{bottom:832.794240pt;}
.y11{bottom:849.753572pt;}
.y41{bottom:849.759360pt;}
.y40{bottom:867.356160pt;}
.y10{bottom:874.719971pt;}
.y3f{bottom:884.321280pt;}
.yf{bottom:895.200016pt;}
.y3e{bottom:901.918080pt;}
.ye{bottom:909.600016pt;}
.y3d{bottom:918.883200pt;}
.yd{bottom:928.159993pt;}
.y3c{bottom:936.480000pt;}
.y5{bottom:950.559977pt;}
.y3b{bottom:954.400000pt;}
.y4{bottom:984.483198pt;}
.y2{bottom:987.039997pt;}
.y3{bottom:987.040039pt;}
.y39{bottom:1001.440000pt;}
.y1{bottom:1002.079997pt;}
.y3a{bottom:1007.200000pt;}
.h8{height:11.796480pt;}
.h10{height:29.840000pt;}
.h6{height:29.982719pt;}
.h9{height:35.584001pt;}
.ha{height:35.584069pt;}
.h1{height:37.273601pt;}
.he{height:37.300000pt;}
.hd{height:41.030000pt;}
.h3{height:43.796479pt;}
.hf{height:43.827500pt;}
.h4{height:44.037119pt;}
.h11{height:51.253125pt;}
.h5{height:66.160644pt;}
.hc{height:73.615356pt;}
.hb{height:74.019836pt;}
.h2{height:110.561279pt;}
.h7{height:1055.959961pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:114.346670pt;}
.x2{left:123.306671pt;}
.x6{left:213.862816pt;}
.xb{left:251.626668pt;}
.x5{left:258.026672pt;}
.x3{left:265.706665pt;}
.xd{left:276.266667pt;}
.x7{left:304.739930pt;}
.xc{left:331.306661pt;}
.xe{left:421.866667pt;}
.x4{left:425.386678pt;}
.x8{left:434.662150pt;}
.x9{left:440.098267pt;}
.xa{left:546.026652pt;}
}




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