
    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_3994c457ebcfefbed21e962b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096680;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_fc94b04391809b95904f5424.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_e47ea199809d8074bc789b39.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.063477;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_b13fe7bcac164d49bde18a81.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_e3547526fb579a0a73be0106.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_d469eaf082a765e40cab8f22.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_03133c1526b9a5d7918644f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_36463e264f36346a195d8727.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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);}
.m1{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);}
.v6{vertical-align:-34.200000px;}
.v5{vertical-align:-21.960000px;}
.v2{vertical-align:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.v4{vertical-align:21.960000px;}
.ls25{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.067200px;}
.ls1a{letter-spacing:-0.052920px;}
.ls22{letter-spacing:-0.037800px;}
.ls24{letter-spacing:-0.036000px;}
.ls16{letter-spacing:-0.024120px;}
.ls26{letter-spacing:-0.018000px;}
.ls21{letter-spacing:-0.007560px;}
.ls12{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls1b{letter-spacing:0.038520px;}
.lse{letter-spacing:0.051120px;}
.ls20{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.056160px;}
.ls10{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.092400px;}
.ls9{letter-spacing:0.093600px;}
.ls1{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.113400px;}
.ls27{letter-spacing:0.162000px;}
.ls1d{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.181200px;}
.ls8{letter-spacing:0.200160px;}
.ls11{letter-spacing:0.234000px;}
.lsb{letter-spacing:0.842040px;}
.lsa{letter-spacing:1.856160px;}
.ls1f{letter-spacing:2.160000px;}
.ls7{letter-spacing:2.612520px;}
.ls3{letter-spacing:3.160800px;}
.ls2{letter-spacing:3.935880px;}
.lsc{letter-spacing:10.173600px;}
.ls6{letter-spacing:15.932520px;}
.ls5{letter-spacing:19.720800px;}
.lsf{letter-spacing:22.892520px;}
.ls1e{letter-spacing:25.308000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.339800px;}
.ws2{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.218840px;}
.ws14{word-spacing:-13.188600px;}
.wsa{word-spacing:-13.159200px;}
.ws4{word-spacing:-13.064400px;}
.ws5{word-spacing:-13.039800px;}
.ws18{word-spacing:-12.042000px;}
.ws15{word-spacing:-11.952000px;}
.ws10{word-spacing:-11.880000px;}
.ws17{word-spacing:-11.862000px;}
.ws16{word-spacing:-11.844000px;}
.ws11{word-spacing:-11.808000px;}
.wsd{word-spacing:-9.304920px;}
.ws6{word-spacing:-9.242280px;}
.wsc{word-spacing:-9.213480px;}
.ws0{word-spacing:-8.576640px;}
.ws1{word-spacing:-8.553600px;}
.ws3{word-spacing:-7.920000px;}
.ws8{word-spacing:-0.176040px;}
.ws12{word-spacing:0.000000px;}
.wsf{word-spacing:0.059760px;}
.wse{word-spacing:3.365280px;}
.ws7{word-spacing:3.423960px;}
._a{margin-left:-8.548440px;}
._d{margin-left:-4.711440px;}
._b{margin-left:-3.361200px;}
._0{margin-left:-1.024200px;}
._2{width:1.055400px;}
._5{width:2.301840px;}
._6{width:3.377880px;}
._8{width:4.415400px;}
._9{width:5.475720px;}
._4{width:7.274520px;}
._1{width:8.897760px;}
._3{width:10.881720px;}
._10{width:11.979960px;}
._14{width:13.195560px;}
._e{width:14.313480px;}
._7{width:15.353400px;}
._15{width:16.370160px;}
._c{width:17.514960px;}
._16{width:19.728000px;}
._17{width:20.838000px;}
._f{width:23.326560px;}
._13{width:24.350760px;}
._12{width:25.370640px;}
._11{width:35.743560px;}
.fc1{color:rgb(123,123,123);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y2b{bottom:96.029908px;}
.y2a{bottom:112.679908px;}
.y53{bottom:112.859908px;}
.y29{bottom:128.519908px;}
.y52{bottom:128.699908px;}
.y51{bottom:144.539908px;}
.y28{bottom:150.299908px;}
.y50{bottom:160.379908px;}
.y4f{bottom:176.129908px;}
.y4e{bottom:191.969908px;}
.y4d{bottom:207.809908px;}
.y4c{bottom:223.649908px;}
.y4b{bottom:239.489908px;}
.y4a{bottom:255.329908px;}
.y27{bottom:259.469908px;}
.y49{bottom:271.169908px;}
.y25{bottom:277.019908px;}
.y26{bottom:282.509908px;}
.y48{bottom:286.919908px;}
.y24{bottom:294.659908px;}
.y47{bottom:302.759908px;}
.y23{bottom:312.299908px;}
.y46{bottom:318.599908px;}
.y22{bottom:329.879908px;}
.y45{bottom:334.469908px;}
.y21{bottom:347.429908px;}
.y44{bottom:350.309908px;}
.y20{bottom:365.069908px;}
.y43{bottom:366.149908px;}
.y42{bottom:381.989908px;}
.y1f{bottom:391.619908px;}
.y41{bottom:397.739908px;}
.y1e{bottom:409.259908px;}
.y40{bottom:413.579908px;}
.y1d{bottom:426.809908px;}
.y3f{bottom:438.689908px;}
.y1c{bottom:444.359908px;}
.y1b{bottom:461.999908px;}
.y3e{bottom:471.359908px;}
.y1a{bottom:479.549908px;}
.y3d{bottom:488.909908px;}
.y19{bottom:497.189908px;}
.y3c{bottom:506.549908px;}
.y18{bottom:514.739908px;}
.y3b{bottom:524.099908px;}
.y17{bottom:541.289908px;}
.y3a{bottom:550.649908px;}
.y16{bottom:558.929908px;}
.y39{bottom:568.289908px;}
.y15{bottom:576.479908px;}
.y38{bottom:585.839908px;}
.y14{bottom:594.119908px;}
.y13{bottom:611.669908px;}
.y37{bottom:612.389908px;}
.y12{bottom:629.249908px;}
.y36{bottom:630.059908px;}
.y11{bottom:646.889908px;}
.y35{bottom:647.609908px;}
.y34{bottom:666.059908px;}
.y10{bottom:673.439908px;}
.y33{bottom:683.609908px;}
.yf{bottom:691.079908px;}
.y32{bottom:701.249908px;}
.ye{bottom:708.629908px;}
.y31{bottom:718.799908px;}
.yd{bottom:726.179908px;}
.yc{bottom:743.819908px;}
.y30{bottom:745.349908px;}
.yb{bottom:761.369908px;}
.y2f{bottom:771.629908px;}
.ya{bottom:778.919908px;}
.y2e{bottom:787.469908px;}
.y2d{bottom:803.309908px;}
.y9{bottom:814.199908px;}
.y2c{bottom:825.089908px;}
.y8{bottom:830.039908px;}
.y7{bottom:845.879908px;}
.y6{bottom:859.019908px;}
.y5{bottom:876.569908px;}
.y4{bottom:894.209908px;}
.y3{bottom:926.459908px;}
.y2{bottom:956.789908px;}
.h5{height:35.106328px;}
.h9{height:35.497617px;}
.h6{height:38.076855px;}
.hc{height:46.986328px;}
.ha{height:47.408203px;}
.h7{height:52.311445px;}
.h4{height:52.781133px;}
.hb{height:55.503491px;}
.h8{height:57.457617px;}
.h3{height:79.013672px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w2{width:748.439989px;}
.w0{width:748.440000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x11{left:85.049989px;}
.xe{left:86.309989px;}
.xf{left:90.449989px;}
.x4{left:102.869989px;}
.xb{left:104.669989px;}
.x3{left:107.009989px;}
.x6{left:109.439989px;}
.x12{left:112.049989px;}
.x5{left:144.299989px;}
.x1{left:150.599989px;}
.x7{left:176.969989px;}
.xc{left:263.189989px;}
.x2{left:274.529989px;}
.x8{left:313.139989px;}
.x10{left:317.099989px;}
.x9{left:410.339989px;}
.xd{left:524.399989px;}
.xa{left:663.359989px;}
@media print{
.v6{vertical-align:-30.400000pt;}
.v5{vertical-align:-19.520000pt;}
.v2{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.v4{vertical-align:19.520000pt;}
.ls25{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.059733pt;}
.ls1a{letter-spacing:-0.047040pt;}
.ls22{letter-spacing:-0.033600pt;}
.ls24{letter-spacing:-0.032000pt;}
.ls16{letter-spacing:-0.021440pt;}
.ls26{letter-spacing:-0.016000pt;}
.ls21{letter-spacing:-0.006720pt;}
.ls12{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls1b{letter-spacing:0.034240pt;}
.lse{letter-spacing:0.045440pt;}
.ls20{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.049920pt;}
.ls10{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.082133pt;}
.ls9{letter-spacing:0.083200pt;}
.ls1{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.100800pt;}
.ls27{letter-spacing:0.144000pt;}
.ls1d{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.161067pt;}
.ls8{letter-spacing:0.177920pt;}
.ls11{letter-spacing:0.208000pt;}
.lsb{letter-spacing:0.748480pt;}
.lsa{letter-spacing:1.649920pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls7{letter-spacing:2.322240pt;}
.ls3{letter-spacing:2.809600pt;}
.ls2{letter-spacing:3.498560pt;}
.lsc{letter-spacing:9.043200pt;}
.ls6{letter-spacing:14.162240pt;}
.ls5{letter-spacing:17.529600pt;}
.lsf{letter-spacing:20.348907pt;}
.ls1e{letter-spacing:22.496000pt;}
.wsb{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.857600pt;}
.ws2{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.750080pt;}
.ws14{word-spacing:-11.723200pt;}
.wsa{word-spacing:-11.697067pt;}
.ws4{word-spacing:-11.612800pt;}
.ws5{word-spacing:-11.590933pt;}
.ws18{word-spacing:-10.704000pt;}
.ws15{word-spacing:-10.624000pt;}
.ws10{word-spacing:-10.560000pt;}
.ws17{word-spacing:-10.544000pt;}
.ws16{word-spacing:-10.528000pt;}
.ws11{word-spacing:-10.496000pt;}
.wsd{word-spacing:-8.271040pt;}
.ws6{word-spacing:-8.215360pt;}
.wsc{word-spacing:-8.189760pt;}
.ws0{word-spacing:-7.623680pt;}
.ws1{word-spacing:-7.603200pt;}
.ws3{word-spacing:-7.040000pt;}
.ws8{word-spacing:-0.156480pt;}
.ws12{word-spacing:0.000000pt;}
.wsf{word-spacing:0.053120pt;}
.wse{word-spacing:2.991360pt;}
.ws7{word-spacing:3.043520pt;}
._a{margin-left:-7.598613pt;}
._d{margin-left:-4.187947pt;}
._b{margin-left:-2.987733pt;}
._0{margin-left:-0.910400pt;}
._2{width:0.938133pt;}
._5{width:2.046080pt;}
._6{width:3.002560pt;}
._8{width:3.924800pt;}
._9{width:4.867307pt;}
._4{width:6.466240pt;}
._1{width:7.909120pt;}
._3{width:9.672640pt;}
._10{width:10.648853pt;}
._14{width:11.729387pt;}
._e{width:12.723093pt;}
._7{width:13.647467pt;}
._15{width:14.551253pt;}
._c{width:15.568853pt;}
._16{width:17.536000pt;}
._17{width:18.522667pt;}
._f{width:20.734720pt;}
._13{width:21.645120pt;}
._12{width:22.551680pt;}
._11{width:31.772053pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y2b{bottom:85.359919pt;}
.y2a{bottom:100.159919pt;}
.y53{bottom:100.319919pt;}
.y29{bottom:114.239919pt;}
.y52{bottom:114.399919pt;}
.y51{bottom:128.479919pt;}
.y28{bottom:133.599919pt;}
.y50{bottom:142.559919pt;}
.y4f{bottom:156.559919pt;}
.y4e{bottom:170.639919pt;}
.y4d{bottom:184.719919pt;}
.y4c{bottom:198.799919pt;}
.y4b{bottom:212.879919pt;}
.y4a{bottom:226.959919pt;}
.y27{bottom:230.639919pt;}
.y49{bottom:241.039919pt;}
.y25{bottom:246.239919pt;}
.y26{bottom:251.119919pt;}
.y48{bottom:255.039919pt;}
.y24{bottom:261.919919pt;}
.y47{bottom:269.119919pt;}
.y23{bottom:277.599919pt;}
.y46{bottom:283.199919pt;}
.y22{bottom:293.226585pt;}
.y45{bottom:297.306585pt;}
.y21{bottom:308.826585pt;}
.y44{bottom:311.386585pt;}
.y20{bottom:324.506585pt;}
.y43{bottom:325.466585pt;}
.y42{bottom:339.546585pt;}
.y1f{bottom:348.106585pt;}
.y41{bottom:353.546585pt;}
.y1e{bottom:363.786585pt;}
.y40{bottom:367.626585pt;}
.y1d{bottom:379.386585pt;}
.y3f{bottom:389.946585pt;}
.y1c{bottom:394.986585pt;}
.y1b{bottom:410.666585pt;}
.y3e{bottom:418.986585pt;}
.y1a{bottom:426.266585pt;}
.y3d{bottom:434.586585pt;}
.y19{bottom:441.946585pt;}
.y3c{bottom:450.266585pt;}
.y18{bottom:457.546585pt;}
.y3b{bottom:465.866585pt;}
.y17{bottom:481.146585pt;}
.y3a{bottom:489.466585pt;}
.y16{bottom:496.826585pt;}
.y39{bottom:505.146585pt;}
.y15{bottom:512.426585pt;}
.y38{bottom:520.746585pt;}
.y14{bottom:528.106585pt;}
.y13{bottom:543.706585pt;}
.y37{bottom:544.346585pt;}
.y12{bottom:559.333252pt;}
.y36{bottom:560.053252pt;}
.y11{bottom:575.013252pt;}
.y35{bottom:575.653252pt;}
.y34{bottom:592.053252pt;}
.y10{bottom:598.613252pt;}
.y33{bottom:607.653252pt;}
.yf{bottom:614.293252pt;}
.y32{bottom:623.333252pt;}
.ye{bottom:629.893252pt;}
.y31{bottom:638.933252pt;}
.yd{bottom:645.493252pt;}
.yc{bottom:661.173252pt;}
.y30{bottom:662.533252pt;}
.yb{bottom:676.773252pt;}
.y2f{bottom:685.893252pt;}
.ya{bottom:692.373252pt;}
.y2e{bottom:699.973252pt;}
.y2d{bottom:714.053252pt;}
.y9{bottom:723.733252pt;}
.y2c{bottom:733.413252pt;}
.y8{bottom:737.813252pt;}
.y7{bottom:751.893252pt;}
.y6{bottom:763.573252pt;}
.y5{bottom:779.173252pt;}
.y4{bottom:794.853252pt;}
.y3{bottom:823.519919pt;}
.y2{bottom:850.479919pt;}
.h5{height:31.205625pt;}
.h9{height:31.553437pt;}
.h6{height:33.846094pt;}
.hc{height:41.765625pt;}
.ha{height:42.140625pt;}
.h7{height:46.499062pt;}
.h4{height:46.916562pt;}
.hb{height:49.336436pt;}
.h8{height:51.073438pt;}
.h3{height:70.234375pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w2{width:665.279990pt;}
.w0{width:665.280000pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x11{left:75.599990pt;}
.xe{left:76.719990pt;}
.xf{left:80.399990pt;}
.x4{left:91.439990pt;}
.xb{left:93.039990pt;}
.x3{left:95.119990pt;}
.x6{left:97.279990pt;}
.x12{left:99.599990pt;}
.x5{left:128.266657pt;}
.x1{left:133.866657pt;}
.x7{left:157.306657pt;}
.xc{left:233.946657pt;}
.x2{left:244.026657pt;}
.x8{left:278.346657pt;}
.x10{left:281.866657pt;}
.x9{left:364.746657pt;}
.xd{left:466.133323pt;}
.xa{left:589.653323pt;}
}




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