
    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_496f9f4c89067ffb11afddeb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_e44ee73614eed93511d3fe4a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.805176;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_0ccf294621a036893a6f8cb1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.907715;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_f64d868ab55d2894b0af5ac4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_0ba78c2846af3b745ad626ba.woff')format("woff");}.ff5{font-family:ff5;line-height:0.805176;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_db4423d20a0452555de83b7b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.907715;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_b8b2e165fdf0d1230b268f6c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_c9b365a3085e6a0b0775865f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003000;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_be1df6d305a3fd4f3b762c3c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_52df01a4eefa7521a8b528d8.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.011200px;}
.ls12{letter-spacing:-2.484000px;}
.lse{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-0.528000px;}
.ls14{letter-spacing:-0.414000px;}
.ls7{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.300000px;}
.ls4{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.138000px;}
.lsf{letter-spacing:-0.132000px;}
.lsd{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.330000px;}
.ls16{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.594000px;}
.ls15{letter-spacing:0.672000px;}
.ls3{letter-spacing:1.260000px;}
.ls1{letter-spacing:1.323000px;}
.ls9{letter-spacing:3.600000px;}
.lsa{letter-spacing:3.936000px;}
.lsb{letter-spacing:5.175000px;}
.lsc{letter-spacing:6.000000px;}
.ls2{letter-spacing:7.260000px;}
.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;}
}
.ws8{word-spacing:-108.108000px;}
.ws7{word-spacing:-108.000000px;}
.ws6{word-spacing:-84.000000px;}
.ws13{word-spacing:-80.175000px;}
.wsc{word-spacing:-69.000000px;}
.ws2{word-spacing:-67.260000px;}
.ws18{word-spacing:-66.000000px;}
.ws1{word-spacing:-64.323000px;}
.ws4{word-spacing:-61.260000px;}
.wsa{word-spacing:-60.240000px;}
.ws3{word-spacing:-60.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws9{word-spacing:-59.640000px;}
.ws17{word-spacing:-57.635700px;}
.wsf{word-spacing:-54.000000px;}
.ws12{word-spacing:-51.936000px;}
.wsb{word-spacing:-42.228000px;}
.wsd{word-spacing:-40.227000px;}
.wse{word-spacing:-23.321844px;}
.ws1d{word-spacing:-20.286000px;}
.ws1c{word-spacing:-19.668000px;}
.ws16{word-spacing:-17.100000px;}
.ws15{word-spacing:-17.088000px;}
.ws19{word-spacing:-14.820000px;}
.ws1e{word-spacing:-14.736000px;}
.ws24{word-spacing:-0.672000px;}
.ws20{word-spacing:-0.594000px;}
.ws21{word-spacing:-0.330000px;}
.ws26{word-spacing:-0.066000px;}
.ws10{word-spacing:0.000000px;}
.ws1a{word-spacing:0.060000px;}
.ws1f{word-spacing:0.132000px;}
.ws23{word-spacing:0.138000px;}
.ws11{word-spacing:0.300000px;}
.ws25{word-spacing:0.528000px;}
.ws1b{word-spacing:1.200000px;}
.ws22{word-spacing:2.484000px;}
.ws14{word-spacing:378.780000px;}
.ws0{word-spacing:518.400000px;}
._b{margin-left:-9.090000px;}
._10{margin-left:-7.117500px;}
._d{margin-left:-6.042000px;}
._a{margin-left:-4.822800px;}
._c{margin-left:-3.717600px;}
._3{margin-left:-2.502000px;}
._0{margin-left:-1.494000px;}
._1{width:1.122000px;}
._7{width:2.262000px;}
._9{width:3.290400px;}
._8{width:4.461600px;}
._4{width:5.952000px;}
._5{width:7.338000px;}
._6{width:8.490000px;}
._e{width:9.677100px;}
._11{width:10.899900px;}
._f{width:43.445160px;}
._2{width:943.177200px;}
._12{width:947.227200px;}
.fc5{color:rgb(173,180,189);}
.fc4{color:rgb(85,85,103);}
.fc3{color:rgb(53,89,176);}
.fc2{color:rgb(130,129,143);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:40.227000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y45{bottom:106.165350px;}
.y1c{bottom:106.296300px;}
.y1b{bottom:126.544800px;}
.y44{bottom:126.589350px;}
.y43{bottom:147.013350px;}
.y6c{bottom:159.088500px;}
.y42{bottom:167.437350px;}
.y1a{bottom:170.532750px;}
.y6b{bottom:175.588500px;}
.y41{bottom:187.861350px;}
.y19{bottom:191.819250px;}
.y6a{bottom:192.088500px;}
.y40{bottom:208.285350px;}
.y69{bottom:208.588500px;}
.y18{bottom:213.105750px;}
.y3f{bottom:228.709350px;}
.y17{bottom:234.392250px;}
.y3e{bottom:249.133350px;}
.y68{bottom:254.128500px;}
.y16{bottom:255.678750px;}
.y3d{bottom:269.557350px;}
.y67{bottom:270.628500px;}
.y15{bottom:276.965250px;}
.y66{bottom:287.128500px;}
.y3c{bottom:289.981350px;}
.y14{bottom:298.251750px;}
.y65{bottom:303.628500px;}
.y3b{bottom:310.405350px;}
.y13{bottom:319.529700px;}
.y3a{bottom:330.829350px;}
.y12{bottom:340.816200px;}
.y39{bottom:351.253350px;}
.y11{bottom:362.102700px;}
.y38{bottom:371.677350px;}
.y37{bottom:392.101350px;}
.y36{bottom:412.525350px;}
.y35{bottom:432.949350px;}
.y34{bottom:453.373350px;}
.y10{bottom:455.704500px;}
.y33{bottom:473.797350px;}
.yf{bottom:477.739500px;}
.y32{bottom:494.221350px;}
.ye{bottom:499.774500px;}
.y59{bottom:504.191550px;}
.y31{bottom:514.645350px;}
.yd{bottom:521.809500px;}
.y58{bottom:524.441550px;}
.y30{bottom:535.069350px;}
.y57{bottom:544.691550px;}
.y2f{bottom:555.493350px;}
.y56{bottom:564.941550px;}
.yc{bottom:573.594150px;}
.y2e{bottom:575.917350px;}
.y55{bottom:585.191550px;}
.y2d{bottom:596.341350px;}
.yb{bottom:606.129150px;}
.y2c{bottom:616.765350px;}
.y54{bottom:618.191550px;}
.y75{bottom:620.320350px;}
.y2b{bottom:637.189350px;}
.ya{bottom:638.664150px;}
.y74{bottom:640.565850px;}
.y2a{bottom:657.613350px;}
.y53{bottom:659.683350px;}
.y73{bottom:660.811350px;}
.y9{bottom:671.199150px;}
.y29{bottom:678.037350px;}
.y52{bottom:679.934850px;}
.y72{bottom:681.056850px;}
.y28{bottom:698.461350px;}
.y51{bottom:700.186350px;}
.y71{bottom:701.302350px;}
.y8{bottom:703.734150px;}
.y27{bottom:718.885350px;}
.y50{bottom:720.437850px;}
.y70{bottom:721.547850px;}
.y7{bottom:736.266300px;}
.y26{bottom:739.309350px;}
.y4f{bottom:740.689350px;}
.y6f{bottom:741.793350px;}
.y25{bottom:759.733350px;}
.y4e{bottom:760.940850px;}
.y6e{bottom:762.038850px;}
.y24{bottom:780.157350px;}
.y4d{bottom:781.192350px;}
.y6d{bottom:782.284350px;}
.y6{bottom:798.551700px;}
.y23{bottom:800.581350px;}
.y4c{bottom:801.443850px;}
.y22{bottom:821.005350px;}
.y4b{bottom:821.695350px;}
.y5{bottom:829.091700px;}
.y61{bottom:829.754850px;}
.y21{bottom:841.429350px;}
.y4a{bottom:841.946850px;}
.y60{bottom:850.000350px;}
.y4{bottom:851.126700px;}
.y20{bottom:861.853350px;}
.y49{bottom:862.198350px;}
.y5f{bottom:870.245850px;}
.y3{bottom:881.666700px;}
.y1f{bottom:882.277350px;}
.y48{bottom:882.449850px;}
.y5e{bottom:890.491350px;}
.y1e{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y5d{bottom:910.736850px;}
.y64{bottom:929.626350px;}
.y5c{bottom:930.982350px;}
.y1d{bottom:948.189000px;}
.y63{bottom:949.877850px;}
.y5b{bottom:951.227850px;}
.y47{bottom:966.189000px;}
.y62{bottom:970.129350px;}
.y5a{bottom:971.473350px;}
.y46{bottom:984.189000px;}
.h8{height:33.870539px;}
.hf{height:38.544000px;}
.hc{height:39.990234px;}
.ha{height:40.757812px;}
.h9{height:45.852539px;}
.h2{height:50.947266px;}
.hd{height:52.998000px;}
.h3{height:53.494629px;}
.he{height:55.200000px;}
.h6{height:58.589355px;}
.h7{height:58.623555px;}
.hb{height:63.684082px;}
.h4{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:68.201700px;}
.x7{left:83.672550px;}
.x1{left:85.039350px;}
.x8{left:104.125650px;}
.x5{left:105.279900px;}
.x6{left:106.407150px;}
.x4{left:230.000700px;}
.x3{left:232.218000px;}
.x2{left:233.415450px;}
.xc{left:356.555850px;}
.x9{left:357.781950px;}
.xb{left:398.910900px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.121067pt;}
.ls12{letter-spacing:-2.208000pt;}
.lse{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-0.469333pt;}
.ls14{letter-spacing:-0.368000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.122667pt;}
.lsf{letter-spacing:-0.117333pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.293333pt;}
.ls16{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.528000pt;}
.ls15{letter-spacing:0.597333pt;}
.ls3{letter-spacing:1.120000pt;}
.ls1{letter-spacing:1.176000pt;}
.ls9{letter-spacing:3.200000pt;}
.lsa{letter-spacing:3.498667pt;}
.lsb{letter-spacing:4.600000pt;}
.lsc{letter-spacing:5.333333pt;}
.ls2{letter-spacing:6.453333pt;}
.ws8{word-spacing:-96.096000pt;}
.ws7{word-spacing:-96.000000pt;}
.ws6{word-spacing:-74.666667pt;}
.ws13{word-spacing:-71.266667pt;}
.wsc{word-spacing:-61.333333pt;}
.ws2{word-spacing:-59.786667pt;}
.ws18{word-spacing:-58.666667pt;}
.ws1{word-spacing:-57.176000pt;}
.ws4{word-spacing:-54.453333pt;}
.wsa{word-spacing:-53.546667pt;}
.ws3{word-spacing:-53.333333pt;}
.ws5{word-spacing:-53.120000pt;}
.ws9{word-spacing:-53.013333pt;}
.ws17{word-spacing:-51.231733pt;}
.wsf{word-spacing:-48.000000pt;}
.ws12{word-spacing:-46.165333pt;}
.wsb{word-spacing:-37.536000pt;}
.wsd{word-spacing:-35.757333pt;}
.wse{word-spacing:-20.730528pt;}
.ws1d{word-spacing:-18.032000pt;}
.ws1c{word-spacing:-17.482667pt;}
.ws16{word-spacing:-15.200000pt;}
.ws15{word-spacing:-15.189333pt;}
.ws19{word-spacing:-13.173333pt;}
.ws1e{word-spacing:-13.098667pt;}
.ws24{word-spacing:-0.597333pt;}
.ws20{word-spacing:-0.528000pt;}
.ws21{word-spacing:-0.293333pt;}
.ws26{word-spacing:-0.058667pt;}
.ws10{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.053333pt;}
.ws1f{word-spacing:0.117333pt;}
.ws23{word-spacing:0.122667pt;}
.ws11{word-spacing:0.266667pt;}
.ws25{word-spacing:0.469333pt;}
.ws1b{word-spacing:1.066667pt;}
.ws22{word-spacing:2.208000pt;}
.ws14{word-spacing:336.693333pt;}
.ws0{word-spacing:460.800000pt;}
._b{margin-left:-8.080000pt;}
._10{margin-left:-6.326667pt;}
._d{margin-left:-5.370667pt;}
._a{margin-left:-4.286933pt;}
._c{margin-left:-3.304533pt;}
._3{margin-left:-2.224000pt;}
._0{margin-left:-1.328000pt;}
._1{width:0.997333pt;}
._7{width:2.010667pt;}
._9{width:2.924800pt;}
._8{width:3.965867pt;}
._4{width:5.290667pt;}
._5{width:6.522667pt;}
._6{width:7.546667pt;}
._e{width:8.601867pt;}
._11{width:9.688800pt;}
._f{width:38.617920pt;}
._2{width:838.379733pt;}
._12{width:841.979733pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:35.757333pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y45{bottom:94.369200pt;}
.y1c{bottom:94.485600pt;}
.y1b{bottom:112.484267pt;}
.y44{bottom:112.523867pt;}
.y43{bottom:130.678533pt;}
.y6c{bottom:141.412000pt;}
.y42{bottom:148.833200pt;}
.y1a{bottom:151.584667pt;}
.y6b{bottom:156.078667pt;}
.y41{bottom:166.987867pt;}
.y19{bottom:170.506000pt;}
.y6a{bottom:170.745333pt;}
.y40{bottom:185.142533pt;}
.y69{bottom:185.412000pt;}
.y18{bottom:189.427333pt;}
.y3f{bottom:203.297200pt;}
.y17{bottom:208.348667pt;}
.y3e{bottom:221.451867pt;}
.y68{bottom:225.892000pt;}
.y16{bottom:227.270000pt;}
.y3d{bottom:239.606533pt;}
.y67{bottom:240.558667pt;}
.y15{bottom:246.191333pt;}
.y66{bottom:255.225333pt;}
.y3c{bottom:257.761200pt;}
.y14{bottom:265.112667pt;}
.y65{bottom:269.892000pt;}
.y3b{bottom:275.915867pt;}
.y13{bottom:284.026400pt;}
.y3a{bottom:294.070533pt;}
.y12{bottom:302.947733pt;}
.y39{bottom:312.225200pt;}
.y11{bottom:321.869067pt;}
.y38{bottom:330.379867pt;}
.y37{bottom:348.534533pt;}
.y36{bottom:366.689200pt;}
.y35{bottom:384.843867pt;}
.y34{bottom:402.998533pt;}
.y10{bottom:405.070667pt;}
.y33{bottom:421.153200pt;}
.yf{bottom:424.657333pt;}
.y32{bottom:439.307867pt;}
.ye{bottom:444.244000pt;}
.y59{bottom:448.170267pt;}
.y31{bottom:457.462533pt;}
.yd{bottom:463.830667pt;}
.y58{bottom:466.170267pt;}
.y30{bottom:475.617200pt;}
.y57{bottom:484.170267pt;}
.y2f{bottom:493.771867pt;}
.y56{bottom:502.170267pt;}
.yc{bottom:509.861467pt;}
.y2e{bottom:511.926533pt;}
.y55{bottom:520.170267pt;}
.y2d{bottom:530.081200pt;}
.yb{bottom:538.781467pt;}
.y2c{bottom:548.235867pt;}
.y54{bottom:549.503600pt;}
.y75{bottom:551.395867pt;}
.y2b{bottom:566.390533pt;}
.ya{bottom:567.701467pt;}
.y74{bottom:569.391867pt;}
.y2a{bottom:584.545200pt;}
.y53{bottom:586.385200pt;}
.y73{bottom:587.387867pt;}
.y9{bottom:596.621467pt;}
.y29{bottom:602.699867pt;}
.y52{bottom:604.386533pt;}
.y72{bottom:605.383867pt;}
.y28{bottom:620.854533pt;}
.y51{bottom:622.387867pt;}
.y71{bottom:623.379867pt;}
.y8{bottom:625.541467pt;}
.y27{bottom:639.009200pt;}
.y50{bottom:640.389200pt;}
.y70{bottom:641.375867pt;}
.y7{bottom:654.458933pt;}
.y26{bottom:657.163867pt;}
.y4f{bottom:658.390533pt;}
.y6f{bottom:659.371867pt;}
.y25{bottom:675.318533pt;}
.y4e{bottom:676.391867pt;}
.y6e{bottom:677.367867pt;}
.y24{bottom:693.473200pt;}
.y4d{bottom:694.393200pt;}
.y6d{bottom:695.363867pt;}
.y6{bottom:709.823733pt;}
.y23{bottom:711.627867pt;}
.y4c{bottom:712.394533pt;}
.y22{bottom:729.782533pt;}
.y4b{bottom:730.395867pt;}
.y5{bottom:736.970400pt;}
.y61{bottom:737.559867pt;}
.y21{bottom:747.937200pt;}
.y4a{bottom:748.397200pt;}
.y60{bottom:755.555867pt;}
.y4{bottom:756.557067pt;}
.y20{bottom:766.091867pt;}
.y49{bottom:766.398533pt;}
.y5f{bottom:773.551867pt;}
.y3{bottom:783.703733pt;}
.y1f{bottom:784.246533pt;}
.y48{bottom:784.399867pt;}
.y5e{bottom:791.547867pt;}
.y1e{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y5d{bottom:809.543867pt;}
.y64{bottom:826.334533pt;}
.y5c{bottom:827.539867pt;}
.y1d{bottom:842.834667pt;}
.y63{bottom:844.335867pt;}
.y5b{bottom:845.535867pt;}
.y47{bottom:858.834667pt;}
.y62{bottom:862.337200pt;}
.y5a{bottom:863.531867pt;}
.y46{bottom:874.834667pt;}
.h8{height:30.107146pt;}
.hf{height:34.261333pt;}
.hc{height:35.546875pt;}
.ha{height:36.229167pt;}
.h9{height:40.757812pt;}
.h2{height:45.286458pt;}
.hd{height:47.109333pt;}
.h3{height:47.550781pt;}
.he{height:49.066667pt;}
.h6{height:52.079427pt;}
.h7{height:52.109827pt;}
.hb{height:56.608073pt;}
.h4{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:60.623733pt;}
.x7{left:74.375600pt;}
.x1{left:75.590533pt;}
.x8{left:92.556133pt;}
.x5{left:93.582133pt;}
.x6{left:94.584133pt;}
.x4{left:204.445067pt;}
.x3{left:206.416000pt;}
.x2{left:207.480400pt;}
.xc{left:316.938533pt;}
.x9{left:318.028400pt;}
.xb{left:354.587467pt;}
}




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