
    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_b7a7034a08d8f7f0aaa9176d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ac6458ab2a1f41beba25c742.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7602953f27a58ce635a3ec7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_2a9b8bb1105dca926711f756.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_68c698049b372bbdd05a284a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_30ff3d07622110d83ca6f743.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0165dbf8affde5293c0aa503.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a06ea69b90d763507f12e7ab.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-69.120000px;}
.v3{vertical-align:-12.240000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v4{vertical-align:12.240000px;}
.v6{vertical-align:14.400000px;}
.v1{vertical-align:20.880000px;}
.ls19{letter-spacing:-0.774000px;}
.ls16{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.223800px;}
.ls15{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.045360px;}
.ls18{letter-spacing:-0.011384px;}
.ls12{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.204600px;}
.ls13{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.331800px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.532800px;}
.lsc{letter-spacing:0.555840px;}
.lsf{letter-spacing:0.668160px;}
.ls10{letter-spacing:0.669600px;}
.ls8{letter-spacing:1.094400px;}
.lsd{letter-spacing:1.190880px;}
.lse{letter-spacing:1.758240px;}
.ls11{letter-spacing:2.643840px;}
.ls1c{letter-spacing:3.085920px;}
.ls1b{letter-spacing:3.399840px;}
.ls6{letter-spacing:4.255200px;}
.ls2{letter-spacing:6.660000px;}
.ls5{letter-spacing:9.540000px;}
.lsa{letter-spacing:17.255280px;}
.lsb{letter-spacing:91.550160px;}
.ls1{letter-spacing:201.036000px;}
.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.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.166000px;}
.ws7{word-spacing:-13.147200px;}
.ws15{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.700000px;}
.ws13{word-spacing:-10.817400px;}
.ws0{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.187200px;}
.ws8{word-spacing:-3.078000px;}
.ws12{word-spacing:0.000000px;}
.wsb{word-spacing:3.968640px;}
.wsc{word-spacing:4.012560px;}
.wsa{word-spacing:4.273680px;}
.ws9{word-spacing:4.507200px;}
.wse{word-spacing:624.173760px;}
._9{margin-left:-4.419120px;}
._b{margin-left:-3.391920px;}
._7{margin-left:-2.332560px;}
._0{margin-left:-1.080000px;}
._1{width:1.428000px;}
._5{width:2.548800px;}
._4{width:3.573360px;}
._6{width:4.688160px;}
._2{width:6.271680px;}
._3{width:7.296720px;}
._c{width:8.545680px;}
._8{width:9.800640px;}
._a{width:11.031120px;}
._e{width:12.580320px;}
._f{width:13.860960px;}
._d{width:16.679280px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:25.190250px;}
.y2e{bottom:113.436000px;}
.y67{bottom:117.936000px;}
.y66{bottom:131.796000px;}
.y65{bottom:145.656000px;}
.y2d{bottom:146.016000px;}
.y64{bottom:159.330000px;}
.y2c{bottom:163.290000px;}
.y63{bottom:173.190000px;}
.y2b{bottom:180.570000px;}
.y62{bottom:187.050000px;}
.y2a{bottom:197.850000px;}
.y61{bottom:200.730000px;}
.y60{bottom:214.590000px;}
.y29{bottom:215.130000px;}
.y5f{bottom:228.450000px;}
.y28{bottom:232.410000px;}
.y5e{bottom:242.130000px;}
.y27{bottom:248.790000px;}
.y5d{bottom:255.990000px;}
.y26{bottom:262.650000px;}
.y5c{bottom:269.850000px;}
.y5b{bottom:283.530000px;}
.y25{bottom:289.290000px;}
.y5a{bottom:297.390000px;}
.y59{bottom:311.250000px;}
.y58{bottom:324.975000px;}
.y57{bottom:338.835000px;}
.y56{bottom:352.695000px;}
.y55{bottom:366.375000px;}
.y54{bottom:380.235000px;}
.y53{bottom:394.095000px;}
.y52{bottom:408.495000px;}
.y51{bottom:434.235000px;}
.y50{bottom:448.095000px;}
.y24{bottom:456.735000px;}
.y4f{bottom:461.955000px;}
.y23{bottom:474.015000px;}
.y4e{bottom:488.595000px;}
.y22{bottom:491.295000px;}
.y21{bottom:508.575000px;}
.y20{bottom:524.055000px;}
.y1e{bottom:527.475000px;}
.y1f{bottom:533.235000px;}
.y1d{bottom:545.295000px;}
.y1c{bottom:562.575000px;}
.y1b{bottom:579.885000px;}
.y1a{bottom:597.165000px;}
.y4d{bottom:598.065000px;}
.y19{bottom:614.445000px;}
.y4c{bottom:615.345000px;}
.y18{bottom:631.545000px;}
.y4b{bottom:632.625000px;}
.y17{bottom:649.005000px;}
.y4a{bottom:649.905000px;}
.y16{bottom:666.645000px;}
.y49{bottom:667.185000px;}
.y15{bottom:684.285000px;}
.y48{bottom:701.565000px;}
.y14{bottom:701.745000px;}
.y47{bottom:718.845000px;}
.y13{bottom:719.205000px;}
.y46{bottom:736.125000px;}
.y12{bottom:736.485000px;}
.y45{bottom:753.405000px;}
.y11{bottom:753.765000px;}
.y44{bottom:770.685000px;}
.y10{bottom:771.045000px;}
.y43{bottom:787.785000px;}
.yf{bottom:788.145000px;}
.y42{bottom:805.065000px;}
.ye{bottom:805.425000px;}
.y41{bottom:822.390000px;}
.yd{bottom:822.750000px;}
.y40{bottom:839.670000px;}
.yc{bottom:840.030000px;}
.y3f{bottom:856.950000px;}
.yb{bottom:857.310000px;}
.y3e{bottom:874.230000px;}
.ya{bottom:874.590000px;}
.y3d{bottom:891.330000px;}
.y9{bottom:891.690000px;}
.y3c{bottom:907.530000px;}
.y3b{bottom:910.590000px;}
.y8{bottom:926.250000px;}
.y3a{bottom:928.050000px;}
.y7{bottom:942.810000px;}
.y39{bottom:945.150000px;}
.y6{bottom:956.490000px;}
.y38{bottom:962.430000px;}
.y5{bottom:970.350000px;}
.y37{bottom:979.710000px;}
.y4{bottom:984.930000px;}
.y36{bottom:996.990000px;}
.y3{bottom:1002.570000px;}
.y35{bottom:1014.270000px;}
.y2{bottom:1023.810000px;}
.y34{bottom:1031.550000px;}
.y33{bottom:1048.650000px;}
.y1{bottom:1054.770000px;}
.y32{bottom:1065.930000px;}
.y2f{bottom:1130.690250px;}
.y30{bottom:1145.690250px;}
.h7{height:35.194219px;}
.hc{height:36.468750px;}
.h4{height:47.321367px;}
.hb{height:47.344922px;}
.ha{height:48.616875px;}
.h6{height:52.524141px;}
.h9{height:53.087935px;}
.h5{height:58.651172px;}
.h3{height:60.226875px;}
.hd{height:62.604141px;}
.h8{height:64.044141px;}
.h2{height:66.757500px;}
.he{height:70.891172px;}
.h1{height:108.843750px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:105.000000px;}
.x8{left:108.035986px;}
.x19{left:109.835986px;}
.x1a{left:110.915986px;}
.x11{left:117.035986px;}
.xe{left:121.355986px;}
.x10{left:129.635986px;}
.x2{left:134.315986px;}
.x1{left:135.395986px;}
.xf{left:144.575986px;}
.x9{left:162.029986px;}
.xa{left:166.709986px;}
.x4{left:167.789986px;}
.x5{left:227.369986px;}
.x6{left:230.249986px;}
.x1b{left:320.654986px;}
.xb{left:361.874986px;}
.x7{left:366.914986px;}
.xc{left:368.354986px;}
.x16{left:421.634986px;}
.x12{left:437.314500px;}
.x17{left:439.634986px;}
.x3{left:459.074986px;}
.x13{left:592.212900px;}
.xd{left:608.684986px;}
.x14{left:684.966750px;}
.x18{left:696.389986px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v4{vertical-align:10.880000pt;}
.v6{vertical-align:12.800000pt;}
.v1{vertical-align:18.560000pt;}
.ls19{letter-spacing:-0.688000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.198933pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.040320pt;}
.ls18{letter-spacing:-0.010119pt;}
.ls12{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.181867pt;}
.ls13{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.294933pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.473600pt;}
.lsc{letter-spacing:0.494080pt;}
.lsf{letter-spacing:0.593920pt;}
.ls10{letter-spacing:0.595200pt;}
.ls8{letter-spacing:0.972800pt;}
.lsd{letter-spacing:1.058560pt;}
.lse{letter-spacing:1.562880pt;}
.ls11{letter-spacing:2.350080pt;}
.ls1c{letter-spacing:2.743040pt;}
.ls1b{letter-spacing:3.022080pt;}
.ls6{letter-spacing:3.782400pt;}
.ls2{letter-spacing:5.920000pt;}
.ls5{letter-spacing:8.480000pt;}
.lsa{letter-spacing:15.338027pt;}
.lsb{letter-spacing:81.377920pt;}
.ls1{letter-spacing:178.698667pt;}
.ws11{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.185067pt;}
.ws5{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.592000pt;}
.ws7{word-spacing:-11.686400pt;}
.ws15{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.400000pt;}
.ws13{word-spacing:-9.615467pt;}
.ws0{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.166400pt;}
.ws8{word-spacing:-2.736000pt;}
.ws12{word-spacing:0.000000pt;}
.wsb{word-spacing:3.527680pt;}
.wsc{word-spacing:3.566720pt;}
.wsa{word-spacing:3.798827pt;}
.ws9{word-spacing:4.006400pt;}
.wse{word-spacing:554.821120pt;}
._9{margin-left:-3.928107pt;}
._b{margin-left:-3.015040pt;}
._7{margin-left:-2.073387pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.269333pt;}
._5{width:2.265600pt;}
._4{width:3.176320pt;}
._6{width:4.167253pt;}
._2{width:5.574827pt;}
._3{width:6.485973pt;}
._c{width:7.596160pt;}
._8{width:8.711680pt;}
._a{width:9.805440pt;}
._e{width:11.182507pt;}
._f{width:12.320853pt;}
._d{width:14.826027pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:22.391333pt;}
.y2e{bottom:100.832000pt;}
.y67{bottom:104.832000pt;}
.y66{bottom:117.152000pt;}
.y65{bottom:129.472000pt;}
.y2d{bottom:129.792000pt;}
.y64{bottom:141.626667pt;}
.y2c{bottom:145.146667pt;}
.y63{bottom:153.946667pt;}
.y2b{bottom:160.506667pt;}
.y62{bottom:166.266667pt;}
.y2a{bottom:175.866667pt;}
.y61{bottom:178.426667pt;}
.y60{bottom:190.746667pt;}
.y29{bottom:191.226667pt;}
.y5f{bottom:203.066667pt;}
.y28{bottom:206.586667pt;}
.y5e{bottom:215.226667pt;}
.y27{bottom:221.146667pt;}
.y5d{bottom:227.546667pt;}
.y26{bottom:233.466667pt;}
.y5c{bottom:239.866667pt;}
.y5b{bottom:252.026667pt;}
.y25{bottom:257.146667pt;}
.y5a{bottom:264.346667pt;}
.y59{bottom:276.666667pt;}
.y58{bottom:288.866667pt;}
.y57{bottom:301.186667pt;}
.y56{bottom:313.506667pt;}
.y55{bottom:325.666667pt;}
.y54{bottom:337.986667pt;}
.y53{bottom:350.306667pt;}
.y52{bottom:363.106667pt;}
.y51{bottom:385.986667pt;}
.y50{bottom:398.306667pt;}
.y24{bottom:405.986667pt;}
.y4f{bottom:410.626667pt;}
.y23{bottom:421.346667pt;}
.y4e{bottom:434.306667pt;}
.y22{bottom:436.706667pt;}
.y21{bottom:452.066667pt;}
.y20{bottom:465.826667pt;}
.y1e{bottom:468.866667pt;}
.y1f{bottom:473.986667pt;}
.y1d{bottom:484.706667pt;}
.y1c{bottom:500.066667pt;}
.y1b{bottom:515.453333pt;}
.y1a{bottom:530.813333pt;}
.y4d{bottom:531.613333pt;}
.y19{bottom:546.173333pt;}
.y4c{bottom:546.973333pt;}
.y18{bottom:561.373333pt;}
.y4b{bottom:562.333333pt;}
.y17{bottom:576.893333pt;}
.y4a{bottom:577.693333pt;}
.y16{bottom:592.573333pt;}
.y49{bottom:593.053333pt;}
.y15{bottom:608.253333pt;}
.y48{bottom:623.613333pt;}
.y14{bottom:623.773333pt;}
.y47{bottom:638.973333pt;}
.y13{bottom:639.293333pt;}
.y46{bottom:654.333333pt;}
.y12{bottom:654.653333pt;}
.y45{bottom:669.693333pt;}
.y11{bottom:670.013333pt;}
.y44{bottom:685.053333pt;}
.y10{bottom:685.373333pt;}
.y43{bottom:700.253333pt;}
.yf{bottom:700.573333pt;}
.y42{bottom:715.613333pt;}
.ye{bottom:715.933333pt;}
.y41{bottom:731.013333pt;}
.yd{bottom:731.333333pt;}
.y40{bottom:746.373333pt;}
.yc{bottom:746.693333pt;}
.y3f{bottom:761.733333pt;}
.yb{bottom:762.053333pt;}
.y3e{bottom:777.093333pt;}
.ya{bottom:777.413333pt;}
.y3d{bottom:792.293333pt;}
.y9{bottom:792.613333pt;}
.y3c{bottom:806.693333pt;}
.y3b{bottom:809.413333pt;}
.y8{bottom:823.333333pt;}
.y3a{bottom:824.933333pt;}
.y7{bottom:838.053333pt;}
.y39{bottom:840.133333pt;}
.y6{bottom:850.213333pt;}
.y38{bottom:855.493333pt;}
.y5{bottom:862.533333pt;}
.y37{bottom:870.853333pt;}
.y4{bottom:875.493333pt;}
.y36{bottom:886.213333pt;}
.y3{bottom:891.173333pt;}
.y35{bottom:901.573333pt;}
.y2{bottom:910.053333pt;}
.y34{bottom:916.933333pt;}
.y33{bottom:932.133333pt;}
.y1{bottom:937.573333pt;}
.y32{bottom:947.493333pt;}
.y2f{bottom:1005.058000pt;}
.y30{bottom:1018.391333pt;}
.h7{height:31.283750pt;}
.hc{height:32.416667pt;}
.h4{height:42.063437pt;}
.hb{height:42.084375pt;}
.ha{height:43.215000pt;}
.h6{height:46.688125pt;}
.h9{height:47.189275pt;}
.h5{height:52.134375pt;}
.h3{height:53.535000pt;}
.hd{height:55.648125pt;}
.h8{height:56.928125pt;}
.h2{height:59.340000pt;}
.he{height:63.014375pt;}
.h1{height:96.750000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:93.333333pt;}
.x8{left:96.031988pt;}
.x19{left:97.631988pt;}
.x1a{left:98.591988pt;}
.x11{left:104.031988pt;}
.xe{left:107.871988pt;}
.x10{left:115.231988pt;}
.x2{left:119.391988pt;}
.x1{left:120.351988pt;}
.xf{left:128.511988pt;}
.x9{left:144.026655pt;}
.xa{left:148.186655pt;}
.x4{left:149.146655pt;}
.x5{left:202.106655pt;}
.x6{left:204.666655pt;}
.x1b{left:285.026655pt;}
.xb{left:321.666655pt;}
.x7{left:326.146655pt;}
.xc{left:327.426655pt;}
.x16{left:374.786655pt;}
.x12{left:388.724000pt;}
.x17{left:390.786655pt;}
.x3{left:408.066655pt;}
.x13{left:526.411467pt;}
.xd{left:541.053321pt;}
.x14{left:608.859333pt;}
.x18{left:619.013321pt;}
}




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