
    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_39427deb99991283d98543de.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_5d93bbd7d86bc5a77eb26f2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_062cb148264aeab31ffea181.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892000;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_1b742c269abd5241be7991b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:2.262000;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_72eaeb2b407b0abed9a9bcab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.299000;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_b1b3b9aaf9c7e9fc0f592e1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_8514875e511a0ba84de53628.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.522000;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_17bf2b668fda70b6e6831117.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.840000;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_5fd8ba6d4e173fa2b5b18e2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916000;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);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-18.462000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:18.918000px;}
.v1{vertical-align:23.760000px;}
.va{vertical-align:39.276000px;}
.vc{vertical-align:44.904000px;}
.v4{vertical-align:51.450000px;}
.vb{vertical-align:53.046000px;}
.v6{vertical-align:63.324000px;}
.v5{vertical-align:81.786000px;}
.v9{vertical-align:92.322000px;}
.v8{vertical-align:102.600000px;}
.v7{vertical-align:121.056000px;}
.ls2b{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.002700px;}
.lsf{letter-spacing:0.003527px;}
.ls23{letter-spacing:0.003779px;}
.ls21{letter-spacing:0.005400px;}
.ls2d{letter-spacing:2.684467px;}
.ls1{letter-spacing:2.987700px;}
.ls2c{letter-spacing:3.246556px;}
.ls0{letter-spacing:4.302508px;}
.ls6{letter-spacing:4.447621px;}
.ls18{letter-spacing:4.453621px;}
.ls14{letter-spacing:5.499239px;}
.ls22{letter-spacing:7.267912px;}
.ls10{letter-spacing:7.273912px;}
.ls19{letter-spacing:9.026706px;}
.ls7{letter-spacing:9.032706px;}
.ls15{letter-spacing:9.035412px;}
.ls1e{letter-spacing:9.041412px;}
.ls5{letter-spacing:9.553621px;}
.lsc{letter-spacing:9.559621px;}
.ls29{letter-spacing:12.083700px;}
.ls1d{letter-spacing:13.537621px;}
.ls2{letter-spacing:16.440600px;}
.ls12{letter-spacing:18.991621px;}
.ls1a{letter-spacing:18.997621px;}
.ls24{letter-spacing:21.861239px;}
.ls25{letter-spacing:25.915621px;}
.lsa{letter-spacing:26.046048px;}
.ls3{letter-spacing:26.052048px;}
.ls13{letter-spacing:29.057412px;}
.ls2a{letter-spacing:37.316700px;}
.ls1b{letter-spacing:47.633412px;}
.lsb{letter-spacing:56.375700px;}
.ls4{letter-spacing:56.381700px;}
.ls11{letter-spacing:56.813700px;}
.ls1c{letter-spacing:59.723412px;}
.lsd{letter-spacing:64.225621px;}
.ls1f{letter-spacing:69.901621px;}
.ls27{letter-spacing:72.727621px;}
.ls20{letter-spacing:74.285412px;}
.lse{letter-spacing:74.291412px;}
.ls17{letter-spacing:92.867412px;}
.ls26{letter-spacing:100.663621px;}
.ls8{letter-spacing:135.355621px;}
.ls9{letter-spacing:138.181621px;}
.ls28{letter-spacing:236.509621px;}
.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;}
}
.wsa{word-spacing:-65.454600px;}
.ws9{word-spacing:-51.820407px;}
.ws6{word-spacing:-47.820600px;}
.ws2d{word-spacing:-28.238780px;}
.ws1{word-spacing:-17.215500px;}
.ws5{word-spacing:-16.363650px;}
.ws11{word-spacing:-13.090950px;}
.ws26{word-spacing:-10.759650px;}
.ws13{word-spacing:-2.356366px;}
.ws1e{word-spacing:-2.160002px;}
.ws16{word-spacing:-1.156947px;}
.wse{word-spacing:-0.850910px;}
.ws23{word-spacing:-0.086077px;}
.ws4{word-spacing:-0.065455px;}
.ws8{word-spacing:-0.047821px;}
.wsb{word-spacing:-0.001238px;}
.ws22{word-spacing:-0.000629px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:0.261818px;}
.ws15{word-spacing:0.458182px;}
.ws21{word-spacing:0.523637px;}
.ws20{word-spacing:0.785455px;}
.ws1d{word-spacing:2.552729px;}
.ws29{word-spacing:3.174106px;}
.ws19{word-spacing:3.272730px;}
.ws1a{word-spacing:3.927276px;}
.ws1b{word-spacing:3.961526px;}
.ws1c{word-spacing:3.992731px;}
.ws24{word-spacing:4.034880px;}
.ws27{word-spacing:4.390406px;}
.ws1f{word-spacing:4.845558px;}
.ws17{word-spacing:4.909095px;}
.ws18{word-spacing:8.109558px;}
.ws14{word-spacing:8.443643px;}
.wsc{word-spacing:9.820286px;}
.ws12{word-spacing:10.276372px;}
.ws10{word-spacing:10.341827px;}
.ws3{word-spacing:13.395802px;}
.ws28{word-spacing:15.924326px;}
.ws25{word-spacing:17.753472px;}
.ws2a{word-spacing:19.259827px;}
.ws0{word-spacing:21.433223px;}
.wsd{word-spacing:56.360668px;}
.ws2b{word-spacing:86.938214px;}
.ws2c{word-spacing:91.941466px;}
.ws7{word-spacing:121.817908px;}
._0{margin-left:-7.919102px;}
._12{margin-left:-5.951828px;}
._4{margin-left:-4.949453px;}
._5{margin-left:-2.618184px;}
._1{margin-left:-1.549390px;}
._b{width:1.568101px;}
._a{width:3.246963px;}
._3{width:4.269444px;}
._7{width:5.373693px;}
._d{width:18.523652px;}
._8{width:20.029108px;}
._e{width:21.947813px;}
._2{width:23.659823px;}
._6{width:25.517530px;}
._10{width:27.229114px;}
._9{width:28.713049px;}
._f{width:30.055749px;}
._11{width:32.709427px;}
._c{width:51.250952px;}
._13{width:87.045811px;}
._14{width:105.390960px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs8{font-size:43.038600px;}
.fs3{font-size:47.820600px;}
.fs7{font-size:52.363800px;}
.fs5{font-size:53.798400px;}
.fs6{font-size:58.909200px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:68.862000px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y26{bottom:139.426500px;}
.y25{bottom:184.683000px;}
.y24{bottom:205.006500px;}
.y23{bottom:225.330000px;}
.y22{bottom:245.653500px;}
.y21{bottom:274.944000px;}
.y20{bottom:295.267500px;}
.y1d{bottom:325.287000px;}
.y1f{bottom:326.923500px;}
.y1e{bottom:349.227000px;}
.y1c{bottom:358.596000px;}
.y1b{bottom:382.975500px;}
.y1a{bottom:412.266000px;}
.y19{bottom:441.556500px;}
.y18{bottom:487.284000px;}
.y15{bottom:524.035500px;}
.y17{bottom:527.080500px;}
.y16{bottom:536.898000px;}
.y14{bottom:557.344500px;}
.y12{bottom:575.847000px;}
.y37{bottom:585.004500px;}
.y13{bottom:588.709500px;}
.y36{bottom:601.443000px;}
.y11{bottom:609.156000px;}
.y35{bottom:620.355000px;}
.ye{bottom:630.460500px;}
.y10{bottom:633.505500px;}
.y34{bottom:636.793500px;}
.yf{bottom:643.323000px;}
.y33{bottom:653.230500px;}
.yd{bottom:663.769500px;}
.y32{bottom:669.669000px;}
.yb{bottom:685.075500px;}
.yc{bottom:688.119000px;}
.y31{bottom:703.044000px;}
.ya{bottom:718.383000px;}
.y30{bottom:755.716500px;}
.y9{bottom:757.219500px;}
.y2f{bottom:776.040000px;}
.y7{bottom:780.514500px;}
.y8{bottom:793.377000px;}
.y2e{bottom:796.363500px;}
.y6{bottom:813.823500px;}
.y2d{bottom:825.654000px;}
.y5{bottom:839.025000px;}
.y2c{bottom:845.977500px;}
.y2b{bottom:866.301000px;}
.y4{bottom:882.163500px;}
.y2a{bottom:886.624500px;}
.y3{bottom:902.487000px;}
.y29{bottom:906.949500px;}
.y2{bottom:935.302500px;}
.y28{bottom:936.238500px;}
.y27{bottom:956.563500px;}
.y1{bottom:976.887000px;}
.h5{height:2.356368px;}
.hc{height:24.104334px;}
.h7{height:24.436327px;}
.he{height:32.661470px;}
.h3{height:37.240092px;}
.h12{height:42.560334px;}
.h16{height:47.880576px;}
.h4{height:58.254594px;}
.h15{height:59.479345px;}
.h2{height:66.320334px;}
.h1{height:76.608708px;}
.h8{height:84.142368px;}
.h11{height:94.940184px;}
.hf{height:97.524594px;}
.hb{height:97.530594px;}
.h14{height:103.158594px;}
.h10{height:105.884334px;}
.h9{height:109.704594px;}
.h13{height:129.046368px;}
.ha{height:135.261470px;}
.hd{height:145.160334px;}
.h6{height:157.334334px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:188.697000px;}
.x22{left:200.277000px;}
.x2{left:214.102500px;}
.x23{left:224.140500px;}
.xe{left:226.798500px;}
.x9{left:229.558500px;}
.xf{left:234.964500px;}
.xa{left:237.724500px;}
.x19{left:241.897500px;}
.x1a{left:250.062000px;}
.x10{left:257.796000px;}
.x3{left:270.316500px;}
.x4{left:278.482500px;}
.x1b{left:289.053000px;}
.xb{left:340.993500px;}
.x14{left:349.159500px;}
.x15{left:371.992500px;}
.xc{left:380.088000px;}
.x11{left:389.377500px;}
.x1c{left:398.874000px;}
.x17{left:403.029000px;}
.x12{left:406.903500px;}
.x5{left:419.137500px;}
.x16{left:438.012000px;}
.x6{left:441.970500px;}
.x1d{left:452.412000px;}
.x21{left:453.598500px;}
.xd{left:460.851000px;}
.x18{left:463.611000px;}
.x13{left:467.485500px;}
.x7{left:581.632500px;}
.x1e{left:585.864000px;}
.x8{left:604.465500px;}
.x1f{left:608.035500px;}
.x20{left:612.889500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-16.410667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:16.816000pt;}
.v1{vertical-align:21.120000pt;}
.va{vertical-align:34.912000pt;}
.vc{vertical-align:39.914667pt;}
.v4{vertical-align:45.733333pt;}
.vb{vertical-align:47.152000pt;}
.v6{vertical-align:56.288000pt;}
.v5{vertical-align:72.698667pt;}
.v9{vertical-align:82.064000pt;}
.v8{vertical-align:91.200000pt;}
.v7{vertical-align:107.605333pt;}
.ls2b{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.002400pt;}
.lsf{letter-spacing:0.003135pt;}
.ls23{letter-spacing:0.003359pt;}
.ls21{letter-spacing:0.004800pt;}
.ls2d{letter-spacing:2.386193pt;}
.ls1{letter-spacing:2.655733pt;}
.ls2c{letter-spacing:2.885827pt;}
.ls0{letter-spacing:3.824451pt;}
.ls6{letter-spacing:3.953441pt;}
.ls18{letter-spacing:3.958774pt;}
.ls14{letter-spacing:4.888213pt;}
.ls22{letter-spacing:6.460366pt;}
.ls10{letter-spacing:6.465700pt;}
.ls19{letter-spacing:8.023739pt;}
.ls7{letter-spacing:8.029072pt;}
.ls15{letter-spacing:8.031477pt;}
.ls1e{letter-spacing:8.036811pt;}
.ls5{letter-spacing:8.492108pt;}
.lsc{letter-spacing:8.497441pt;}
.ls29{letter-spacing:10.741067pt;}
.ls1d{letter-spacing:12.033441pt;}
.ls2{letter-spacing:14.613867pt;}
.ls12{letter-spacing:16.881441pt;}
.ls1a{letter-spacing:16.886774pt;}
.ls24{letter-spacing:19.432213pt;}
.ls25{letter-spacing:23.036108pt;}
.lsa{letter-spacing:23.152043pt;}
.ls3{letter-spacing:23.157376pt;}
.ls13{letter-spacing:25.828811pt;}
.ls2a{letter-spacing:33.170400pt;}
.ls1b{letter-spacing:42.340811pt;}
.lsb{letter-spacing:50.111733pt;}
.ls4{letter-spacing:50.117067pt;}
.ls11{letter-spacing:50.501067pt;}
.ls1c{letter-spacing:53.087477pt;}
.lsd{letter-spacing:57.089441pt;}
.ls1f{letter-spacing:62.134774pt;}
.ls27{letter-spacing:64.646774pt;}
.ls20{letter-spacing:66.031477pt;}
.lse{letter-spacing:66.036811pt;}
.ls17{letter-spacing:82.548811pt;}
.ls26{letter-spacing:89.478774pt;}
.ls8{letter-spacing:120.316108pt;}
.ls9{letter-spacing:122.828108pt;}
.ls28{letter-spacing:210.230774pt;}
.wsa{word-spacing:-58.181867pt;}
.ws9{word-spacing:-46.062584pt;}
.ws6{word-spacing:-42.507200pt;}
.ws2d{word-spacing:-25.101138pt;}
.ws1{word-spacing:-15.302667pt;}
.ws5{word-spacing:-14.545467pt;}
.ws11{word-spacing:-11.636400pt;}
.ws26{word-spacing:-9.564133pt;}
.ws13{word-spacing:-2.094547pt;}
.ws1e{word-spacing:-1.920002pt;}
.ws16{word-spacing:-1.028397pt;}
.wse{word-spacing:-0.756364pt;}
.ws23{word-spacing:-0.076513pt;}
.ws4{word-spacing:-0.058182pt;}
.ws8{word-spacing:-0.042507pt;}
.wsb{word-spacing:-0.001100pt;}
.ws22{word-spacing:-0.000559pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:0.232727pt;}
.ws15{word-spacing:0.407273pt;}
.ws21{word-spacing:0.465455pt;}
.ws20{word-spacing:0.698182pt;}
.ws1d{word-spacing:2.269093pt;}
.ws29{word-spacing:2.821427pt;}
.ws19{word-spacing:2.909093pt;}
.ws1a{word-spacing:3.490912pt;}
.ws1b{word-spacing:3.521356pt;}
.ws1c{word-spacing:3.549094pt;}
.ws24{word-spacing:3.586560pt;}
.ws27{word-spacing:3.902583pt;}
.ws1f{word-spacing:4.307163pt;}
.ws17{word-spacing:4.363640pt;}
.ws18{word-spacing:7.208496pt;}
.ws14{word-spacing:7.505461pt;}
.wsc{word-spacing:8.729143pt;}
.ws12{word-spacing:9.134553pt;}
.ws10{word-spacing:9.192735pt;}
.ws3{word-spacing:11.907379pt;}
.ws28{word-spacing:14.154957pt;}
.ws25{word-spacing:15.780864pt;}
.ws2a{word-spacing:17.119846pt;}
.ws0{word-spacing:19.051754pt;}
.wsd{word-spacing:50.098372pt;}
.ws2b{word-spacing:77.278413pt;}
.ws2c{word-spacing:81.725747pt;}
.ws7{word-spacing:108.282585pt;}
._0{margin-left:-7.039202pt;}
._12{margin-left:-5.290514pt;}
._4{margin-left:-4.399514pt;}
._5{margin-left:-2.327275pt;}
._1{margin-left:-1.377235pt;}
._b{width:1.393867pt;}
._a{width:2.886189pt;}
._3{width:3.795061pt;}
._7{width:4.776616pt;}
._d{width:16.465468pt;}
._8{width:17.803651pt;}
._e{width:19.509167pt;}
._2{width:21.030954pt;}
._6{width:22.682249pt;}
._10{width:24.203657pt;}
._9{width:25.522710pt;}
._f{width:26.716221pt;}
._11{width:29.075046pt;}
._c{width:45.556402pt;}
._13{width:77.374054pt;}
._14{width:93.680853pt;}
.fs4{font-size:37.193600pt;}
.fs8{font-size:38.256533pt;}
.fs3{font-size:42.507200pt;}
.fs7{font-size:46.545600pt;}
.fs5{font-size:47.820800pt;}
.fs6{font-size:52.363733pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:61.210667pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:123.934667pt;}
.y25{bottom:164.162667pt;}
.y24{bottom:182.228000pt;}
.y23{bottom:200.293333pt;}
.y22{bottom:218.358667pt;}
.y21{bottom:244.394667pt;}
.y20{bottom:262.460000pt;}
.y1d{bottom:289.144000pt;}
.y1f{bottom:290.598667pt;}
.y1e{bottom:310.424000pt;}
.y1c{bottom:318.752000pt;}
.y1b{bottom:340.422667pt;}
.y1a{bottom:366.458667pt;}
.y19{bottom:392.494667pt;}
.y18{bottom:433.141333pt;}
.y15{bottom:465.809333pt;}
.y17{bottom:468.516000pt;}
.y16{bottom:477.242667pt;}
.y14{bottom:495.417333pt;}
.y12{bottom:511.864000pt;}
.y37{bottom:520.004000pt;}
.y13{bottom:523.297333pt;}
.y36{bottom:534.616000pt;}
.y11{bottom:541.472000pt;}
.y35{bottom:551.426667pt;}
.ye{bottom:560.409333pt;}
.y10{bottom:563.116000pt;}
.y34{bottom:566.038667pt;}
.yf{bottom:571.842667pt;}
.y33{bottom:580.649333pt;}
.yd{bottom:590.017333pt;}
.y32{bottom:595.261333pt;}
.yb{bottom:608.956000pt;}
.yc{bottom:611.661333pt;}
.y31{bottom:624.928000pt;}
.ya{bottom:638.562667pt;}
.y30{bottom:671.748000pt;}
.y9{bottom:673.084000pt;}
.y2f{bottom:689.813333pt;}
.y7{bottom:693.790667pt;}
.y8{bottom:705.224000pt;}
.y2e{bottom:707.878667pt;}
.y6{bottom:723.398667pt;}
.y2d{bottom:733.914667pt;}
.y5{bottom:745.800000pt;}
.y2c{bottom:751.980000pt;}
.y2b{bottom:770.045333pt;}
.y4{bottom:784.145333pt;}
.y2a{bottom:788.110667pt;}
.y3{bottom:802.210667pt;}
.y29{bottom:806.177333pt;}
.y2{bottom:831.380000pt;}
.y28{bottom:832.212000pt;}
.y27{bottom:850.278667pt;}
.y1{bottom:868.344000pt;}
.h5{height:2.094549pt;}
.hc{height:21.426075pt;}
.h7{height:21.721179pt;}
.he{height:29.032418pt;}
.h3{height:33.102304pt;}
.h12{height:37.831408pt;}
.h16{height:42.560512pt;}
.h4{height:51.781861pt;}
.h15{height:52.870529pt;}
.h2{height:58.951408pt;}
.h1{height:68.096629pt;}
.h8{height:74.793216pt;}
.h11{height:84.391275pt;}
.hf{height:86.688528pt;}
.hb{height:86.693861pt;}
.h14{height:91.696528pt;}
.h10{height:94.119408pt;}
.h9{height:97.515195pt;}
.h13{height:114.707883pt;}
.ha{height:120.232418pt;}
.hd{height:129.031408pt;}
.h6{height:139.852741pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:167.730667pt;}
.x22{left:178.024000pt;}
.x2{left:190.313333pt;}
.x23{left:199.236000pt;}
.xe{left:201.598667pt;}
.x9{left:204.052000pt;}
.xf{left:208.857333pt;}
.xa{left:211.310667pt;}
.x19{left:215.020000pt;}
.x1a{left:222.277333pt;}
.x10{left:229.152000pt;}
.x3{left:240.281333pt;}
.x4{left:247.540000pt;}
.x1b{left:256.936000pt;}
.xb{left:303.105333pt;}
.x14{left:310.364000pt;}
.x15{left:330.660000pt;}
.xc{left:337.856000pt;}
.x11{left:346.113333pt;}
.x1c{left:354.554667pt;}
.x17{left:358.248000pt;}
.x12{left:361.692000pt;}
.x5{left:372.566667pt;}
.x16{left:389.344000pt;}
.x6{left:392.862667pt;}
.x1d{left:402.144000pt;}
.x21{left:403.198667pt;}
.xd{left:409.645333pt;}
.x18{left:412.098667pt;}
.x13{left:415.542667pt;}
.x7{left:517.006667pt;}
.x1e{left:520.768000pt;}
.x8{left:537.302667pt;}
.x1f{left:540.476000pt;}
.x20{left:544.790667pt;}
}




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