
    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_c31cb70745996f932a8b839f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_4e8ef5ec94d4d5d1d61a3858.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019000;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_5bf1dac97d3baddfd3306ccb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979004;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_9617679ac8a42d95947ed910.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.029000;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_d070011a26edd3a47a29c775.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_d1b0635902619a685b7169a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_a73564be3e272ee92855c9bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.019000;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.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:22.576800px;}
.ls4{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.396000px;}
.ls7{letter-spacing:-0.132000px;}
.ls3{letter-spacing:-0.048000px;}
.ls2{letter-spacing:-0.045600px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.ls5{letter-spacing:1.227600px;}
.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;}
}
.ws37{word-spacing:-19.682400px;}
.ws5{word-spacing:-16.500000px;}
.ws27{word-spacing:-16.368000px;}
.ws17{word-spacing:-15.840000px;}
.ws26{word-spacing:-15.708000px;}
.ws18{word-spacing:-15.444000px;}
.ws3{word-spacing:-15.012000px;}
.ws38{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.676800px;}
.ws1{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.988617px;}
.wsb{word-spacing:-8.937600px;}
.ws39{word-spacing:-8.745000px;}
.wsc{word-spacing:-8.448000px;}
.ws33{word-spacing:-5.082000px;}
.ws35{word-spacing:-4.422000px;}
.ws34{word-spacing:-4.224000px;}
.ws14{word-spacing:-3.102000px;}
.ws47{word-spacing:-2.880000px;}
.ws1f{word-spacing:-2.772000px;}
.ws12{word-spacing:-2.646000px;}
.ws2e{word-spacing:-1.980000px;}
.ws42{word-spacing:-1.920000px;}
.ws3a{word-spacing:-1.848000px;}
.ws3f{word-spacing:-1.800000px;}
.ws22{word-spacing:-1.716000px;}
.ws2b{word-spacing:-1.584000px;}
.ws23{word-spacing:-1.518000px;}
.ws48{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.320000px;}
.ws16{word-spacing:-1.227600px;}
.ws49{word-spacing:-1.080000px;}
.ws13{word-spacing:-1.026000px;}
.ws20{word-spacing:-0.528000px;}
.ws28{word-spacing:-0.198000px;}
.ws6{word-spacing:0.000000px;}
.ws31{word-spacing:0.132000px;}
.ws2a{word-spacing:0.198000px;}
.ws43{word-spacing:0.480000px;}
.wsf{word-spacing:0.576000px;}
.ws1c{word-spacing:0.594000px;}
.ws40{word-spacing:0.720000px;}
.ws8{word-spacing:0.810000px;}
.ws10{word-spacing:0.864000px;}
.ws29{word-spacing:0.924000px;}
.ws1d{word-spacing:0.990000px;}
.ws3e{word-spacing:1.518000px;}
.ws11{word-spacing:1.620000px;}
.ws45{word-spacing:1.860000px;}
.ws41{word-spacing:2.220000px;}
.ws15{word-spacing:2.244000px;}
.ws2c{word-spacing:3.630000px;}
.ws1e{word-spacing:3.828000px;}
.ws9{word-spacing:3.888000px;}
.ws36{word-spacing:4.092000px;}
.wsa{word-spacing:4.590000px;}
.ws3b{word-spacing:4.818000px;}
.ws1b{word-spacing:4.950000px;}
.ws3d{word-spacing:5.082000px;}
.ws32{word-spacing:5.478000px;}
.ws19{word-spacing:5.544000px;}
.ws1a{word-spacing:5.742000px;}
.wsd{word-spacing:6.096000px;}
.ws21{word-spacing:6.996000px;}
.ws2f{word-spacing:7.722000px;}
.wse{word-spacing:8.160000px;}
.ws3c{word-spacing:8.514000px;}
.ws2d{word-spacing:9.042000px;}
.ws46{word-spacing:10.980000px;}
.ws7{word-spacing:12.798000px;}
.ws30{word-spacing:13.992000px;}
.ws24{word-spacing:17.886000px;}
.ws25{word-spacing:18.612000px;}
._a{margin-left:-11.903400px;}
._c{margin-left:-9.524760px;}
._9{margin-left:-8.444040px;}
._6{margin-left:-7.092360px;}
._2{margin-left:-5.987520px;}
._8{margin-left:-4.717800px;}
._4{margin-left:-2.847600px;}
._3{margin-left:-1.227600px;}
._0{width:1.626240px;}
._1{width:3.686760px;}
._7{width:4.761000px;}
._5{width:12.808800px;}
._b{width:18.527520px;}
._d{width:491.196000px;}
.fc1{color:rgb(25,64,49);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:34.980000px;}
.fs8{font-size:37.800000px;}
.fs2{font-size:39.527400px;}
.fs9{font-size:39.600000px;}
.fs4{font-size:45.600000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:67.800000px;}
.fs6{font-size:70.800000px;}
.fs0{font-size:92.400000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:64.233000px;}
.y36{bottom:64.233150px;}
.y1e{bottom:68.005200px;}
.y4c{bottom:84.033000px;}
.y35{bottom:84.033150px;}
.y4b{bottom:103.833000px;}
.y34{bottom:103.833150px;}
.y4a{bottom:123.633000px;}
.y49{bottom:143.433000px;}
.y33{bottom:143.433150px;}
.y1a{bottom:163.233000px;}
.y19{bottom:183.033000px;}
.y18{bottom:202.833000px;}
.y32{bottom:202.833150px;}
.y48{bottom:222.633000px;}
.y31{bottom:222.633150px;}
.y17{bottom:234.175350px;}
.y53{bottom:242.433000px;}
.y30{bottom:242.433150px;}
.y47{bottom:262.233000px;}
.y2f{bottom:262.233150px;}
.y52{bottom:282.033000px;}
.y2e{bottom:282.033150px;}
.y51{bottom:301.833000px;}
.y2d{bottom:301.833150px;}
.y16{bottom:302.050950px;}
.y15{bottom:320.046450px;}
.y46{bottom:321.633000px;}
.y2c{bottom:321.633150px;}
.y45{bottom:341.433000px;}
.y2b{bottom:341.433150px;}
.y14{bottom:357.846450px;}
.y44{bottom:361.233000px;}
.y2a{bottom:361.233150px;}
.y13{bottom:375.841950px;}
.y43{bottom:381.033000px;}
.y29{bottom:381.033150px;}
.y12{bottom:393.837450px;}
.y42{bottom:400.833000px;}
.y28{bottom:400.833150px;}
.y11{bottom:411.832950px;}
.y41{bottom:420.633000px;}
.y27{bottom:420.633150px;}
.y10{bottom:429.828450px;}
.y50{bottom:431.985750px;}
.y40{bottom:440.433000px;}
.y26{bottom:440.433150px;}
.yf{bottom:447.823950px;}
.y3f{bottom:460.233000px;}
.y25{bottom:460.233150px;}
.y3e{bottom:480.033000px;}
.y24{bottom:480.033150px;}
.y3d{bottom:499.833000px;}
.ye{bottom:508.216200px;}
.y3c{bottom:519.633000px;}
.y23{bottom:519.633150px;}
.yd{bottom:526.216200px;}
.y3b{bottom:539.433000px;}
.yc{bottom:544.216200px;}
.y22{bottom:555.407250px;}
.y3a{bottom:559.233000px;}
.yb{bottom:570.720150px;}
.y39{bottom:579.033000px;}
.y38{bottom:598.833000px;}
.y37{bottom:599.562150px;}
.ya{bottom:608.521500px;}
.y4f{bottom:618.633000px;}
.y9{bottom:637.837050px;}
.y8{bottom:655.832550px;}
.y4e{bottom:657.522150px;}
.y7{bottom:673.828050px;}
.y54{bottom:674.118300px;}
.y6{bottom:691.823550px;}
.y5{bottom:709.819050px;}
.y4{bottom:744.826800px;}
.y3{bottom:765.166800px;}
.y2{bottom:785.506950px;}
.y1{bottom:841.197750px;}
.y1d{bottom:935.709300px;}
.y1c{bottom:950.706450px;}
.y1f{bottom:953.482500px;}
.y21{bottom:959.117700px;}
.y20{bottom:959.661450px;}
.y1b{bottom:965.703600px;}
.hc{height:27.363600px;}
.hb{height:28.350000px;}
.h6{height:36.000000px;}
.h7{height:37.314000px;}
.h8{height:40.500000px;}
.h5{height:41.040000px;}
.hd{height:42.750000px;}
.h10{height:45.000000px;}
.h11{height:45.600000px;}
.h12{height:46.215000px;}
.he{height:47.190000px;}
.h9{height:48.922800px;}
.ha{height:49.500000px;}
.hf{height:50.160000px;}
.h3{height:52.222350px;}
.h4{height:52.222950px;}
.h2{height:63.848400px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x5{left:78.661500px;}
.x8{left:104.170350px;}
.x1{left:123.184200px;}
.x3{left:140.088750px;}
.x2{left:141.398700px;}
.x7{left:193.959450px;}
.xa{left:222.959550px;}
.x4{left:243.563250px;}
.x6{left:285.692100px;}
.x9{left:299.596350px;}
.xb{left:322.679850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:20.068267pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.352000pt;}
.ls7{letter-spacing:-0.117333pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:-0.040533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.ls5{letter-spacing:1.091200pt;}
.ws37{word-spacing:-17.495467pt;}
.ws5{word-spacing:-14.666667pt;}
.ws27{word-spacing:-14.549333pt;}
.ws17{word-spacing:-14.080000pt;}
.ws26{word-spacing:-13.962667pt;}
.ws18{word-spacing:-13.728000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws38{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.268267pt;}
.ws1{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.767660pt;}
.wsb{word-spacing:-7.944533pt;}
.ws39{word-spacing:-7.773333pt;}
.wsc{word-spacing:-7.509333pt;}
.ws33{word-spacing:-4.517333pt;}
.ws35{word-spacing:-3.930667pt;}
.ws34{word-spacing:-3.754667pt;}
.ws14{word-spacing:-2.757333pt;}
.ws47{word-spacing:-2.560000pt;}
.ws1f{word-spacing:-2.464000pt;}
.ws12{word-spacing:-2.352000pt;}
.ws2e{word-spacing:-1.760000pt;}
.ws42{word-spacing:-1.706667pt;}
.ws3a{word-spacing:-1.642667pt;}
.ws3f{word-spacing:-1.600000pt;}
.ws22{word-spacing:-1.525333pt;}
.ws2b{word-spacing:-1.408000pt;}
.ws23{word-spacing:-1.349333pt;}
.ws48{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.173333pt;}
.ws16{word-spacing:-1.091200pt;}
.ws49{word-spacing:-0.960000pt;}
.ws13{word-spacing:-0.912000pt;}
.ws20{word-spacing:-0.469333pt;}
.ws28{word-spacing:-0.176000pt;}
.ws6{word-spacing:0.000000pt;}
.ws31{word-spacing:0.117333pt;}
.ws2a{word-spacing:0.176000pt;}
.ws43{word-spacing:0.426667pt;}
.wsf{word-spacing:0.512000pt;}
.ws1c{word-spacing:0.528000pt;}
.ws40{word-spacing:0.640000pt;}
.ws8{word-spacing:0.720000pt;}
.ws10{word-spacing:0.768000pt;}
.ws29{word-spacing:0.821333pt;}
.ws1d{word-spacing:0.880000pt;}
.ws3e{word-spacing:1.349333pt;}
.ws11{word-spacing:1.440000pt;}
.ws45{word-spacing:1.653333pt;}
.ws41{word-spacing:1.973333pt;}
.ws15{word-spacing:1.994667pt;}
.ws2c{word-spacing:3.226667pt;}
.ws1e{word-spacing:3.402667pt;}
.ws9{word-spacing:3.456000pt;}
.ws36{word-spacing:3.637333pt;}
.wsa{word-spacing:4.080000pt;}
.ws3b{word-spacing:4.282667pt;}
.ws1b{word-spacing:4.400000pt;}
.ws3d{word-spacing:4.517333pt;}
.ws32{word-spacing:4.869333pt;}
.ws19{word-spacing:4.928000pt;}
.ws1a{word-spacing:5.104000pt;}
.wsd{word-spacing:5.418667pt;}
.ws21{word-spacing:6.218667pt;}
.ws2f{word-spacing:6.864000pt;}
.wse{word-spacing:7.253333pt;}
.ws3c{word-spacing:7.568000pt;}
.ws2d{word-spacing:8.037333pt;}
.ws46{word-spacing:9.760000pt;}
.ws7{word-spacing:11.376000pt;}
.ws30{word-spacing:12.437333pt;}
.ws24{word-spacing:15.898667pt;}
.ws25{word-spacing:16.544000pt;}
._a{margin-left:-10.580800pt;}
._c{margin-left:-8.466453pt;}
._9{margin-left:-7.505813pt;}
._6{margin-left:-6.304320pt;}
._2{margin-left:-5.322240pt;}
._8{margin-left:-4.193600pt;}
._4{margin-left:-2.531200pt;}
._3{margin-left:-1.091200pt;}
._0{width:1.445547pt;}
._1{width:3.277120pt;}
._7{width:4.232000pt;}
._5{width:11.385600pt;}
._b{width:16.468907pt;}
._d{width:436.618667pt;}
.fsc{font-size:31.093333pt;}
.fs8{font-size:33.600000pt;}
.fs2{font-size:35.135467pt;}
.fs9{font-size:35.200000pt;}
.fs4{font-size:40.533333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:60.266667pt;}
.fs6{font-size:62.933333pt;}
.fs0{font-size:82.133333pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:57.096000pt;}
.y36{bottom:57.096133pt;}
.y1e{bottom:60.449067pt;}
.y4c{bottom:74.696000pt;}
.y35{bottom:74.696133pt;}
.y4b{bottom:92.296000pt;}
.y34{bottom:92.296133pt;}
.y4a{bottom:109.896000pt;}
.y49{bottom:127.496000pt;}
.y33{bottom:127.496133pt;}
.y1a{bottom:145.096000pt;}
.y19{bottom:162.696000pt;}
.y18{bottom:180.296000pt;}
.y32{bottom:180.296133pt;}
.y48{bottom:197.896000pt;}
.y31{bottom:197.896133pt;}
.y17{bottom:208.155867pt;}
.y53{bottom:215.496000pt;}
.y30{bottom:215.496133pt;}
.y47{bottom:233.096000pt;}
.y2f{bottom:233.096133pt;}
.y52{bottom:250.696000pt;}
.y2e{bottom:250.696133pt;}
.y51{bottom:268.296000pt;}
.y2d{bottom:268.296133pt;}
.y16{bottom:268.489733pt;}
.y15{bottom:284.485733pt;}
.y46{bottom:285.896000pt;}
.y2c{bottom:285.896133pt;}
.y45{bottom:303.496000pt;}
.y2b{bottom:303.496133pt;}
.y14{bottom:318.085733pt;}
.y44{bottom:321.096000pt;}
.y2a{bottom:321.096133pt;}
.y13{bottom:334.081733pt;}
.y43{bottom:338.696000pt;}
.y29{bottom:338.696133pt;}
.y12{bottom:350.077733pt;}
.y42{bottom:356.296000pt;}
.y28{bottom:356.296133pt;}
.y11{bottom:366.073733pt;}
.y41{bottom:373.896000pt;}
.y27{bottom:373.896133pt;}
.y10{bottom:382.069733pt;}
.y50{bottom:383.987333pt;}
.y40{bottom:391.496000pt;}
.y26{bottom:391.496133pt;}
.yf{bottom:398.065733pt;}
.y3f{bottom:409.096000pt;}
.y25{bottom:409.096133pt;}
.y3e{bottom:426.696000pt;}
.y24{bottom:426.696133pt;}
.y3d{bottom:444.296000pt;}
.ye{bottom:451.747733pt;}
.y3c{bottom:461.896000pt;}
.y23{bottom:461.896133pt;}
.yd{bottom:467.747733pt;}
.y3b{bottom:479.496000pt;}
.yc{bottom:483.747733pt;}
.y22{bottom:493.695333pt;}
.y3a{bottom:497.096000pt;}
.yb{bottom:507.306800pt;}
.y39{bottom:514.696000pt;}
.y38{bottom:532.296000pt;}
.y37{bottom:532.944133pt;}
.ya{bottom:540.908000pt;}
.y4f{bottom:549.896000pt;}
.y9{bottom:566.966267pt;}
.y8{bottom:582.962267pt;}
.y4e{bottom:584.464133pt;}
.y7{bottom:598.958267pt;}
.y54{bottom:599.216267pt;}
.y6{bottom:614.954267pt;}
.y5{bottom:630.950267pt;}
.y4{bottom:662.068267pt;}
.y3{bottom:680.148267pt;}
.y2{bottom:698.228400pt;}
.y1{bottom:747.731333pt;}
.y1d{bottom:831.741600pt;}
.y1c{bottom:845.072400pt;}
.y1f{bottom:847.540000pt;}
.y21{bottom:852.549067pt;}
.y20{bottom:853.032400pt;}
.y1b{bottom:858.403200pt;}
.hc{height:24.323200pt;}
.hb{height:25.200000pt;}
.h6{height:32.000000pt;}
.h7{height:33.168000pt;}
.h8{height:36.000000pt;}
.h5{height:36.480000pt;}
.hd{height:38.000000pt;}
.h10{height:40.000000pt;}
.h11{height:40.533333pt;}
.h12{height:41.080000pt;}
.he{height:41.946667pt;}
.h9{height:43.486933pt;}
.ha{height:44.000000pt;}
.hf{height:44.586667pt;}
.h3{height:46.419867pt;}
.h4{height:46.420400pt;}
.h2{height:56.754133pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x5{left:69.921333pt;}
.x8{left:92.595867pt;}
.x1{left:109.497067pt;}
.x3{left:124.523333pt;}
.x2{left:125.687733pt;}
.x7{left:172.408400pt;}
.xa{left:198.186267pt;}
.x4{left:216.500667pt;}
.x6{left:253.948533pt;}
.x9{left:266.307867pt;}
.xb{left:286.826533pt;}
}




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