
    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_2bea371bd85f697eea2c01c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_359f4ab2aae3ce08cdc2609f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.144350;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_7d107305bd912e739503dfd5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:-2.848320px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.861120px;}
.ls11{letter-spacing:-0.728640px;}
.ls12{letter-spacing:-0.662400px;}
.ls9{letter-spacing:-0.596160px;}
.ls6{letter-spacing:-0.529920px;}
.ls15{letter-spacing:-0.378000px;}
.lsa{letter-spacing:-0.331200px;}
.lse{letter-spacing:-0.311040px;}
.ls16{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.264960px;}
.lsf{letter-spacing:-0.233280px;}
.ls4{letter-spacing:-0.198720px;}
.ls14{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.066240px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.059400px;}
.lsb{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.175680px;}
.ls8{letter-spacing:0.198720px;}
.ls10{letter-spacing:0.239040px;}
.ls2{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.272160px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.745920px;}
.ws4{word-spacing:-18.679680px;}
.ws9{word-spacing:-18.547200px;}
.ws3{word-spacing:-18.480960px;}
.wsa{word-spacing:-18.414720px;}
.wsc{word-spacing:-18.348480px;}
.ws8{word-spacing:-18.282240px;}
.ws2{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.149760px;}
.ws5{word-spacing:-17.884800px;}
.ws1d{word-spacing:-17.818560px;}
.ws1c{word-spacing:-17.752320px;}
.wsb{word-spacing:-17.619840px;}
.ws23{word-spacing:-15.120000px;}
.ws22{word-spacing:-14.688000px;}
.ws1{word-spacing:-11.119680px;}
.ws1e{word-spacing:-0.728640px;}
.ws19{word-spacing:-0.529920px;}
.ws20{word-spacing:-0.331200px;}
.ws1a{word-spacing:-0.264960px;}
.ws11{word-spacing:-0.198720px;}
.ws1b{word-spacing:-0.132480px;}
.ws18{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.066240px;}
.ws13{word-spacing:0.155520px;}
.ws16{word-spacing:0.198720px;}
.ws24{word-spacing:0.216000px;}
.ws12{word-spacing:0.233280px;}
.ws1f{word-spacing:0.264960px;}
.ws26{word-spacing:0.324000px;}
.ws10{word-spacing:0.331200px;}
.wsd{word-spacing:0.397440px;}
.ws25{word-spacing:0.432000px;}
.wse{word-spacing:0.463680px;}
.ws14{word-spacing:0.529920px;}
.ws17{word-spacing:0.596160px;}
.wsf{word-spacing:0.794880px;}
.ws21{word-spacing:0.927360px;}
._5{margin-left:-2.132928px;}
._1{margin-left:-1.020096px;}
._0{width:1.139328px;}
._4{width:2.141280px;}
._3{width:334.975680px;}
._6{width:714.464640px;}
._2{width:979.358400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:57.607200px;}
.y5{bottom:66.525004px;}
.y26{bottom:77.760720px;}
.y25{bottom:97.020000px;}
.y4{bottom:97.125005px;}
.y4c{bottom:117.718560px;}
.y22{bottom:139.264499px;}
.y4b{bottom:139.859280px;}
.y4a{bottom:162.000000px;}
.y49{bottom:184.140720px;}
.y73{bottom:192.952080px;}
.y19{bottom:196.933500px;}
.y48{bottom:206.281440px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y72{bottom:215.092800px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y47{bottom:228.240000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y71{bottom:237.233520px;}
.y93{bottom:240.480000px;}
.y70{bottom:259.374240px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y92{bottom:261.900000px;}
.y46{bottom:271.440000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y91{bottom:280.080000px;}
.y6f{bottom:281.514960px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y45{bottom:293.574960px;}
.y6e{bottom:303.655680px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y44{bottom:315.715680px;}
.y90{bottom:319.860000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y6d{bottom:325.796400px;}
.y43{bottom:337.856400px;}
.y6c{bottom:347.937120px;}
.y10{bottom:348.133500px;}
.y42{bottom:359.997120px;}
.y8f{bottom:360.362160px;}
.y6b{bottom:370.077840px;}
.yf{bottom:386.785499px;}
.y6a{bottom:392.218560px;}
.y8e{bottom:397.440000px;}
.y41{bottom:403.020000px;}
.ye{bottom:408.044999px;}
.y69{bottom:414.359280px;}
.y40{bottom:425.160000px;}
.y8d{bottom:434.518560px;}
.y68{bottom:436.500000px;}
.y3f{bottom:447.284880px;}
.y8c{bottom:456.659280px;}
.y67{bottom:458.640720px;}
.y8b{bottom:478.800000px;}
.y66{bottom:480.599280px;}
.yd{bottom:484.864502px;}
.y3e{bottom:490.489920px;}
.y65{bottom:502.740000px;}
.yc{bottom:502.864502px;}
.y3d{bottom:512.630640px;}
.yb{bottom:520.864502px;}
.y8a{bottom:522.000000px;}
.y3c{bottom:534.771360px;}
.ya{bottom:538.864499px;}
.y64{bottom:545.940000px;}
.y9{bottom:556.864499px;}
.y3b{bottom:556.912080px;}
.y89{bottom:565.005600px;}
.y63{bottom:568.080000px;}
.y3a{bottom:579.052800px;}
.y62{bottom:590.220000px;}
.y39{bottom:601.193520px;}
.y88{bottom:602.265600px;}
.y61{bottom:633.420000px;}
.y87{bottom:639.343440px;}
.y38{bottom:644.216400px;}
.y8{bottom:645.510000px;}
.y60{bottom:655.560000px;}
.y37{bottom:666.357120px;}
.y7{bottom:666.771000px;}
.y86{bottom:676.421280px;}
.y36{bottom:688.497840px;}
.y85{bottom:698.562000px;}
.y5f{bottom:698.570640px;}
.y35{bottom:710.638560px;}
.y84{bottom:720.702720px;}
.y5e{bottom:720.711360px;}
.y6{bottom:726.298500px;}
.y34{bottom:732.779280px;}
.y5d{bottom:742.852080px;}
.y3{bottom:752.599495px;}
.y33{bottom:754.920000px;}
.y83{bottom:763.907760px;}
.y5c{bottom:764.992800px;}
.y82{bottom:786.048480px;}
.y5b{bottom:787.133520px;}
.y32{bottom:798.120000px;}
.y81{bottom:808.189200px;}
.y5a{bottom:809.274240px;}
.y80{bottom:830.329920px;}
.y59{bottom:831.414960px;}
.y31{bottom:841.140000px;}
.y7f{bottom:852.470640px;}
.y58{bottom:853.555680px;}
.y30{bottom:863.280000px;}
.y7e{bottom:874.429200px;}
.y57{bottom:875.696400px;}
.y2{bottom:879.369000px;}
.y2f{bottom:885.420000px;}
.y7d{bottom:896.569920px;}
.y56{bottom:897.837120px;}
.y2e{bottom:907.560000px;}
.y7c{bottom:918.710640px;}
.y55{bottom:919.977840px;}
.y2d{bottom:929.880000px;}
.y7b{bottom:940.851360px;}
.y54{bottom:942.118560px;}
.y7a{bottom:962.992080px;}
.y53{bottom:964.259280px;}
.y1{bottom:966.726000px;}
.y2c{bottom:972.910080px;}
.y79{bottom:985.132800px;}
.y52{bottom:986.400000px;}
.y78{bottom:1007.273520px;}
.y2b{bottom:1009.987920px;}
.y77{bottom:1029.414240px;}
.y51{bottom:1029.420000px;}
.y76{bottom:1051.554960px;}
.y50{bottom:1051.560000px;}
.y2a{bottom:1052.096400px;}
.y4f{bottom:1073.695680px;}
.y75{bottom:1094.760000px;}
.y29{bottom:1097.100000px;}
.y74{bottom:1116.900000px;}
.y4e{bottom:1116.900720px;}
.y4d{bottom:1139.041440px;}
.y28{bottom:1139.952240px;}
.y24{bottom:1169.999280px;}
.y23{bottom:1192.140000px;}
.h7{height:32.130000px;}
.hb{height:44.149219px;}
.h10{height:44.998996px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.ha{height:55.198768px;}
.hf{height:55.204528px;}
.he{height:55.218928px;}
.h9{height:56.159277px;}
.hd{height:64.798554px;}
.hc{height:70.615102px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:202.148640px;}
.x4{left:203.484001px;}
.xa{left:216.540000px;}
.x6{left:226.443600px;}
.x5{left:281.160000px;}
.x8{left:442.301760px;}
.x3{left:454.959000px;}
.x9{left:778.320720px;}
@media print{
.v2{vertical-align:-2.531840pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.765440pt;}
.ls11{letter-spacing:-0.647680pt;}
.ls12{letter-spacing:-0.588800pt;}
.ls9{letter-spacing:-0.529920pt;}
.ls6{letter-spacing:-0.471040pt;}
.ls15{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:-0.294400pt;}
.lse{letter-spacing:-0.276480pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.235520pt;}
.lsf{letter-spacing:-0.207360pt;}
.ls4{letter-spacing:-0.176640pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.058880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.052800pt;}
.lsb{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.156160pt;}
.ls8{letter-spacing:0.176640pt;}
.ls10{letter-spacing:0.212480pt;}
.ls2{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.241920pt;}
.ws7{word-spacing:-16.663040pt;}
.ws4{word-spacing:-16.604160pt;}
.ws9{word-spacing:-16.486400pt;}
.ws3{word-spacing:-16.427520pt;}
.wsa{word-spacing:-16.368640pt;}
.wsc{word-spacing:-16.309760pt;}
.ws8{word-spacing:-16.250880pt;}
.ws2{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.133120pt;}
.ws5{word-spacing:-15.897600pt;}
.ws1d{word-spacing:-15.838720pt;}
.ws1c{word-spacing:-15.779840pt;}
.wsb{word-spacing:-15.662080pt;}
.ws23{word-spacing:-13.440000pt;}
.ws22{word-spacing:-13.056000pt;}
.ws1{word-spacing:-9.884160pt;}
.ws1e{word-spacing:-0.647680pt;}
.ws19{word-spacing:-0.471040pt;}
.ws20{word-spacing:-0.294400pt;}
.ws1a{word-spacing:-0.235520pt;}
.ws11{word-spacing:-0.176640pt;}
.ws1b{word-spacing:-0.117760pt;}
.ws18{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.058880pt;}
.ws13{word-spacing:0.138240pt;}
.ws16{word-spacing:0.176640pt;}
.ws24{word-spacing:0.192000pt;}
.ws12{word-spacing:0.207360pt;}
.ws1f{word-spacing:0.235520pt;}
.ws26{word-spacing:0.288000pt;}
.ws10{word-spacing:0.294400pt;}
.wsd{word-spacing:0.353280pt;}
.ws25{word-spacing:0.384000pt;}
.wse{word-spacing:0.412160pt;}
.ws14{word-spacing:0.471040pt;}
.ws17{word-spacing:0.529920pt;}
.wsf{word-spacing:0.706560pt;}
.ws21{word-spacing:0.824320pt;}
._5{margin-left:-1.895936pt;}
._1{margin-left:-0.906752pt;}
._0{width:1.012736pt;}
._4{width:1.903360pt;}
._3{width:297.756160pt;}
._6{width:635.079680pt;}
._2{width:870.540800pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:51.206400pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:69.120640pt;}
.y25{bottom:86.240000pt;}
.y4{bottom:86.333337pt;}
.y4c{bottom:104.638720pt;}
.y22{bottom:123.790666pt;}
.y4b{bottom:124.319360pt;}
.y4a{bottom:144.000000pt;}
.y49{bottom:163.680640pt;}
.y73{bottom:171.512960pt;}
.y19{bottom:175.052000pt;}
.y48{bottom:183.361280pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y72{bottom:191.193600pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y47{bottom:202.880000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y71{bottom:210.874240pt;}
.y93{bottom:213.760000pt;}
.y70{bottom:230.554880pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y92{bottom:232.800000pt;}
.y46{bottom:241.280000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y91{bottom:248.960000pt;}
.y6f{bottom:250.235520pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y45{bottom:260.955520pt;}
.y6e{bottom:269.916160pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y44{bottom:280.636160pt;}
.y90{bottom:284.320000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y6d{bottom:289.596800pt;}
.y43{bottom:300.316800pt;}
.y6c{bottom:309.277440pt;}
.y10{bottom:309.452000pt;}
.y42{bottom:319.997440pt;}
.y8f{bottom:320.321920pt;}
.y6b{bottom:328.958080pt;}
.yf{bottom:343.809333pt;}
.y6a{bottom:348.638720pt;}
.y8e{bottom:353.280000pt;}
.y41{bottom:358.240000pt;}
.ye{bottom:362.706666pt;}
.y69{bottom:368.319360pt;}
.y40{bottom:377.920000pt;}
.y8d{bottom:386.238720pt;}
.y68{bottom:388.000000pt;}
.y3f{bottom:397.586560pt;}
.y8c{bottom:405.919360pt;}
.y67{bottom:407.680640pt;}
.y8b{bottom:425.600000pt;}
.y66{bottom:427.199360pt;}
.yd{bottom:430.990669pt;}
.y3e{bottom:435.991040pt;}
.y65{bottom:446.880000pt;}
.yc{bottom:446.990669pt;}
.y3d{bottom:455.671680pt;}
.yb{bottom:462.990669pt;}
.y8a{bottom:464.000000pt;}
.y3c{bottom:475.352320pt;}
.ya{bottom:478.990666pt;}
.y64{bottom:485.280000pt;}
.y9{bottom:494.990666pt;}
.y3b{bottom:495.032960pt;}
.y89{bottom:502.227200pt;}
.y63{bottom:504.960000pt;}
.y3a{bottom:514.713600pt;}
.y62{bottom:524.640000pt;}
.y39{bottom:534.394240pt;}
.y88{bottom:535.347200pt;}
.y61{bottom:563.040000pt;}
.y87{bottom:568.305280pt;}
.y38{bottom:572.636800pt;}
.y8{bottom:573.786667pt;}
.y60{bottom:582.720000pt;}
.y37{bottom:592.317440pt;}
.y7{bottom:592.685334pt;}
.y86{bottom:601.263360pt;}
.y36{bottom:611.998080pt;}
.y85{bottom:620.944000pt;}
.y5f{bottom:620.951680pt;}
.y35{bottom:631.678720pt;}
.y84{bottom:640.624640pt;}
.y5e{bottom:640.632320pt;}
.y6{bottom:645.598667pt;}
.y34{bottom:651.359360pt;}
.y5d{bottom:660.312960pt;}
.y3{bottom:668.977329pt;}
.y33{bottom:671.040000pt;}
.y83{bottom:679.029120pt;}
.y5c{bottom:679.993600pt;}
.y82{bottom:698.709760pt;}
.y5b{bottom:699.674240pt;}
.y32{bottom:709.440000pt;}
.y81{bottom:718.390400pt;}
.y5a{bottom:719.354880pt;}
.y80{bottom:738.071040pt;}
.y59{bottom:739.035520pt;}
.y31{bottom:747.680000pt;}
.y7f{bottom:757.751680pt;}
.y58{bottom:758.716160pt;}
.y30{bottom:767.360000pt;}
.y7e{bottom:777.270400pt;}
.y57{bottom:778.396800pt;}
.y2{bottom:781.661334pt;}
.y2f{bottom:787.040000pt;}
.y7d{bottom:796.951040pt;}
.y56{bottom:798.077440pt;}
.y2e{bottom:806.720000pt;}
.y7c{bottom:816.631680pt;}
.y55{bottom:817.758080pt;}
.y2d{bottom:826.560000pt;}
.y7b{bottom:836.312320pt;}
.y54{bottom:837.438720pt;}
.y7a{bottom:855.992960pt;}
.y53{bottom:857.119360pt;}
.y1{bottom:859.312000pt;}
.y2c{bottom:864.808960pt;}
.y79{bottom:875.673600pt;}
.y52{bottom:876.800000pt;}
.y78{bottom:895.354240pt;}
.y2b{bottom:897.767040pt;}
.y77{bottom:915.034880pt;}
.y51{bottom:915.040000pt;}
.y76{bottom:934.715520pt;}
.y50{bottom:934.720000pt;}
.y2a{bottom:935.196800pt;}
.y4f{bottom:954.396160pt;}
.y75{bottom:973.120000pt;}
.y29{bottom:975.200000pt;}
.y74{bottom:992.800000pt;}
.y4e{bottom:992.800640pt;}
.y4d{bottom:1012.481280pt;}
.y28{bottom:1013.290880pt;}
.y24{bottom:1039.999360pt;}
.y23{bottom:1059.680000pt;}
.h7{height:28.560000pt;}
.hb{height:39.243750pt;}
.h10{height:39.999107pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.ha{height:49.065571pt;}
.hf{height:49.070691pt;}
.he{height:49.083491pt;}
.h9{height:49.919357pt;}
.hd{height:57.598714pt;}
.hc{height:62.768980pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:179.687680pt;}
.x4{left:180.874667pt;}
.xa{left:192.480000pt;}
.x6{left:201.283200pt;}
.x5{left:249.920000pt;}
.x8{left:393.157120pt;}
.x3{left:404.408000pt;}
.x9{left:691.840640pt;}
}




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