
    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_6d96423661241fa730c4934d.woff')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_14ebbfc6a4204d7f57e1e866.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_226a4764659fa46ba5460f7c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dfc80d1f991340867146b60c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_351da722a3f649ebb1de9bdb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000048;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_95bb81a0594c30c75801757e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.950195;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_6e4fcf80ed0e5f846eb866a6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.756000;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_84ad2bb8d5890e89ce7a8aac.woff')format("woff");}.ff8{font-family:ff8;line-height:0.979980;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_ccac7856254e1dd02a4a1be4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.026855;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_aa00c3d12e9fd2f21291de6c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2e67ce27cd7caf4bf7c700b0.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_53ee4942e42217e16136f23f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000048;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;}
.v1{vertical-align:22.578000px;}
.ls2{letter-spacing:-0.756000px;}
.ls3{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.037800px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.924000px;}
.ls5{letter-spacing:1.188000px;}
.ls8{letter-spacing:1.404000px;}
.ls9{letter-spacing:1.458000px;}
.ls0{letter-spacing:5.076000px;}
.ls7{letter-spacing:5.280000px;}
.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;}
}
.ws6{word-spacing:-19.682400px;}
.ws7{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.012000px;}
.ws2d{word-spacing:-15.000000px;}
.ws1d{word-spacing:-14.472000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.676800px;}
.ws2{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.400000px;}
.ws0{word-spacing:-10.988617px;}
.wsb{word-spacing:-9.439200px;}
.wsc{word-spacing:-8.928000px;}
.ws34{word-spacing:-2.760000px;}
.ws27{word-spacing:-2.508000px;}
.wsa{word-spacing:-2.376000px;}
.ws2b{word-spacing:-1.998000px;}
.ws25{word-spacing:-1.782000px;}
.ws31{word-spacing:-1.500000px;}
.ws1b{word-spacing:-1.247400px;}
.ws1c{word-spacing:-1.188000px;}
.ws1a{word-spacing:-1.096200px;}
.ws18{word-spacing:-0.858000px;}
.wse{word-spacing:-0.480000px;}
.ws14{word-spacing:-0.066000px;}
.ws8{word-spacing:-0.031216px;}
.ws9{word-spacing:0.000000px;}
.ws19{word-spacing:0.037800px;}
.ws17{word-spacing:0.132000px;}
.wsf{word-spacing:0.576000px;}
.ws33{word-spacing:0.660000px;}
.ws28{word-spacing:0.858000px;}
.ws20{word-spacing:0.990000px;}
.ws1f{word-spacing:1.122000px;}
.ws36{word-spacing:1.200000px;}
.ws2a{word-spacing:1.458000px;}
.ws35{word-spacing:1.500000px;}
.ws29{word-spacing:1.620000px;}
.ws13{word-spacing:1.890000px;}
.ws2c{word-spacing:2.112000px;}
.ws16{word-spacing:2.178000px;}
.ws32{word-spacing:2.700000px;}
.ws1e{word-spacing:2.706000px;}
.ws22{word-spacing:2.970000px;}
.ws24{word-spacing:3.432000px;}
.ws2f{word-spacing:3.780000px;}
.ws10{word-spacing:3.942000px;}
.ws12{word-spacing:3.996000px;}
.ws30{word-spacing:4.320000px;}
.ws2e{word-spacing:4.800000px;}
.ws11{word-spacing:5.076000px;}
.ws23{word-spacing:5.346000px;}
.ws15{word-spacing:5.544000px;}
.ws26{word-spacing:5.610000px;}
.ws21{word-spacing:7.194000px;}
.wsd{word-spacing:9.360000px;}
._8{margin-left:-9.768960px;}
._0{margin-left:-8.279040px;}
._4{margin-left:-6.375600px;}
._3{margin-left:-4.268880px;}
._5{margin-left:-2.708701px;}
._6{margin-left:-1.627200px;}
._1{width:1.025640px;}
._2{width:3.215520px;}
._9{width:5.544000px;}
._7{width:438.720000px;}
._a{width:713.138040px;}
.fc1{color:rgb(79,76,77);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:16.200000px;}
.fsc{font-size:19.800000px;}
.fsa{font-size:31.215600px;}
.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;}
.fse{font-size:57.000000px;}
.fsf{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:67.800000px;}
.fs6{font-size:70.800000px;}
.fs0{font-size:92.400000px;}
.fsb{font-size:94.947000px;}
.y0{bottom:0.000000px;}
.y20{bottom:55.408350px;}
.y40{bottom:64.233000px;}
.y1f{bottom:68.005200px;}
.y3f{bottom:84.033000px;}
.y3e{bottom:115.185900px;}
.y1b{bottom:123.633000px;}
.y1a{bottom:143.433000px;}
.y19{bottom:163.233000px;}
.y18{bottom:183.033000px;}
.y17{bottom:202.833000px;}
.y3d{bottom:214.867050px;}
.y16{bottom:222.633000px;}
.y15{bottom:242.433000px;}
.y3c{bottom:260.686350px;}
.y14{bottom:277.151400px;}
.y3b{bottom:278.681850px;}
.y3a{bottom:296.677350px;}
.y13{bottom:345.027150px;}
.y12{bottom:363.022650px;}
.y11{bottom:400.822650px;}
.y10{bottom:418.818150px;}
.yf{bottom:436.813650px;}
.ye{bottom:454.809150px;}
.yd{bottom:472.804650px;}
.y39{bottom:480.033000px;}
.yc{bottom:490.800150px;}
.y38{bottom:499.833000px;}
.y37{bottom:519.633000px;}
.y4a{bottom:530.985750px;}
.y36{bottom:539.433000px;}
.yb{bottom:551.192250px;}
.y35{bottom:559.233000px;}
.ya{bottom:569.191200px;}
.y34{bottom:590.385750px;}
.y9{bottom:595.696200px;}
.y49{bottom:598.833000px;}
.y48{bottom:618.633000px;}
.y8{bottom:622.200000px;}
.y47{bottom:638.433000px;}
.y33{bottom:658.233000px;}
.y7{bottom:660.001500px;}
.y6{bottom:678.001500px;}
.y32{bottom:678.033000px;}
.y31{bottom:697.833000px;}
.y5{bottom:707.303550px;}
.y30{bottom:717.633000px;}
.y4{bottom:725.299050px;}
.y2f{bottom:737.433000px;}
.y2e{bottom:757.233000px;}
.y3{bottom:760.306800px;}
.y2d{bottom:777.033000px;}
.y46{bottom:796.833000px;}
.y2c{bottom:808.185750px;}
.y2{bottom:815.995650px;}
.y45{bottom:816.633000px;}
.y44{bottom:836.433000px;}
.y1{bottom:841.197750px;}
.y43{bottom:856.233000px;}
.y42{bottom:876.033000px;}
.y2b{bottom:876.033150px;}
.y2a{bottom:895.833150px;}
.y41{bottom:909.171000px;}
.y29{bottom:915.633150px;}
.y25{bottom:930.470550px;}
.y1e{bottom:935.709300px;}
.y24{bottom:936.410550px;}
.y23{bottom:948.437550px;}
.y1d{bottom:950.706450px;}
.y21{bottom:953.482500px;}
.y28{bottom:959.117700px;}
.y27{bottom:959.661450px;}
.y1c{bottom:965.703600px;}
.y22{bottom:967.947300px;}
.y26{bottom:970.689900px;}
.h12{height:12.150000px;}
.h11{height:14.850000px;}
.hf{height:23.061134px;}
.he{height:27.363600px;}
.hd{height:28.350000px;}
.h7{height:32.606171px;}
.h6{height:36.000000px;}
.h8{height:36.004200px;}
.h9{height:37.314000px;}
.h5{height:38.612571px;}
.ha{height:40.500000px;}
.h13{height:42.750000px;}
.h14{height:45.000000px;}
.hb{height:48.922800px;}
.hc{height:49.500000px;}
.h4{height:52.223550px;}
.h3{height:63.848400px;}
.h2{height:69.300000px;}
.h10{height:70.143951px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x4{left:78.661500px;}
.x1{left:79.905150px;}
.xc{left:104.173200px;}
.xb{left:133.162650px;}
.x5{left:203.301150px;}
.x3{left:242.704350px;}
.x2{left:264.789150px;}
.xd{left:278.334900px;}
.x6{left:286.531950px;}
.x7{left:494.404350px;}
.x8{left:517.228800px;}
.x9{left:532.167900px;}
.xa{left:561.332550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.069333pt;}
.ls2{letter-spacing:-0.672000pt;}
.ls3{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.033600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.821333pt;}
.ls5{letter-spacing:1.056000pt;}
.ls8{letter-spacing:1.248000pt;}
.ls9{letter-spacing:1.296000pt;}
.ls0{letter-spacing:4.512000pt;}
.ls7{letter-spacing:4.693333pt;}
.ws6{word-spacing:-17.495467pt;}
.ws7{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.344000pt;}
.ws2d{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-12.864000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.268267pt;}
.ws2{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.133333pt;}
.ws0{word-spacing:-9.767660pt;}
.wsb{word-spacing:-8.390400pt;}
.wsc{word-spacing:-7.936000pt;}
.ws34{word-spacing:-2.453333pt;}
.ws27{word-spacing:-2.229333pt;}
.wsa{word-spacing:-2.112000pt;}
.ws2b{word-spacing:-1.776000pt;}
.ws25{word-spacing:-1.584000pt;}
.ws31{word-spacing:-1.333333pt;}
.ws1b{word-spacing:-1.108800pt;}
.ws1c{word-spacing:-1.056000pt;}
.ws1a{word-spacing:-0.974400pt;}
.ws18{word-spacing:-0.762667pt;}
.wse{word-spacing:-0.426667pt;}
.ws14{word-spacing:-0.058667pt;}
.ws8{word-spacing:-0.027747pt;}
.ws9{word-spacing:0.000000pt;}
.ws19{word-spacing:0.033600pt;}
.ws17{word-spacing:0.117333pt;}
.wsf{word-spacing:0.512000pt;}
.ws33{word-spacing:0.586667pt;}
.ws28{word-spacing:0.762667pt;}
.ws20{word-spacing:0.880000pt;}
.ws1f{word-spacing:0.997333pt;}
.ws36{word-spacing:1.066667pt;}
.ws2a{word-spacing:1.296000pt;}
.ws35{word-spacing:1.333333pt;}
.ws29{word-spacing:1.440000pt;}
.ws13{word-spacing:1.680000pt;}
.ws2c{word-spacing:1.877333pt;}
.ws16{word-spacing:1.936000pt;}
.ws32{word-spacing:2.400000pt;}
.ws1e{word-spacing:2.405333pt;}
.ws22{word-spacing:2.640000pt;}
.ws24{word-spacing:3.050667pt;}
.ws2f{word-spacing:3.360000pt;}
.ws10{word-spacing:3.504000pt;}
.ws12{word-spacing:3.552000pt;}
.ws30{word-spacing:3.840000pt;}
.ws2e{word-spacing:4.266667pt;}
.ws11{word-spacing:4.512000pt;}
.ws23{word-spacing:4.752000pt;}
.ws15{word-spacing:4.928000pt;}
.ws26{word-spacing:4.986667pt;}
.ws21{word-spacing:6.394667pt;}
.wsd{word-spacing:8.320000pt;}
._8{margin-left:-8.683520pt;}
._0{margin-left:-7.359147pt;}
._4{margin-left:-5.667200pt;}
._3{margin-left:-3.794560pt;}
._5{margin-left:-2.407734pt;}
._6{margin-left:-1.446400pt;}
._1{width:0.911680pt;}
._2{width:2.858240pt;}
._9{width:4.928000pt;}
._7{width:389.973333pt;}
._a{width:633.900480pt;}
.fsd{font-size:14.400000pt;}
.fsc{font-size:17.600000pt;}
.fsa{font-size:27.747200pt;}
.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;}
.fse{font-size:50.666667pt;}
.fsf{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:60.266667pt;}
.fs6{font-size:62.933333pt;}
.fs0{font-size:82.133333pt;}
.fsb{font-size:84.397333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:49.251867pt;}
.y40{bottom:57.096000pt;}
.y1f{bottom:60.449067pt;}
.y3f{bottom:74.696000pt;}
.y3e{bottom:102.387467pt;}
.y1b{bottom:109.896000pt;}
.y1a{bottom:127.496000pt;}
.y19{bottom:145.096000pt;}
.y18{bottom:162.696000pt;}
.y17{bottom:180.296000pt;}
.y3d{bottom:190.992933pt;}
.y16{bottom:197.896000pt;}
.y15{bottom:215.496000pt;}
.y3c{bottom:231.721200pt;}
.y14{bottom:246.356800pt;}
.y3b{bottom:247.717200pt;}
.y3a{bottom:263.713200pt;}
.y13{bottom:306.690800pt;}
.y12{bottom:322.686800pt;}
.y11{bottom:356.286800pt;}
.y10{bottom:372.282800pt;}
.yf{bottom:388.278800pt;}
.ye{bottom:404.274800pt;}
.yd{bottom:420.270800pt;}
.y39{bottom:426.696000pt;}
.yc{bottom:436.266800pt;}
.y38{bottom:444.296000pt;}
.y37{bottom:461.896000pt;}
.y4a{bottom:471.987333pt;}
.y36{bottom:479.496000pt;}
.yb{bottom:489.948667pt;}
.y35{bottom:497.096000pt;}
.ya{bottom:505.947733pt;}
.y34{bottom:524.787333pt;}
.y9{bottom:529.507733pt;}
.y49{bottom:532.296000pt;}
.y48{bottom:549.896000pt;}
.y8{bottom:553.066667pt;}
.y47{bottom:567.496000pt;}
.y33{bottom:585.096000pt;}
.y7{bottom:586.668000pt;}
.y6{bottom:602.668000pt;}
.y32{bottom:602.696000pt;}
.y31{bottom:620.296000pt;}
.y5{bottom:628.714267pt;}
.y30{bottom:637.896000pt;}
.y4{bottom:644.710267pt;}
.y2f{bottom:655.496000pt;}
.y2e{bottom:673.096000pt;}
.y3{bottom:675.828267pt;}
.y2d{bottom:690.696000pt;}
.y46{bottom:708.296000pt;}
.y2c{bottom:718.387333pt;}
.y2{bottom:725.329467pt;}
.y45{bottom:725.896000pt;}
.y44{bottom:743.496000pt;}
.y1{bottom:747.731333pt;}
.y43{bottom:761.096000pt;}
.y42{bottom:778.696000pt;}
.y2b{bottom:778.696133pt;}
.y2a{bottom:796.296133pt;}
.y41{bottom:808.152000pt;}
.y29{bottom:813.896133pt;}
.y25{bottom:827.084933pt;}
.y1e{bottom:831.741600pt;}
.y24{bottom:832.364933pt;}
.y23{bottom:843.055600pt;}
.y1d{bottom:845.072400pt;}
.y21{bottom:847.540000pt;}
.y28{bottom:852.549067pt;}
.y27{bottom:853.032400pt;}
.y1c{bottom:858.403200pt;}
.y22{bottom:860.397600pt;}
.y26{bottom:862.835467pt;}
.h12{height:10.800000pt;}
.h11{height:13.200000pt;}
.hf{height:20.498786pt;}
.he{height:24.323200pt;}
.hd{height:25.200000pt;}
.h7{height:28.983263pt;}
.h6{height:32.000000pt;}
.h8{height:32.003733pt;}
.h9{height:33.168000pt;}
.h5{height:34.322286pt;}
.ha{height:36.000000pt;}
.h13{height:38.000000pt;}
.h14{height:40.000000pt;}
.hb{height:43.486933pt;}
.hc{height:44.000000pt;}
.h4{height:46.420933pt;}
.h3{height:56.754133pt;}
.h2{height:61.600000pt;}
.h10{height:62.350178pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x4{left:69.921333pt;}
.x1{left:71.026800pt;}
.xc{left:92.598400pt;}
.xb{left:118.366800pt;}
.x5{left:180.712133pt;}
.x3{left:215.737200pt;}
.x2{left:235.368133pt;}
.xd{left:247.408800pt;}
.x6{left:254.695067pt;}
.x7{left:439.470533pt;}
.x8{left:459.758933pt;}
.x9{left:473.038133pt;}
.xa{left:498.962267pt;}
}




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