
    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_9f1f76947ff7a36a15f2052a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_01bba9fbe23d7d9d7de5a981.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_b82d6311bc1d76df61e55615.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_39f91eef58eef210f8a52ca7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_a4ee1dd08463b4ebb12c4ee0.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_a762400eecf89f770d080c06.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_858a2fef732bfd889c89c0a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.828000px;}
.ls8{letter-spacing:-0.684000px;}
.ls10{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.306600px;}
.lse{letter-spacing:-0.253200px;}
.ls1{letter-spacing:-0.238200px;}
.ls7{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.029400px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.046080px;}
.ls6{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.325200px;}
.ls2{letter-spacing:0.360000px;}
.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;}
}
.ws2f{word-spacing:-54.036000px;}
.ws36{word-spacing:-50.040000px;}
.wsb{word-spacing:-48.385200px;}
.wsa{word-spacing:-48.096000px;}
.ws2{word-spacing:-40.500000px;}
.ws4{word-spacing:-37.440000px;}
.ws2e{word-spacing:-37.186800px;}
.ws5{word-spacing:-34.606080px;}
.ws0{word-spacing:-34.560000px;}
.ws3{word-spacing:-30.060000px;}
.ws32{word-spacing:-2.425344px;}
.ws1c{word-spacing:-2.397600px;}
.ws29{word-spacing:-2.388240px;}
.ws35{word-spacing:-2.385024px;}
.ws23{word-spacing:-2.313600px;}
.ws33{word-spacing:-1.634400px;}
.ws2c{word-spacing:-1.540080px;}
.ws27{word-spacing:-1.530720px;}
.ws2d{word-spacing:-1.467360px;}
.ws28{word-spacing:-1.390560px;}
.ws31{word-spacing:-1.193760px;}
.ws34{word-spacing:-1.113840px;}
.wsc{word-spacing:-1.051920px;}
.ws30{word-spacing:-0.916320px;}
.ws2a{word-spacing:-0.860400px;}
.ws8{word-spacing:-0.656592px;}
.ws25{word-spacing:-0.565920px;}
.ws7{word-spacing:-0.295440px;}
.ws26{word-spacing:-0.046080px;}
.ws1{word-spacing:0.000000px;}
.ws24{word-spacing:0.033840px;}
.ws6{word-spacing:0.275520px;}
.ws2b{word-spacing:0.553080px;}
.ws9{word-spacing:1.036656px;}
.ws1a{word-spacing:10.273440px;}
.ws1b{word-spacing:11.393280px;}
.ws16{word-spacing:12.250560px;}
.ws1f{word-spacing:12.251712px;}
.ws1e{word-spacing:12.318912px;}
.ws19{word-spacing:12.435840px;}
.ws20{word-spacing:12.662784px;}
.ws1d{word-spacing:12.760128px;}
.ws21{word-spacing:12.816000px;}
.ws18{word-spacing:12.926520px;}
.ws22{word-spacing:12.929664px;}
.ws17{word-spacing:13.717440px;}
.wsf{word-spacing:38.233440px;}
.wse{word-spacing:38.377440px;}
.ws10{word-spacing:38.739360px;}
.ws13{word-spacing:38.968560px;}
.ws14{word-spacing:39.147120px;}
.ws15{word-spacing:39.423600px;}
.ws11{word-spacing:39.533040px;}
.wsd{word-spacing:40.273920px;}
.ws12{word-spacing:40.765440px;}
._d{margin-left:-27.882576px;}
._a{margin-left:-14.789520px;}
._b{margin-left:-10.942992px;}
._9{margin-left:-9.834192px;}
._6{margin-left:-7.586400px;}
._2{margin-left:-5.508000px;}
._5{margin-left:-4.050000px;}
._7{margin-left:-2.670768px;}
._1{margin-left:-1.297152px;}
._0{width:1.135008px;}
._4{width:2.154288px;}
._3{width:3.657792px;}
._8{width:4.889136px;}
._13{width:21.876384px;}
._e{width:29.413440px;}
._10{width:30.575520px;}
._f{width:43.492032px;}
._11{width:53.653968px;}
._12{width:62.196480px;}
._c{width:103.824000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:120.240000px;}
.fs9{font-size:120.384000px;}
.fs2{font-size:138.240000px;}
.fsa{font-size:138.384000px;}
.fs5{font-size:149.760000px;}
.fs7{font-size:149.904000px;}
.fs1{font-size:162.000000px;}
.fs0{font-size:162.144000px;}
.fs4{font-size:180.000000px;}
.fs6{font-size:180.144000px;}
.fse{font-size:192.240000px;}
.fsd{font-size:192.384000px;}
.fsb{font-size:210.240000px;}
.fsc{font-size:210.384000px;}
.fsf{font-size:216.000000px;}
.fs10{font-size:216.144000px;}
.fs3{font-size:264.240000px;}
.fs11{font-size:329.904000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:19.080000px;}
.y1c{bottom:33.804000px;}
.y50{bottom:51.804000px;}
.y29{bottom:60.480000px;}
.y1b{bottom:78.804000px;}
.y4f{bottom:96.804000px;}
.y28{bottom:101.916000px;}
.y10{bottom:106.956000px;}
.y7{bottom:109.872000px;}
.y1a{bottom:123.840000px;}
.y32{bottom:138.276000px;}
.y4e{bottom:141.840000px;}
.y27{bottom:151.590000px;}
.y6{bottom:155.445000px;}
.yf{bottom:161.670000px;}
.y60{bottom:170.175000px;}
.y19{bottom:177.840000px;}
.y31{bottom:183.270000px;}
.y62{bottom:188.970000px;}
.y26{bottom:192.990000px;}
.y5{bottom:200.985000px;}
.y5f{bottom:206.205000px;}
.ye{bottom:219.990000px;}
.y18{bottom:222.840000px;}
.y30{bottom:228.270000px;}
.y25{bottom:234.390000px;}
.y5e{bottom:242.205000px;}
.y4d{bottom:249.840000px;}
.y17{bottom:267.870000px;}
.yd{bottom:269.715000px;}
.y2f{bottom:273.315000px;}
.y38{bottom:275.685000px;}
.y24{bottom:275.835000px;}
.y5d{bottom:285.405000px;}
.y4c{bottom:294.870000px;}
.y3d{bottom:297.795000px;}
.y16{bottom:312.870000px;}
.y23{bottom:317.235000px;}
.y5c{bottom:328.605000px;}
.yc{bottom:334.515000px;}
.y4{bottom:335.520000px;}
.y37{bottom:344.850000px;}
.y22{bottom:358.635000px;}
.y49{bottom:361.470000px;}
.y5b{bottom:364.650000px;}
.y15{bottom:366.870000px;}
.y3c{bottom:366.915000px;}
.y61{bottom:381.060000px;}
.y2e{bottom:381.315000px;}
.y3{bottom:383.220000px;}
.y43{bottom:384.870000px;}
.yb{bottom:399.315000px;}
.y21{bottom:400.035000px;}
.y5a{bottom:400.650000px;}
.y36{bottom:402.450000px;}
.y4b{bottom:402.870000px;}
.y48{bottom:404.670000px;}
.y14{bottom:411.870000px;}
.y2{bottom:431.820000px;}
.y3b{bottom:436.065000px;}
.y59{bottom:436.650000px;}
.y42{bottom:438.915000px;}
.y47{bottom:440.715000px;}
.y4a{bottom:447.915000px;}
.y53{bottom:449.715000px;}
.y20{bottom:449.745000px;}
.ya{bottom:462.345000px;}
.y35{bottom:471.600000px;}
.y58{bottom:472.650000px;}
.y1{bottom:480.450000px;}
.y46{bottom:483.915000px;}
.y52{bottom:485.715000px;}
.y2d{bottom:489.345000px;}
.y1f{bottom:491.145000px;}
.y41{bottom:492.915000px;}
.y3a{bottom:502.845000px;}
.y57{bottom:508.680000px;}
.y13{bottom:518.115000px;}
.y9{bottom:518.145000px;}
.y45{bottom:519.915000px;}
.y51{bottom:521.715000px;}
.y2c{bottom:534.345000px;}
.y1e{bottom:540.825000px;}
.y56{bottom:544.680000px;}
.y40{bottom:546.915000px;}
.y39{bottom:547.845000px;}
.y12{bottom:555.915000px;}
.y2b{bottom:579.390000px;}
.y55{bottom:580.680000px;}
.y1d{bottom:582.270000px;}
.y11{bottom:600.945000px;}
.y54{bottom:623.880000px;}
.y3f{bottom:665.070000px;}
.y34{bottom:667.770000px;}
.y8{bottom:687.885000px;}
.y44{bottom:697.470000px;}
.y33{bottom:729.510000px;}
.y3e{bottom:729.870000px;}
.hb{height:118.008984px;}
.h1a{height:118.150312px;}
.h18{height:121.179375px;}
.h19{height:121.324500px;}
.h3{height:135.675000px;}
.hd{height:135.816328px;}
.he{height:139.320000px;}
.hf{height:139.465125px;}
.h6{height:146.981250px;}
.h9{height:147.122578px;}
.hc{height:150.930000px;}
.ha{height:151.075125px;}
.h2{height:158.915039px;}
.h7{height:158.994141px;}
.h1{height:159.056297px;}
.h4{height:180.890859px;}
.h5{height:181.406250px;}
.h8{height:181.551375px;}
.h1c{height:187.734375px;}
.h13{height:188.673047px;}
.h12{height:188.814375px;}
.h15{height:193.741875px;}
.h14{height:193.887000px;}
.h10{height:206.339063px;}
.h11{height:206.480391px;}
.h16{height:211.992188px;}
.h17{height:212.133516px;}
.h1b{height:344.079563px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x25{left:22.787984px;}
.x20{left:37.799984px;}
.x18{left:40.823984px;}
.x10{left:53.747984px;}
.x12{left:56.087984px;}
.x9{left:64.799984px;}
.x11{left:73.007984px;}
.x21{left:79.235984px;}
.x13{left:83.987984px;}
.x22{left:91.799984px;}
.x1d{left:118.835984px;}
.x15{left:133.487984px;}
.x23{left:140.975984px;}
.x19{left:159.944984px;}
.x26{left:164.189984px;}
.x1b{left:167.969984px;}
.x1a{left:172.829984px;}
.x1e{left:193.529984px;}
.x17{left:206.744984px;}
.xa{left:226.829984px;}
.x1{left:271.364984px;}
.xb{left:280.829984px;}
.x16{left:289.589984px;}
.x4{left:340.169984px;}
.x8{left:345.929984px;}
.x1c{left:350.894984px;}
.x2{left:354.929984px;}
.x1f{left:356.294984px;}
.x27{left:363.314984px;}
.x24{left:377.354984px;}
.x6{left:378.869984px;}
.x3{left:386.609984px;}
.x5{left:396.149984px;}
.x7{left:424.049984px;}
.xc{left:527.504984px;}
.xf{left:546.764984px;}
.xe{left:735.989984px;}
.xd{left:815.909984px;}
.x14{left:882.254984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls8{letter-spacing:-0.608000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.272533pt;}
.lse{letter-spacing:-0.225067pt;}
.ls1{letter-spacing:-0.211733pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.026133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.040960pt;}
.ls6{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.289067pt;}
.ls2{letter-spacing:0.320000pt;}
.ws2f{word-spacing:-48.032000pt;}
.ws36{word-spacing:-44.480000pt;}
.wsb{word-spacing:-43.009067pt;}
.wsa{word-spacing:-42.752000pt;}
.ws2{word-spacing:-36.000000pt;}
.ws4{word-spacing:-33.280000pt;}
.ws2e{word-spacing:-33.054933pt;}
.ws5{word-spacing:-30.760960pt;}
.ws0{word-spacing:-30.720000pt;}
.ws3{word-spacing:-26.720000pt;}
.ws32{word-spacing:-2.155861pt;}
.ws1c{word-spacing:-2.131200pt;}
.ws29{word-spacing:-2.122880pt;}
.ws35{word-spacing:-2.120021pt;}
.ws23{word-spacing:-2.056533pt;}
.ws33{word-spacing:-1.452800pt;}
.ws2c{word-spacing:-1.368960pt;}
.ws27{word-spacing:-1.360640pt;}
.ws2d{word-spacing:-1.304320pt;}
.ws28{word-spacing:-1.236053pt;}
.ws31{word-spacing:-1.061120pt;}
.ws34{word-spacing:-0.990080pt;}
.wsc{word-spacing:-0.935040pt;}
.ws30{word-spacing:-0.814507pt;}
.ws2a{word-spacing:-0.764800pt;}
.ws8{word-spacing:-0.583637pt;}
.ws25{word-spacing:-0.503040pt;}
.ws7{word-spacing:-0.262613pt;}
.ws26{word-spacing:-0.040960pt;}
.ws1{word-spacing:0.000000pt;}
.ws24{word-spacing:0.030080pt;}
.ws6{word-spacing:0.244907pt;}
.ws2b{word-spacing:0.491627pt;}
.ws9{word-spacing:0.921472pt;}
.ws1a{word-spacing:9.131947pt;}
.ws1b{word-spacing:10.127360pt;}
.ws16{word-spacing:10.889387pt;}
.ws1f{word-spacing:10.890411pt;}
.ws1e{word-spacing:10.950144pt;}
.ws19{word-spacing:11.054080pt;}
.ws20{word-spacing:11.255808pt;}
.ws1d{word-spacing:11.342336pt;}
.ws21{word-spacing:11.392000pt;}
.ws18{word-spacing:11.490240pt;}
.ws22{word-spacing:11.493035pt;}
.ws17{word-spacing:12.193280pt;}
.wsf{word-spacing:33.985280pt;}
.wse{word-spacing:34.113280pt;}
.ws10{word-spacing:34.434987pt;}
.ws13{word-spacing:34.638720pt;}
.ws14{word-spacing:34.797440pt;}
.ws15{word-spacing:35.043200pt;}
.ws11{word-spacing:35.140480pt;}
.wsd{word-spacing:35.799040pt;}
.ws12{word-spacing:36.235947pt;}
._d{margin-left:-24.784512pt;}
._a{margin-left:-13.146240pt;}
._b{margin-left:-9.727104pt;}
._9{margin-left:-8.741504pt;}
._6{margin-left:-6.743467pt;}
._2{margin-left:-4.896000pt;}
._5{margin-left:-3.600000pt;}
._7{margin-left:-2.374016pt;}
._1{margin-left:-1.153024pt;}
._0{width:1.008896pt;}
._4{width:1.914923pt;}
._3{width:3.251371pt;}
._8{width:4.345899pt;}
._13{width:19.445675pt;}
._e{width:26.145280pt;}
._10{width:27.178240pt;}
._f{width:38.659584pt;}
._11{width:47.692416pt;}
._12{width:55.285760pt;}
._c{width:92.288000pt;}
.fs8{font-size:106.880000pt;}
.fs9{font-size:107.008000pt;}
.fs2{font-size:122.880000pt;}
.fsa{font-size:123.008000pt;}
.fs5{font-size:133.120000pt;}
.fs7{font-size:133.248000pt;}
.fs1{font-size:144.000000pt;}
.fs0{font-size:144.128000pt;}
.fs4{font-size:160.000000pt;}
.fs6{font-size:160.128000pt;}
.fse{font-size:170.880000pt;}
.fsd{font-size:171.008000pt;}
.fsb{font-size:186.880000pt;}
.fsc{font-size:187.008000pt;}
.fsf{font-size:192.000000pt;}
.fs10{font-size:192.128000pt;}
.fs3{font-size:234.880000pt;}
.fs11{font-size:293.248000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:16.960000pt;}
.y1c{bottom:30.048000pt;}
.y50{bottom:46.048000pt;}
.y29{bottom:53.760000pt;}
.y1b{bottom:70.048000pt;}
.y4f{bottom:86.048000pt;}
.y28{bottom:90.592000pt;}
.y10{bottom:95.072000pt;}
.y7{bottom:97.664000pt;}
.y1a{bottom:110.080000pt;}
.y32{bottom:122.912000pt;}
.y4e{bottom:126.080000pt;}
.y27{bottom:134.746667pt;}
.y6{bottom:138.173333pt;}
.yf{bottom:143.706667pt;}
.y60{bottom:151.266667pt;}
.y19{bottom:158.080000pt;}
.y31{bottom:162.906667pt;}
.y62{bottom:167.973333pt;}
.y26{bottom:171.546667pt;}
.y5{bottom:178.653333pt;}
.y5f{bottom:183.293333pt;}
.ye{bottom:195.546667pt;}
.y18{bottom:198.080000pt;}
.y30{bottom:202.906667pt;}
.y25{bottom:208.346667pt;}
.y5e{bottom:215.293333pt;}
.y4d{bottom:222.080000pt;}
.y17{bottom:238.106667pt;}
.yd{bottom:239.746667pt;}
.y2f{bottom:242.946667pt;}
.y38{bottom:245.053333pt;}
.y24{bottom:245.186667pt;}
.y5d{bottom:253.693333pt;}
.y4c{bottom:262.106667pt;}
.y3d{bottom:264.706667pt;}
.y16{bottom:278.106667pt;}
.y23{bottom:281.986667pt;}
.y5c{bottom:292.093333pt;}
.yc{bottom:297.346667pt;}
.y4{bottom:298.240000pt;}
.y37{bottom:306.533333pt;}
.y22{bottom:318.786667pt;}
.y49{bottom:321.306667pt;}
.y5b{bottom:324.133333pt;}
.y15{bottom:326.106667pt;}
.y3c{bottom:326.146667pt;}
.y61{bottom:338.720000pt;}
.y2e{bottom:338.946667pt;}
.y3{bottom:340.640000pt;}
.y43{bottom:342.106667pt;}
.yb{bottom:354.946667pt;}
.y21{bottom:355.586667pt;}
.y5a{bottom:356.133333pt;}
.y36{bottom:357.733333pt;}
.y4b{bottom:358.106667pt;}
.y48{bottom:359.706667pt;}
.y14{bottom:366.106667pt;}
.y2{bottom:383.840000pt;}
.y3b{bottom:387.613333pt;}
.y59{bottom:388.133333pt;}
.y42{bottom:390.146667pt;}
.y47{bottom:391.746667pt;}
.y4a{bottom:398.146667pt;}
.y53{bottom:399.746667pt;}
.y20{bottom:399.773333pt;}
.ya{bottom:410.973333pt;}
.y35{bottom:419.200000pt;}
.y58{bottom:420.133333pt;}
.y1{bottom:427.066667pt;}
.y46{bottom:430.146667pt;}
.y52{bottom:431.746667pt;}
.y2d{bottom:434.973333pt;}
.y1f{bottom:436.573333pt;}
.y41{bottom:438.146667pt;}
.y3a{bottom:446.973333pt;}
.y57{bottom:452.160000pt;}
.y13{bottom:460.546667pt;}
.y9{bottom:460.573333pt;}
.y45{bottom:462.146667pt;}
.y51{bottom:463.746667pt;}
.y2c{bottom:474.973333pt;}
.y1e{bottom:480.733333pt;}
.y56{bottom:484.160000pt;}
.y40{bottom:486.146667pt;}
.y39{bottom:486.973333pt;}
.y12{bottom:494.146667pt;}
.y2b{bottom:515.013333pt;}
.y55{bottom:516.160000pt;}
.y1d{bottom:517.573333pt;}
.y11{bottom:534.173333pt;}
.y54{bottom:554.560000pt;}
.y3f{bottom:591.173333pt;}
.y34{bottom:593.573333pt;}
.y8{bottom:611.453333pt;}
.y44{bottom:619.973333pt;}
.y33{bottom:648.453333pt;}
.y3e{bottom:648.773333pt;}
.hb{height:104.896875pt;}
.h1a{height:105.022500pt;}
.h18{height:107.715000pt;}
.h19{height:107.844000pt;}
.h3{height:120.600000pt;}
.hd{height:120.725625pt;}
.he{height:123.840000pt;}
.hf{height:123.969000pt;}
.h6{height:130.650000pt;}
.h9{height:130.775625pt;}
.hc{height:134.160000pt;}
.ha{height:134.289000pt;}
.h2{height:141.257812pt;}
.h7{height:141.328125pt;}
.h1{height:141.383375pt;}
.h4{height:160.791875pt;}
.h5{height:161.250000pt;}
.h8{height:161.379000pt;}
.h1c{height:166.875000pt;}
.h13{height:167.709375pt;}
.h12{height:167.835000pt;}
.h15{height:172.215000pt;}
.h14{height:172.344000pt;}
.h10{height:183.412500pt;}
.h11{height:183.538125pt;}
.h16{height:188.437500pt;}
.h17{height:188.563125pt;}
.h1b{height:305.848500pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x25{left:20.255986pt;}
.x20{left:33.599986pt;}
.x18{left:36.287986pt;}
.x10{left:47.775986pt;}
.x12{left:49.855986pt;}
.x9{left:57.599986pt;}
.x11{left:64.895986pt;}
.x21{left:70.431986pt;}
.x13{left:74.655986pt;}
.x22{left:81.599986pt;}
.x1d{left:105.631986pt;}
.x15{left:118.655986pt;}
.x23{left:125.311986pt;}
.x19{left:142.173319pt;}
.x26{left:145.946652pt;}
.x1b{left:149.306652pt;}
.x1a{left:153.626652pt;}
.x1e{left:172.026652pt;}
.x17{left:183.773319pt;}
.xa{left:201.626652pt;}
.x1{left:241.213319pt;}
.xb{left:249.626652pt;}
.x16{left:257.413319pt;}
.x4{left:302.373319pt;}
.x8{left:307.493319pt;}
.x1c{left:311.906652pt;}
.x2{left:315.493319pt;}
.x1f{left:316.706652pt;}
.x27{left:322.946652pt;}
.x24{left:335.426652pt;}
.x6{left:336.773319pt;}
.x3{left:343.653319pt;}
.x5{left:352.133319pt;}
.x7{left:376.933319pt;}
.xc{left:468.893319pt;}
.xf{left:486.013319pt;}
.xe{left:654.213319pt;}
.xd{left:725.253319pt;}
.x14{left:784.226652pt;}
}




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