
    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_ec4432494eae404c85ea84c8.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_582c3e076b70dc82b94e323c.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_413c305027df305e7854ec79.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_189239801214e8ea8d3af1e2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_73e25301d219c8220a5bc622.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_214a7c602639168389c04b13.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d9456e7fa7725611a5575ab0.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.lse{letter-spacing:-1.854000px;}
.lsc{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.085440px;}
.ls8{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.460200px;}
.lsb{letter-spacing:0.720000px;}
.ls6{letter-spacing:9.360000px;}
.lsa{letter-spacing:10.080000px;}
.ls7{letter-spacing:68.376000px;}
.ls3{letter-spacing:888.096000px;}
.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;}
}
.ws6{word-spacing:-16.822200px;}
.ws5{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.145400px;}
.ws7{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.400200px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-2.119680px;}
._1{margin-left:-1.116000px;}
._0{width:1.104960px;}
._4{width:2.346240px;}
._8{width:3.378240px;}
._b{width:4.511040px;}
._a{width:5.577600px;}
._2{width:6.980160px;}
._12{width:8.296320px;}
._5{width:9.672960px;}
._6{width:11.080800px;}
._18{width:12.151680px;}
._7{width:13.181760px;}
._9{width:15.102720px;}
._15{width:18.348480px;}
._1b{width:19.673280px;}
._10{width:20.733120px;}
._3{width:22.601280px;}
._13{width:23.904960px;}
._f{width:25.084800px;}
._19{width:26.510640px;}
._21{width:27.522960px;}
._1e{width:28.769280px;}
._c{width:30.443520px;}
._20{width:31.704960px;}
._14{width:32.788800px;}
._2d{width:33.900960px;}
._2c{width:35.504640px;}
._1f{width:36.819840px;}
._1c{width:37.957440px;}
._1d{width:38.968320px;}
._2b{width:40.127520px;}
._28{width:41.404320px;}
._27{width:42.589440px;}
._2f{width:44.121600px;}
._2a{width:48.793440px;}
._29{width:50.011200px;}
._22{width:57.562560px;}
._23{width:58.577280px;}
._16{width:59.682240px;}
._11{width:63.192960px;}
._1a{width:68.376000px;}
._24{width:70.240320px;}
._2e{width:71.361600px;}
._d{width:79.554240px;}
._e{width:81.113760px;}
._26{width:91.028640px;}
._25{width:92.338560px;}
._30{width:96.201600px;}
._33{width:118.645920px;}
._31{width:120.016800px;}
._32{width:121.285440px;}
._38{width:190.776000px;}
._39{width:212.833920px;}
._37{width:223.896000px;}
._3a{width:227.539200px;}
._34{width:239.743680px;}
._35{width:240.905280px;}
._36{width:2364.936000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:97.125005px;}
.y1b{bottom:139.264499px;}
.y1d{bottom:173.730000px;}
.y1c{bottom:191.010000px;}
.y12{bottom:196.933500px;}
.y1a{bottom:209.518500px;}
.y11{bottom:209.533503px;}
.y7d{bottom:219.810000px;}
.y19{bottom:222.118502px;}
.y10{bottom:222.133505px;}
.y49{bottom:224.490000px;}
.y73{bottom:225.750000px;}
.y18{bottom:234.718504px;}
.yf{bottom:234.733496px;}
.y7c{bottom:241.590000px;}
.y48{bottom:246.270000px;}
.y72{bottom:247.530000px;}
.y17{bottom:259.918497px;}
.ye{bottom:259.933500px;}
.y7b{bottom:263.370000px;}
.y47{bottom:268.050000px;}
.y71{bottom:269.310000px;}
.y16{bottom:272.518500px;}
.yd{bottom:272.533503px;}
.y15{bottom:285.118502px;}
.yc{bottom:285.133499px;}
.y7a{bottom:285.195000px;}
.y46{bottom:290.055000px;}
.y70{bottom:291.135000px;}
.y79{bottom:306.975000px;}
.y14{bottom:310.318501px;}
.yb{bottom:310.333501px;}
.y45{bottom:311.835000px;}
.y6f{bottom:313.095000px;}
.y13{bottom:322.918500px;}
.ya{bottom:322.933500px;}
.y78{bottom:328.935000px;}
.y44{bottom:333.615000px;}
.y6e{bottom:334.875000px;}
.y9{bottom:348.133500px;}
.y77{bottom:350.715000px;}
.y43{bottom:355.395000px;}
.y6d{bottom:356.655000px;}
.y76{bottom:372.495000px;}
.y42{bottom:377.175000px;}
.y6c{bottom:378.435000px;}
.y8{bottom:386.785499px;}
.y75{bottom:394.275000px;}
.y41{bottom:399.135000px;}
.y6b{bottom:400.215000px;}
.y7{bottom:408.044999px;}
.y93{bottom:416.235000px;}
.y74{bottom:418.035000px;}
.y40{bottom:420.915000px;}
.y6a{bottom:422.175000px;}
.y92{bottom:438.015000px;}
.y3f{bottom:442.695000px;}
.y69{bottom:443.955000px;}
.y91{bottom:459.795000px;}
.y3e{bottom:464.475000px;}
.y68{bottom:465.735000px;}
.y90{bottom:481.575000px;}
.y67{bottom:487.515000px;}
.y3d{bottom:488.235000px;}
.y8f{bottom:503.355000px;}
.y66{bottom:509.475000px;}
.y3c{bottom:514.155000px;}
.y8e{bottom:525.315000px;}
.y65{bottom:531.255000px;}
.y3b{bottom:535.935000px;}
.y6{bottom:538.864499px;}
.y8d{bottom:547.095000px;}
.y64{bottom:553.035000px;}
.y5{bottom:556.864499px;}
.y3a{bottom:557.745000px;}
.y8c{bottom:568.905000px;}
.y63{bottom:574.845000px;}
.ya0{bottom:579.525000px;}
.y39{bottom:579.705000px;}
.y8b{bottom:590.685000px;}
.y62{bottom:596.625000px;}
.y9f{bottom:598.425000px;}
.y38{bottom:601.485000px;}
.y8a{bottom:612.645000px;}
.y9e{bottom:617.505000px;}
.y61{bottom:618.585000px;}
.y37{bottom:623.265000px;}
.y89{bottom:634.425000px;}
.y9d{bottom:636.405000px;}
.y60{bottom:640.365000px;}
.y36{bottom:645.045000px;}
.y9c{bottom:655.485000px;}
.y88{bottom:656.205000px;}
.y5f{bottom:662.145000px;}
.y35{bottom:666.825000px;}
.y9b{bottom:674.385000px;}
.y87{bottom:677.985000px;}
.y5e{bottom:683.925000px;}
.y34{bottom:688.785000px;}
.y9a{bottom:693.285000px;}
.y86{bottom:699.765000px;}
.y5d{bottom:705.705000px;}
.y33{bottom:710.565000px;}
.y99{bottom:712.365000px;}
.y85{bottom:721.725000px;}
.y5c{bottom:727.665000px;}
.y98{bottom:731.265000px;}
.y32{bottom:732.345000px;}
.y84{bottom:743.505000px;}
.y5b{bottom:749.445000px;}
.y97{bottom:750.345000px;}
.y3{bottom:752.599495px;}
.y31{bottom:754.125000px;}
.y83{bottom:765.285000px;}
.y96{bottom:769.245000px;}
.y5a{bottom:771.225000px;}
.y30{bottom:776.085000px;}
.y82{bottom:787.065000px;}
.y95{bottom:791.025000px;}
.y59{bottom:793.005000px;}
.y2f{bottom:797.865000px;}
.y81{bottom:809.025000px;}
.y94{bottom:813.165000px;}
.y58{bottom:814.965000px;}
.y2e{bottom:816.765000px;}
.y80{bottom:830.805000px;}
.y2d{bottom:835.845000px;}
.y57{bottom:836.745000px;}
.y7f{bottom:852.630000px;}
.y2c{bottom:854.790000px;}
.y56{bottom:858.570000px;}
.y2b{bottom:873.690000px;}
.y7e{bottom:876.210000px;}
.y2{bottom:879.369000px;}
.y55{bottom:880.350000px;}
.y2a{bottom:892.770000px;}
.y54{bottom:902.130000px;}
.y29{bottom:911.670000px;}
.y53{bottom:924.090000px;}
.y28{bottom:930.750000px;}
.y52{bottom:945.870000px;}
.y27{bottom:949.650000px;}
.y1{bottom:966.726000px;}
.y51{bottom:967.650000px;}
.y26{bottom:968.550000px;}
.y25{bottom:987.270000px;}
.y50{bottom:989.430000px;}
.y24{bottom:1004.550000px;}
.y4f{bottom:1011.390000px;}
.y23{bottom:1024.170000px;}
.y4e{bottom:1033.170000px;}
.y22{bottom:1052.790000px;}
.y4d{bottom:1054.950000px;}
.y21{bottom:1070.070000px;}
.y4c{bottom:1076.730000px;}
.y20{bottom:1087.350000px;}
.y4b{bottom:1098.510000px;}
.y1f{bottom:1104.630000px;}
.y4a{bottom:1120.470000px;}
.y1e{bottom:1121.940000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:55.243125px;}
.h9{height:58.651172px;}
.hc{height:65.010937px;}
.hb{height:66.757500px;}
.hf{height:72.562500px;}
.h5{height:78.030000px;}
.he{height:82.635820px;}
.ha{height:108.843750px;}
.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;}
.x6{left:148.896000px;}
.x7{left:170.130000px;}
.x4{left:203.484001px;}
.x9{left:233.850000px;}
.x3{left:454.959000px;}
.x8{left:655.845000px;}
.x5{left:736.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.648000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.075947pt;}
.ls8{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.409067pt;}
.lsb{letter-spacing:0.640000pt;}
.ls6{letter-spacing:8.320000pt;}
.lsa{letter-spacing:8.960000pt;}
.ls7{letter-spacing:60.778667pt;}
.ls3{letter-spacing:789.418667pt;}
.ws6{word-spacing:-14.953067pt;}
.ws5{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.351467pt;}
.ws7{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.689067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-1.884160pt;}
._1{margin-left:-0.992000pt;}
._0{width:0.982187pt;}
._4{width:2.085547pt;}
._8{width:3.002880pt;}
._b{width:4.009813pt;}
._a{width:4.957867pt;}
._2{width:6.204587pt;}
._12{width:7.374507pt;}
._5{width:8.598187pt;}
._6{width:9.849600pt;}
._18{width:10.801493pt;}
._7{width:11.717120pt;}
._9{width:13.424640pt;}
._15{width:16.309760pt;}
._1b{width:17.487360pt;}
._10{width:18.429440pt;}
._3{width:20.090027pt;}
._13{width:21.248853pt;}
._f{width:22.297600pt;}
._19{width:23.565013pt;}
._21{width:24.464853pt;}
._1e{width:25.572693pt;}
._c{width:27.060907pt;}
._20{width:28.182187pt;}
._14{width:29.145600pt;}
._2d{width:30.134187pt;}
._2c{width:31.559680pt;}
._1f{width:32.728747pt;}
._1c{width:33.739947pt;}
._1d{width:34.638507pt;}
._2b{width:35.668907pt;}
._28{width:36.803840pt;}
._27{width:37.857280pt;}
._2f{width:39.219200pt;}
._2a{width:43.371947pt;}
._29{width:44.454400pt;}
._22{width:51.166720pt;}
._23{width:52.068693pt;}
._16{width:53.050880pt;}
._11{width:56.171520pt;}
._1a{width:60.778667pt;}
._24{width:62.435840pt;}
._2e{width:63.432533pt;}
._d{width:70.714880pt;}
._e{width:72.101120pt;}
._26{width:80.914347pt;}
._25{width:82.078720pt;}
._30{width:85.512533pt;}
._33{width:105.463040pt;}
._31{width:106.681600pt;}
._32{width:107.809280pt;}
._38{width:169.578667pt;}
._39{width:189.185707pt;}
._37{width:199.018667pt;}
._3a{width:202.257067pt;}
._34{width:213.105493pt;}
._35{width:214.138027pt;}
._36{width:2102.165333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:86.333337pt;}
.y1b{bottom:123.790666pt;}
.y1d{bottom:154.426667pt;}
.y1c{bottom:169.786667pt;}
.y12{bottom:175.052000pt;}
.y1a{bottom:186.238666pt;}
.y11{bottom:186.252002pt;}
.y7d{bottom:195.386667pt;}
.y19{bottom:197.438668pt;}
.y10{bottom:197.452004pt;}
.y49{bottom:199.546667pt;}
.y73{bottom:200.666667pt;}
.y18{bottom:208.638670pt;}
.yf{bottom:208.651996pt;}
.y7c{bottom:214.746667pt;}
.y48{bottom:218.906667pt;}
.y72{bottom:220.026667pt;}
.y17{bottom:231.038664pt;}
.ye{bottom:231.052000pt;}
.y7b{bottom:234.106667pt;}
.y47{bottom:238.266667pt;}
.y71{bottom:239.386667pt;}
.y16{bottom:242.238666pt;}
.yd{bottom:242.252002pt;}
.y15{bottom:253.438668pt;}
.yc{bottom:253.451999pt;}
.y7a{bottom:253.506667pt;}
.y46{bottom:257.826667pt;}
.y70{bottom:258.786667pt;}
.y79{bottom:272.866667pt;}
.y14{bottom:275.838667pt;}
.yb{bottom:275.852001pt;}
.y45{bottom:277.186667pt;}
.y6f{bottom:278.306667pt;}
.y13{bottom:287.038667pt;}
.ya{bottom:287.052000pt;}
.y78{bottom:292.386667pt;}
.y44{bottom:296.546667pt;}
.y6e{bottom:297.666667pt;}
.y9{bottom:309.452000pt;}
.y77{bottom:311.746667pt;}
.y43{bottom:315.906667pt;}
.y6d{bottom:317.026667pt;}
.y76{bottom:331.106667pt;}
.y42{bottom:335.266667pt;}
.y6c{bottom:336.386667pt;}
.y8{bottom:343.809333pt;}
.y75{bottom:350.466667pt;}
.y41{bottom:354.786667pt;}
.y6b{bottom:355.746667pt;}
.y7{bottom:362.706666pt;}
.y93{bottom:369.986667pt;}
.y74{bottom:371.586667pt;}
.y40{bottom:374.146667pt;}
.y6a{bottom:375.266667pt;}
.y92{bottom:389.346667pt;}
.y3f{bottom:393.506667pt;}
.y69{bottom:394.626667pt;}
.y91{bottom:408.706667pt;}
.y3e{bottom:412.866667pt;}
.y68{bottom:413.986667pt;}
.y90{bottom:428.066667pt;}
.y67{bottom:433.346667pt;}
.y3d{bottom:433.986667pt;}
.y8f{bottom:447.426667pt;}
.y66{bottom:452.866667pt;}
.y3c{bottom:457.026667pt;}
.y8e{bottom:466.946667pt;}
.y65{bottom:472.226667pt;}
.y3b{bottom:476.386667pt;}
.y6{bottom:478.990666pt;}
.y8d{bottom:486.306667pt;}
.y64{bottom:491.586667pt;}
.y5{bottom:494.990666pt;}
.y3a{bottom:495.773333pt;}
.y8c{bottom:505.693333pt;}
.y63{bottom:510.973333pt;}
.ya0{bottom:515.133333pt;}
.y39{bottom:515.293333pt;}
.y8b{bottom:525.053333pt;}
.y62{bottom:530.333333pt;}
.y9f{bottom:531.933333pt;}
.y38{bottom:534.653333pt;}
.y8a{bottom:544.573333pt;}
.y9e{bottom:548.893333pt;}
.y61{bottom:549.853333pt;}
.y37{bottom:554.013333pt;}
.y89{bottom:563.933333pt;}
.y9d{bottom:565.693333pt;}
.y60{bottom:569.213333pt;}
.y36{bottom:573.373333pt;}
.y9c{bottom:582.653333pt;}
.y88{bottom:583.293333pt;}
.y5f{bottom:588.573333pt;}
.y35{bottom:592.733333pt;}
.y9b{bottom:599.453333pt;}
.y87{bottom:602.653333pt;}
.y5e{bottom:607.933333pt;}
.y34{bottom:612.253333pt;}
.y9a{bottom:616.253333pt;}
.y86{bottom:622.013333pt;}
.y5d{bottom:627.293333pt;}
.y33{bottom:631.613333pt;}
.y99{bottom:633.213333pt;}
.y85{bottom:641.533333pt;}
.y5c{bottom:646.813333pt;}
.y98{bottom:650.013333pt;}
.y32{bottom:650.973333pt;}
.y84{bottom:660.893333pt;}
.y5b{bottom:666.173333pt;}
.y97{bottom:666.973333pt;}
.y3{bottom:668.977329pt;}
.y31{bottom:670.333333pt;}
.y83{bottom:680.253333pt;}
.y96{bottom:683.773333pt;}
.y5a{bottom:685.533333pt;}
.y30{bottom:689.853333pt;}
.y82{bottom:699.613333pt;}
.y95{bottom:703.133333pt;}
.y59{bottom:704.893333pt;}
.y2f{bottom:709.213333pt;}
.y81{bottom:719.133333pt;}
.y94{bottom:722.813333pt;}
.y58{bottom:724.413333pt;}
.y2e{bottom:726.013333pt;}
.y80{bottom:738.493333pt;}
.y2d{bottom:742.973333pt;}
.y57{bottom:743.773333pt;}
.y7f{bottom:757.893333pt;}
.y2c{bottom:759.813333pt;}
.y56{bottom:763.173333pt;}
.y2b{bottom:776.613333pt;}
.y7e{bottom:778.853333pt;}
.y2{bottom:781.661334pt;}
.y55{bottom:782.533333pt;}
.y2a{bottom:793.573333pt;}
.y54{bottom:801.893333pt;}
.y29{bottom:810.373333pt;}
.y53{bottom:821.413333pt;}
.y28{bottom:827.333333pt;}
.y52{bottom:840.773333pt;}
.y27{bottom:844.133333pt;}
.y1{bottom:859.312000pt;}
.y51{bottom:860.133333pt;}
.y26{bottom:860.933333pt;}
.y25{bottom:877.573333pt;}
.y50{bottom:879.493333pt;}
.y24{bottom:892.933333pt;}
.y4f{bottom:899.013333pt;}
.y23{bottom:910.373333pt;}
.y4e{bottom:918.373333pt;}
.y22{bottom:935.813333pt;}
.y4d{bottom:937.733333pt;}
.y21{bottom:951.173333pt;}
.y4c{bottom:957.093333pt;}
.y20{bottom:966.533333pt;}
.y4b{bottom:976.453333pt;}
.y1f{bottom:981.893333pt;}
.y4a{bottom:995.973333pt;}
.y1e{bottom:997.280000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:49.105000pt;}
.h9{height:52.134375pt;}
.hc{height:57.787500pt;}
.hb{height:59.340000pt;}
.hf{height:64.500000pt;}
.h5{height:69.360000pt;}
.he{height:73.454062pt;}
.ha{height:96.750000pt;}
.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;}
.x6{left:132.352000pt;}
.x7{left:151.226667pt;}
.x4{left:180.874667pt;}
.x9{left:207.866667pt;}
.x3{left:404.408000pt;}
.x8{left:582.973333pt;}
.x5{left:654.853333pt;}
}




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