
    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_cbd49d969a9162554c93f03c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.725070;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_25fabd9e192f63da4bb6de0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_e206b81c865e2cefecdd004f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914000;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_d81e4302b47a534c908d5be8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6353a7cda9a22c1766cb0aa1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_94b7f563189237d8272251ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_813665dd142d93a29fda06d5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d13726d33ca6aae64d984069.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_149c6df956bfcc1bf82aa633.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_cc11dd5b700c004aeb7092e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694336;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_88677751b2cb6d262a2a4164.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752000;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_64917041a3e46f0488182e27.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_64917041a3e46f0488182e27.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.689200px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.lsb{letter-spacing:0.069000px;}
.lsf{letter-spacing:0.276000px;}
.ls9{letter-spacing:0.345000px;}
.ls6{letter-spacing:0.414000px;}
.ls8{letter-spacing:0.588000px;}
.lsa{letter-spacing:0.621000px;}
.ls1{letter-spacing:0.690000px;}
.ls2{letter-spacing:0.793500px;}
.lse{letter-spacing:1.000500px;}
.lsc{letter-spacing:1.173000px;}
.lsd{letter-spacing:1.656000px;}
.ls3{letter-spacing:6.199200px;}
.ls4{letter-spacing:12.510000px;}
.ls7{letter-spacing:540.610800px;}
.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;}
}
.ws11{word-spacing:-15.750000px;}
.ws2d{word-spacing:-12.510000px;}
.ws12{word-spacing:-0.294000px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.207000px;}
.ws2a{word-spacing:0.276000px;}
.ws19{word-spacing:0.621000px;}
.ws23{word-spacing:0.690000px;}
.ws27{word-spacing:0.759000px;}
.ws34{word-spacing:1.035000px;}
.ws15{word-spacing:1.311000px;}
.wsc{word-spacing:1.518000px;}
.ws30{word-spacing:1.725000px;}
.ws35{word-spacing:2.139000px;}
.ws25{word-spacing:2.484000px;}
.ws24{word-spacing:2.622000px;}
.ws32{word-spacing:2.691000px;}
.ws4{word-spacing:2.829000px;}
.ws20{word-spacing:3.036000px;}
.ws22{word-spacing:3.312000px;}
.ws28{word-spacing:3.381000px;}
.wsd{word-spacing:3.996000px;}
.ws33{word-spacing:4.071000px;}
.ws1b{word-spacing:4.209000px;}
.wsa{word-spacing:4.278000px;}
.ws6{word-spacing:4.416000px;}
.ws10{word-spacing:4.494000px;}
.ws18{word-spacing:4.554000px;}
.ws26{word-spacing:4.692000px;}
.ws2f{word-spacing:5.106000px;}
.ws31{word-spacing:5.244000px;}
.ws1f{word-spacing:5.313000px;}
.ws29{word-spacing:5.451000px;}
.ws7{word-spacing:5.589000px;}
.ws8{word-spacing:5.658000px;}
.ws21{word-spacing:6.141000px;}
.wse{word-spacing:6.216000px;}
.ws17{word-spacing:6.279000px;}
.ws1d{word-spacing:6.555000px;}
.ws9{word-spacing:6.693000px;}
.ws16{word-spacing:6.762000px;}
.ws1a{word-spacing:6.900000px;}
.ws2b{word-spacing:6.969000px;}
.ws2c{word-spacing:7.107000px;}
.wsb{word-spacing:7.176000px;}
.ws3{word-spacing:7.452000px;}
.ws1e{word-spacing:7.797000px;}
.ws14{word-spacing:8.280000px;}
.ws1c{word-spacing:8.487000px;}
.ws5{word-spacing:8.625000px;}
.wsf{word-spacing:9.492000px;}
.ws2{word-spacing:10.656000px;}
.ws1{word-spacing:13.344000px;}
.ws2e{word-spacing:1109.619000px;}
._b{margin-left:-26.910000px;}
._9{margin-left:-22.701000px;}
._a{margin-left:-19.941000px;}
._5{margin-left:-13.944000px;}
._6{margin-left:-9.324000px;}
._7{margin-left:-1.474200px;}
._4{width:4.368000px;}
._3{width:5.376000px;}
._8{width:6.768900px;}
._1{width:9.504000px;}
._2{width:11.676000px;}
._0{width:13.344000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.099400px;}
.fs9{font-size:42.000000px;}
.fs6{font-size:44.849400px;}
.fsa{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:58.500000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:53.574900px;}
.y1{bottom:72.283650px;}
.y53{bottom:102.036300px;}
.y27{bottom:110.549700px;}
.y52{bottom:120.424800px;}
.y26{bottom:122.551200px;}
.y25{bottom:138.797550px;}
.y51{bottom:138.813300px;}
.y24{bottom:155.051550px;}
.y50{bottom:157.201800px;}
.y23{bottom:172.607550px;}
.y4f{bottom:175.590300px;}
.y22{bottom:183.790050px;}
.y4e{bottom:193.978800px;}
.y21{bottom:194.972550px;}
.y20{bottom:206.155050px;}
.y4d{bottom:212.367300px;}
.y1f{bottom:221.590050px;}
.y4c{bottom:230.755800px;}
.y4b{bottom:249.144300px;}
.y1e{bottom:257.247000px;}
.y4a{bottom:267.532800px;}
.y1d{bottom:277.281000px;}
.y49{bottom:285.921300px;}
.y48{bottom:304.309800px;}
.y1c{bottom:321.598650px;}
.y47{bottom:322.698300px;}
.y1b{bottom:339.987150px;}
.y46{bottom:341.086800px;}
.y1a{bottom:358.375650px;}
.y45{bottom:359.475300px;}
.y19{bottom:376.764150px;}
.y44{bottom:377.863800px;}
.y18{bottom:395.152650px;}
.y43{bottom:396.252300px;}
.y17{bottom:413.541150px;}
.y42{bottom:414.640800px;}
.y16{bottom:431.929650px;}
.y41{bottom:433.029300px;}
.y15{bottom:450.318150px;}
.y40{bottom:451.417800px;}
.y14{bottom:468.706650px;}
.y3f{bottom:469.806300px;}
.y13{bottom:487.095150px;}
.y3e{bottom:488.194800px;}
.y12{bottom:505.483650px;}
.y3d{bottom:506.583300px;}
.y11{bottom:523.872150px;}
.y3c{bottom:524.971800px;}
.y10{bottom:542.260650px;}
.y3b{bottom:543.360300px;}
.yf{bottom:560.649150px;}
.y3a{bottom:561.748800px;}
.ye{bottom:579.040500px;}
.y39{bottom:580.137300px;}
.y38{bottom:598.525800px;}
.yd{bottom:615.817500px;}
.y37{bottom:616.914300px;}
.y36{bottom:635.302800px;}
.y35{bottom:653.691300px;}
.y34{bottom:672.079800px;}
.y33{bottom:690.468300px;}
.yc{bottom:703.983300px;}
.y32{bottom:708.856800px;}
.yb{bottom:717.574800px;}
.y31{bottom:727.245300px;}
.ya{bottom:739.161600px;}
.y30{bottom:745.633800px;}
.y2f{bottom:764.022300px;}
.y2e{bottom:782.410800px;}
.y9{bottom:793.033650px;}
.y2d{bottom:800.799300px;}
.y8{bottom:818.526150px;}
.y2c{bottom:819.187800px;}
.y2b{bottom:837.576300px;}
.y7{bottom:844.018650px;}
.y2a{bottom:855.964800px;}
.y6{bottom:869.511150px;}
.y29{bottom:894.455850px;}
.y5{bottom:895.003650px;}
.y2{bottom:932.060100px;}
.y4{bottom:949.388100px;}
.y3{bottom:962.888100px;}
.h9{height:25.096071px;}
.hf{height:30.030000px;}
.hc{height:30.912000px;}
.hb{height:31.206000px;}
.hd{height:33.435000px;}
.h3{height:35.328000px;}
.h6{height:36.465000px;}
.ha{height:38.610000px;}
.h2{height:42.720000px;}
.he{height:43.066406px;}
.h5{height:45.045000px;}
.h7{height:49.335000px;}
.h8{height:52.756521px;}
.h4{height:64.350000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xf{left:106.299150px;}
.x3{left:117.723000px;}
.x4{left:122.291850px;}
.x6{left:129.086850px;}
.x11{left:131.811900px;}
.x7{left:138.649350px;}
.xc{left:143.241300px;}
.x5{left:144.611850px;}
.xb{left:157.536900px;}
.xd{left:177.884550px;}
.x8{left:182.119350px;}
.xe{left:183.509550px;}
.xa{left:229.268400px;}
.x10{left:233.668950px;}
.x12{left:245.098200px;}
.x9{left:303.345300px;}
.x2{left:445.299000px;}
.x1{left:590.705550px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.390400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.lsb{letter-spacing:0.061333pt;}
.lsf{letter-spacing:0.245333pt;}
.ls9{letter-spacing:0.306667pt;}
.ls6{letter-spacing:0.368000pt;}
.ls8{letter-spacing:0.522667pt;}
.lsa{letter-spacing:0.552000pt;}
.ls1{letter-spacing:0.613333pt;}
.ls2{letter-spacing:0.705333pt;}
.lse{letter-spacing:0.889333pt;}
.lsc{letter-spacing:1.042667pt;}
.lsd{letter-spacing:1.472000pt;}
.ls3{letter-spacing:5.510400pt;}
.ls4{letter-spacing:11.120000pt;}
.ls7{letter-spacing:480.542933pt;}
.ws11{word-spacing:-14.000000pt;}
.ws2d{word-spacing:-11.120000pt;}
.ws12{word-spacing:-0.261333pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.184000pt;}
.ws2a{word-spacing:0.245333pt;}
.ws19{word-spacing:0.552000pt;}
.ws23{word-spacing:0.613333pt;}
.ws27{word-spacing:0.674667pt;}
.ws34{word-spacing:0.920000pt;}
.ws15{word-spacing:1.165333pt;}
.wsc{word-spacing:1.349333pt;}
.ws30{word-spacing:1.533333pt;}
.ws35{word-spacing:1.901333pt;}
.ws25{word-spacing:2.208000pt;}
.ws24{word-spacing:2.330667pt;}
.ws32{word-spacing:2.392000pt;}
.ws4{word-spacing:2.514667pt;}
.ws20{word-spacing:2.698667pt;}
.ws22{word-spacing:2.944000pt;}
.ws28{word-spacing:3.005333pt;}
.wsd{word-spacing:3.552000pt;}
.ws33{word-spacing:3.618667pt;}
.ws1b{word-spacing:3.741333pt;}
.wsa{word-spacing:3.802667pt;}
.ws6{word-spacing:3.925333pt;}
.ws10{word-spacing:3.994667pt;}
.ws18{word-spacing:4.048000pt;}
.ws26{word-spacing:4.170667pt;}
.ws2f{word-spacing:4.538667pt;}
.ws31{word-spacing:4.661333pt;}
.ws1f{word-spacing:4.722667pt;}
.ws29{word-spacing:4.845333pt;}
.ws7{word-spacing:4.968000pt;}
.ws8{word-spacing:5.029333pt;}
.ws21{word-spacing:5.458667pt;}
.wse{word-spacing:5.525333pt;}
.ws17{word-spacing:5.581333pt;}
.ws1d{word-spacing:5.826667pt;}
.ws9{word-spacing:5.949333pt;}
.ws16{word-spacing:6.010667pt;}
.ws1a{word-spacing:6.133333pt;}
.ws2b{word-spacing:6.194667pt;}
.ws2c{word-spacing:6.317333pt;}
.wsb{word-spacing:6.378667pt;}
.ws3{word-spacing:6.624000pt;}
.ws1e{word-spacing:6.930667pt;}
.ws14{word-spacing:7.360000pt;}
.ws1c{word-spacing:7.544000pt;}
.ws5{word-spacing:7.666667pt;}
.wsf{word-spacing:8.437333pt;}
.ws2{word-spacing:9.472000pt;}
.ws1{word-spacing:11.861333pt;}
.ws2e{word-spacing:986.328000pt;}
._b{margin-left:-23.920000pt;}
._9{margin-left:-20.178667pt;}
._a{margin-left:-17.725333pt;}
._5{margin-left:-12.394667pt;}
._6{margin-left:-8.288000pt;}
._7{margin-left:-1.310400pt;}
._4{width:3.882667pt;}
._3{width:4.778667pt;}
._8{width:6.016800pt;}
._1{width:8.448000pt;}
._2{width:10.378667pt;}
._0{width:11.861333pt;}
.fs7{font-size:31.199467pt;}
.fs9{font-size:37.333333pt;}
.fs6{font-size:39.866133pt;}
.fsa{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:52.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:47.622133pt;}
.y1{bottom:64.252133pt;}
.y53{bottom:90.698933pt;}
.y27{bottom:98.266400pt;}
.y52{bottom:107.044267pt;}
.y26{bottom:108.934400pt;}
.y25{bottom:123.375600pt;}
.y51{bottom:123.389600pt;}
.y24{bottom:137.823600pt;}
.y50{bottom:139.734933pt;}
.y23{bottom:153.428933pt;}
.y4f{bottom:156.080267pt;}
.y22{bottom:163.368933pt;}
.y4e{bottom:172.425600pt;}
.y21{bottom:173.308933pt;}
.y20{bottom:183.248933pt;}
.y4d{bottom:188.770933pt;}
.y1f{bottom:196.968933pt;}
.y4c{bottom:205.116267pt;}
.y4b{bottom:221.461600pt;}
.y1e{bottom:228.664000pt;}
.y4a{bottom:237.806933pt;}
.y1d{bottom:246.472000pt;}
.y49{bottom:254.152267pt;}
.y48{bottom:270.497600pt;}
.y1c{bottom:285.865467pt;}
.y47{bottom:286.842933pt;}
.y1b{bottom:302.210800pt;}
.y46{bottom:303.188267pt;}
.y1a{bottom:318.556133pt;}
.y45{bottom:319.533600pt;}
.y19{bottom:334.901467pt;}
.y44{bottom:335.878933pt;}
.y18{bottom:351.246800pt;}
.y43{bottom:352.224267pt;}
.y17{bottom:367.592133pt;}
.y42{bottom:368.569600pt;}
.y16{bottom:383.937467pt;}
.y41{bottom:384.914933pt;}
.y15{bottom:400.282800pt;}
.y40{bottom:401.260267pt;}
.y14{bottom:416.628133pt;}
.y3f{bottom:417.605600pt;}
.y13{bottom:432.973467pt;}
.y3e{bottom:433.950933pt;}
.y12{bottom:449.318800pt;}
.y3d{bottom:450.296267pt;}
.y11{bottom:465.664133pt;}
.y3c{bottom:466.641600pt;}
.y10{bottom:482.009467pt;}
.y3b{bottom:482.986933pt;}
.yf{bottom:498.354800pt;}
.y3a{bottom:499.332267pt;}
.ye{bottom:514.702667pt;}
.y39{bottom:515.677600pt;}
.y38{bottom:532.022933pt;}
.yd{bottom:547.393333pt;}
.y37{bottom:548.368267pt;}
.y36{bottom:564.713600pt;}
.y35{bottom:581.058933pt;}
.y34{bottom:597.404267pt;}
.y33{bottom:613.749600pt;}
.yc{bottom:625.762933pt;}
.y32{bottom:630.094933pt;}
.yb{bottom:637.844267pt;}
.y31{bottom:646.440267pt;}
.ya{bottom:657.032533pt;}
.y30{bottom:662.785600pt;}
.y2f{bottom:679.130933pt;}
.y2e{bottom:695.476267pt;}
.y9{bottom:704.918800pt;}
.y2d{bottom:711.821600pt;}
.y8{bottom:727.578800pt;}
.y2c{bottom:728.166933pt;}
.y2b{bottom:744.512267pt;}
.y7{bottom:750.238800pt;}
.y2a{bottom:760.857600pt;}
.y6{bottom:772.898800pt;}
.y29{bottom:795.071867pt;}
.y5{bottom:795.558800pt;}
.y2{bottom:828.497867pt;}
.y4{bottom:843.900533pt;}
.y3{bottom:855.900533pt;}
.h9{height:22.307619pt;}
.hf{height:26.693333pt;}
.hc{height:27.477333pt;}
.hb{height:27.738667pt;}
.hd{height:29.720000pt;}
.h3{height:31.402667pt;}
.h6{height:32.413333pt;}
.ha{height:34.320000pt;}
.h2{height:37.973333pt;}
.he{height:38.281250pt;}
.h5{height:40.040000pt;}
.h7{height:43.853333pt;}
.h8{height:46.894685pt;}
.h4{height:57.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xf{left:94.488133pt;}
.x3{left:104.642667pt;}
.x4{left:108.703867pt;}
.x6{left:114.743867pt;}
.x11{left:117.166133pt;}
.x7{left:123.243867pt;}
.xc{left:127.325600pt;}
.x5{left:128.543867pt;}
.xb{left:140.032800pt;}
.xd{left:158.119600pt;}
.x8{left:161.883867pt;}
.xe{left:163.119600pt;}
.xa{left:203.794133pt;}
.x10{left:207.705733pt;}
.x12{left:217.865067pt;}
.x9{left:269.640267pt;}
.x2{left:395.821333pt;}
.x1{left:525.071600pt;}
}




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