
    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_10632442bf986e07eeb02074.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_610c06c4b0445b54608f494f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_810207f0be4554e9bc729ded.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.765625;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_020fd51981a6257bb7c05915.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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_93cfadca8cbcf1f54ae312af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.776855;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_3268eacb82345e8c557bbecb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960938;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_6e75cd7fd1251f30a7cdb8fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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);}
.v3{vertical-align:-43.206000px;}
.v6{vertical-align:-19.218000px;}
.v4{vertical-align:-10.884000px;}
.v5{vertical-align:-8.502000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:43.128000px;}
.v1{vertical-align:71.976000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006006px;}
.ls5{letter-spacing:0.155964px;}
.ls0{letter-spacing:63.537708px;}
.ls1{letter-spacing:65.265870px;}
.ls8{letter-spacing:67.217400px;}
.ls9{letter-spacing:75.651600px;}
.ls4{letter-spacing:80.454600px;}
.ls6{letter-spacing:99.983700px;}
.ls7{letter-spacing:157.187400px;}
.ls3{letter-spacing:161.412600px;}
.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;}
}
.ws3{word-spacing:-83.104986px;}
.ws6{word-spacing:-65.478138px;}
.ws1{word-spacing:-53.188986px;}
.ws4{word-spacing:-43.357992px;}
.ws2{word-spacing:-43.202028px;}
.ws5{word-spacing:-39.902958px;}
.ws0{word-spacing:-38.555076px;}
.ws7{word-spacing:-33.261606px;}
.ws8{word-spacing:0.000000px;}
._17{margin-left:-19.303260px;}
._19{margin-left:-10.428930px;}
._0{margin-left:-9.078606px;}
._18{margin-left:-7.899000px;}
._16{margin-left:-5.361048px;}
._2{margin-left:-4.208934px;}
._15{margin-left:-3.195600px;}
._4{margin-left:-1.019610px;}
._f{width:1.124034px;}
._1{width:2.868036px;}
._12{width:4.000110px;}
._a{width:6.673134px;}
._14{width:8.009826px;}
._7{width:10.603944px;}
._8{width:11.827476px;}
._d{width:51.844860px;}
._e{width:59.070726px;}
._b{width:63.941994px;}
._13{width:72.037932px;}
._3{width:73.174974px;}
._6{width:87.890382px;}
._10{width:98.121198px;}
._9{width:134.220582px;}
._5{width:139.686570px;}
._11{width:141.709284px;}
._c{width:164.559426px;}
.fc7{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(204,204,255);}
.fc3{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(204,0,0);}
.fc0{color:rgb(34,34,139);}
.fs4{font-size:83.382000px;}
.fsa{font-size:84.018000px;}
.fsd{font-size:95.922000px;}
.fs8{font-size:120.078000px;}
.fs2{font-size:139.188000px;}
.fs3{font-size:144.054000px;}
.fsb{font-size:155.964000px;}
.fsc{font-size:168.036000px;}
.fse{font-size:179.946000px;}
.fs7{font-size:192.018000px;}
.fs6{font-size:203.922000px;}
.fs1{font-size:239.982000px;}
.fs9{font-size:300.018000px;}
.fs5{font-size:324.000000px;}
.fs0{font-size:444.078000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1d{bottom:40.182000px;}
.y1a{bottom:46.134000px;}
.y1c{bottom:76.195500px;}
.y1b{bottom:112.209000px;}
.y1f{bottom:152.178000px;}
.y68{bottom:307.162500px;}
.y67{bottom:361.162500px;}
.y83{bottom:438.250500px;}
.y82{bottom:481.450500px;}
.y66{bottom:522.865500px;}
.y81{bottom:524.650500px;}
.y76{bottom:559.602000px;}
.y65{bottom:561.303000px;}
.y80{bottom:567.850500px;}
.y75{bottom:588.387000px;}
.y64{bottom:611.731500px;}
.y74{bottom:617.173500px;}
.y73{bottom:645.960000px;}
.y7f{bottom:654.250500px;}
.y63{bottom:662.160000px;}
.y72{bottom:674.745000px;}
.y7e{bottom:702.255000px;}
.y71{bottom:703.531500px;}
.y62{bottom:714.883500px;}
.y70{bottom:732.316500px;}
.y7d{bottom:740.650500px;}
.y61{bottom:763.015500px;}
.y85{bottom:807.024000px;}
.y60{bottom:813.444000px;}
.y7c{bottom:827.050500px;}
.y84{bottom:835.809000px;}
.y5f{bottom:866.169000px;}
.y7b{bottom:875.055000px;}
.y5e{bottom:911.877000px;}
.y7a{bottom:931.479000px;}
.y5d{bottom:950.314500px;}
.y79{bottom:974.679000px;}
.y5c{bottom:1000.743000px;}
.y78{bottom:1022.683500px;}
.y5b{bottom:1051.171500px;}
.y77{bottom:1079.107500px;}
.y5a{bottom:1101.600000px;}
.y6f{bottom:1113.676500px;}
.y1e{bottom:1140.547500px;}
.y6e{bottom:1142.461500px;}
.y59{bottom:1152.028500px;}
.y6d{bottom:1171.248000px;}
.y6c{bottom:1200.033000px;}
.y58{bottom:1204.753500px;}
.y6b{bottom:1228.819500px;}
.y6a{bottom:1257.604500px;}
.y57{bottom:1278.057000px;}
.y69{bottom:1286.391000px;}
.y51{bottom:1441.927500px;}
.y50{bottom:1470.714000px;}
.y56{bottom:1509.831000px;}
.y55{bottom:1538.617500px;}
.y47{bottom:1545.973500px;}
.y54{bottom:1567.404000px;}
.y53{bottom:1596.189000px;}
.y46{bottom:1650.529500px;}
.y45{bottom:2006.844000px;}
.y44{bottom:2111.400000px;}
.y4f{bottom:2224.714500px;}
.y4e{bottom:2277.439500px;}
.y4d{bottom:2343.600000px;}
.y4c{bottom:2396.325000px;}
.y4b{bottom:2460.061500px;}
.y43{bottom:2467.714500px;}
.y4a{bottom:2498.499000px;}
.y42{bottom:2518.143000px;}
.y49{bottom:2551.224000px;}
.y41{bottom:2572.270500px;}
.y48{bottom:2624.527500px;}
.y3f{bottom:2752.767000px;}
.y52{bottom:2777.769000px;}
.y3e{bottom:2801.665500px;}
.y3d{bottom:2848.437000px;}
.y3c{bottom:2895.208500px;}
.y3b{bottom:2941.980000px;}
.y3a{bottom:2988.751500px;}
.y39{bottom:3033.397500px;}
.y19{bottom:3035.692500px;}
.y40{bottom:3057.676500px;}
.y18{bottom:3093.307500px;}
.y37{bottom:3111.633000px;}
.y17{bottom:3150.921000px;}
.y36{bottom:3160.531500px;}
.y35{bottom:3205.176000px;}
.y34{bottom:3251.947500px;}
.y16{bottom:3263.428500px;}
.y33{bottom:3300.846000px;}
.y15{bottom:3323.764500px;}
.y32{bottom:3392.263500px;}
.y14{bottom:3436.270500px;}
.y31{bottom:3439.035000px;}
.y30{bottom:3485.806500px;}
.y13{bottom:3493.885500px;}
.y2f{bottom:3534.703500px;}
.y12{bottom:3551.499000px;}
.y2e{bottom:3579.349500px;}
.y11{bottom:3611.835000px;}
.y2d{bottom:3628.248000px;}
.y2c{bottom:3672.892500px;}
.y2b{bottom:3721.791000px;}
.y10{bottom:3724.342500px;}
.y2a{bottom:3766.437000px;}
.yf{bottom:3781.956000px;}
.y29{bottom:3815.334000px;}
.ye{bottom:3842.292000px;}
.y28{bottom:3862.105500px;}
.y27{bottom:3906.751500px;}
.y26{bottom:3955.648500px;}
.yd{bottom:3958.965000px;}
.y25{bottom:4000.294500px;}
.yc{bottom:4020.151500px;}
.y24{bottom:4047.066000px;}
.yb{bottom:4081.336500px;}
.y23{bottom:4095.964500px;}
.ya{bottom:4142.523000px;}
.y22{bottom:4142.736000px;}
.y21{bottom:4189.507500px;}
.y9{bottom:4203.709500px;}
.y20{bottom:4234.153500px;}
.y38{bottom:4325.485500px;}
.y8{bottom:4326.081000px;}
.y7{bottom:4377.870000px;}
.y6{bottom:4579.627500px;}
.y5{bottom:4612.026000px;}
.y4{bottom:4688.815500px;}
.y3{bottom:4770.751500px;}
.y2{bottom:4903.965000px;}
.h6{height:61.739590px;}
.h10{height:75.320824px;}
.h16{height:85.992574px;}
.h5{height:104.945590px;}
.he{height:107.648051px;}
.h19{height:109.924160px;}
.h11{height:113.622211px;}
.h17{height:122.416852px;}
.h14{height:127.667977px;}
.h13{height:129.142160px;}
.h12{height:139.819289px;}
.hd{height:139.888113px;}
.h8{height:148.560363px;}
.h15{height:150.641648px;}
.hc{height:161.251137px;}
.ha{height:161.257137px;}
.h18{height:161.318777px;}
.hb{height:172.141137px;}
.h4{height:174.830637px;}
.h9{height:182.812887px;}
.hf{height:218.567801px;}
.h7{height:236.039062px;}
.h3{height:323.517762px;}
.h2{height:5056.099500px;}
.h0{height:5056.143307px;}
.h1{height:5056.500000px;}
.w1{width:3576.000000px;}
.w2{width:3576.330000px;}
.w0{width:3576.373228px;}
.x0{left:0.000000px;}
.x7{left:96.775500px;}
.x1a{left:113.230500px;}
.x18{left:122.244000px;}
.x1d{left:129.132000px;}
.x9{left:150.775500px;}
.x8{left:157.536000px;}
.x1e{left:160.639500px;}
.x20{left:174.160500px;}
.x19{left:176.244000px;}
.x1f{left:218.041500px;}
.xa{left:219.784500px;}
.xe{left:257.754000px;}
.x1b{left:427.705500px;}
.x6{left:687.883500px;}
.xc{left:745.242000px;}
.x3{left:834.703500px;}
.x22{left:951.505500px;}
.x1c{left:1065.288000px;}
.x1{left:1150.837500px;}
.x2{left:1280.481000px;}
.x4{left:1295.064000px;}
.x5{left:1384.707000px;}
.x21{left:1410.802500px;}
.x23{left:1834.809000px;}
.x16{left:1857.642000px;}
.xf{left:1862.064000px;}
.x24{left:1875.330000px;}
.x17{left:1899.439500px;}
.x12{left:1916.064000px;}
.x13{left:1949.824500px;}
.x11{left:1962.580500px;}
.xd{left:2097.964500px;}
.x10{left:2163.613500px;}
.xb{left:2274.505500px;}
.x14{left:2464.101000px;}
.x25{left:2846.905500px;}
.x15{left:3116.523000px;}
@media print{
.v3{vertical-align:-38.405333pt;}
.v6{vertical-align:-17.082667pt;}
.v4{vertical-align:-9.674667pt;}
.v5{vertical-align:-7.557333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:38.336000pt;}
.v1{vertical-align:63.978667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005339pt;}
.ls5{letter-spacing:0.138635pt;}
.ls0{letter-spacing:56.477963pt;}
.ls1{letter-spacing:58.014107pt;}
.ls8{letter-spacing:59.748800pt;}
.ls9{letter-spacing:67.245867pt;}
.ls4{letter-spacing:71.515200pt;}
.ls6{letter-spacing:88.874400pt;}
.ls7{letter-spacing:139.722133pt;}
.ls3{letter-spacing:143.477867pt;}
.ws3{word-spacing:-73.871099pt;}
.ws6{word-spacing:-58.202789pt;}
.ws1{word-spacing:-47.279099pt;}
.ws4{word-spacing:-38.540437pt;}
.ws2{word-spacing:-38.401803pt;}
.ws5{word-spacing:-35.469296pt;}
.ws0{word-spacing:-34.271179pt;}
.ws7{word-spacing:-29.565872pt;}
.ws8{word-spacing:0.000000pt;}
._17{margin-left:-17.158453pt;}
._19{margin-left:-9.270160pt;}
._0{margin-left:-8.069872pt;}
._18{margin-left:-7.021333pt;}
._16{margin-left:-4.765376pt;}
._2{margin-left:-3.741275pt;}
._15{margin-left:-2.840533pt;}
._4{margin-left:-0.906320pt;}
._f{width:0.999141pt;}
._1{width:2.549365pt;}
._12{width:3.555653pt;}
._a{width:5.931675pt;}
._14{width:7.119845pt;}
._7{width:9.425728pt;}
._8{width:10.513312pt;}
._d{width:46.084320pt;}
._e{width:52.507312pt;}
._b{width:56.837328pt;}
._13{width:64.033717pt;}
._3{width:65.044421pt;}
._6{width:78.124784pt;}
._10{width:87.218843pt;}
._9{width:119.307184pt;}
._5{width:124.165840pt;}
._11{width:125.963808pt;}
._c{width:146.275045pt;}
.fs4{font-size:74.117333pt;}
.fsa{font-size:74.682667pt;}
.fsd{font-size:85.264000pt;}
.fs8{font-size:106.736000pt;}
.fs2{font-size:123.722667pt;}
.fs3{font-size:128.048000pt;}
.fsb{font-size:138.634667pt;}
.fsc{font-size:149.365333pt;}
.fse{font-size:159.952000pt;}
.fs7{font-size:170.682667pt;}
.fs6{font-size:181.264000pt;}
.fs1{font-size:213.317333pt;}
.fs9{font-size:266.682667pt;}
.fs5{font-size:288.000000pt;}
.fs0{font-size:394.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1d{bottom:35.717333pt;}
.y1a{bottom:41.008000pt;}
.y1c{bottom:67.729333pt;}
.y1b{bottom:99.741333pt;}
.y1f{bottom:135.269333pt;}
.y68{bottom:273.033333pt;}
.y67{bottom:321.033333pt;}
.y83{bottom:389.556000pt;}
.y82{bottom:427.956000pt;}
.y66{bottom:464.769333pt;}
.y81{bottom:466.356000pt;}
.y76{bottom:497.424000pt;}
.y65{bottom:498.936000pt;}
.y80{bottom:504.756000pt;}
.y75{bottom:523.010667pt;}
.y64{bottom:543.761333pt;}
.y74{bottom:548.598667pt;}
.y73{bottom:574.186667pt;}
.y7f{bottom:581.556000pt;}
.y63{bottom:588.586667pt;}
.y72{bottom:599.773333pt;}
.y7e{bottom:624.226667pt;}
.y71{bottom:625.361333pt;}
.y62{bottom:635.452000pt;}
.y70{bottom:650.948000pt;}
.y7d{bottom:658.356000pt;}
.y61{bottom:678.236000pt;}
.y85{bottom:717.354667pt;}
.y60{bottom:723.061333pt;}
.y7c{bottom:735.156000pt;}
.y84{bottom:742.941333pt;}
.y5f{bottom:769.928000pt;}
.y7b{bottom:777.826667pt;}
.y5e{bottom:810.557333pt;}
.y7a{bottom:827.981333pt;}
.y5d{bottom:844.724000pt;}
.y79{bottom:866.381333pt;}
.y5c{bottom:889.549333pt;}
.y78{bottom:909.052000pt;}
.y5b{bottom:934.374667pt;}
.y77{bottom:959.206667pt;}
.y5a{bottom:979.200000pt;}
.y6f{bottom:989.934667pt;}
.y1e{bottom:1013.820000pt;}
.y6e{bottom:1015.521333pt;}
.y59{bottom:1024.025333pt;}
.y6d{bottom:1041.109333pt;}
.y6c{bottom:1066.696000pt;}
.y58{bottom:1070.892000pt;}
.y6b{bottom:1092.284000pt;}
.y6a{bottom:1117.870667pt;}
.y57{bottom:1136.050667pt;}
.y69{bottom:1143.458667pt;}
.y51{bottom:1281.713333pt;}
.y50{bottom:1307.301333pt;}
.y56{bottom:1342.072000pt;}
.y55{bottom:1367.660000pt;}
.y47{bottom:1374.198667pt;}
.y54{bottom:1393.248000pt;}
.y53{bottom:1418.834667pt;}
.y46{bottom:1467.137333pt;}
.y45{bottom:1783.861333pt;}
.y44{bottom:1876.800000pt;}
.y4f{bottom:1977.524000pt;}
.y4e{bottom:2024.390667pt;}
.y4d{bottom:2083.200000pt;}
.y4c{bottom:2130.066667pt;}
.y4b{bottom:2186.721333pt;}
.y43{bottom:2193.524000pt;}
.y4a{bottom:2220.888000pt;}
.y42{bottom:2238.349333pt;}
.y49{bottom:2267.754667pt;}
.y41{bottom:2286.462667pt;}
.y48{bottom:2332.913333pt;}
.y3f{bottom:2446.904000pt;}
.y52{bottom:2469.128000pt;}
.y3e{bottom:2490.369333pt;}
.y3d{bottom:2531.944000pt;}
.y3c{bottom:2573.518667pt;}
.y3b{bottom:2615.093333pt;}
.y3a{bottom:2656.668000pt;}
.y39{bottom:2696.353333pt;}
.y19{bottom:2698.393333pt;}
.y40{bottom:2717.934667pt;}
.y18{bottom:2749.606667pt;}
.y37{bottom:2765.896000pt;}
.y17{bottom:2800.818667pt;}
.y36{bottom:2809.361333pt;}
.y35{bottom:2849.045333pt;}
.y34{bottom:2890.620000pt;}
.y16{bottom:2900.825333pt;}
.y33{bottom:2934.085333pt;}
.y15{bottom:2954.457333pt;}
.y32{bottom:3015.345333pt;}
.y14{bottom:3054.462667pt;}
.y31{bottom:3056.920000pt;}
.y30{bottom:3098.494667pt;}
.y13{bottom:3105.676000pt;}
.y2f{bottom:3141.958667pt;}
.y12{bottom:3156.888000pt;}
.y2e{bottom:3181.644000pt;}
.y11{bottom:3210.520000pt;}
.y2d{bottom:3225.109333pt;}
.y2c{bottom:3264.793333pt;}
.y2b{bottom:3308.258667pt;}
.y10{bottom:3310.526667pt;}
.y2a{bottom:3347.944000pt;}
.yf{bottom:3361.738667pt;}
.y29{bottom:3391.408000pt;}
.ye{bottom:3415.370667pt;}
.y28{bottom:3432.982667pt;}
.y27{bottom:3472.668000pt;}
.y26{bottom:3516.132000pt;}
.yd{bottom:3519.080000pt;}
.y25{bottom:3555.817333pt;}
.yc{bottom:3573.468000pt;}
.y24{bottom:3597.392000pt;}
.yb{bottom:3627.854667pt;}
.y23{bottom:3640.857333pt;}
.ya{bottom:3682.242667pt;}
.y22{bottom:3682.432000pt;}
.y21{bottom:3724.006667pt;}
.y9{bottom:3736.630667pt;}
.y20{bottom:3763.692000pt;}
.y38{bottom:3844.876000pt;}
.y8{bottom:3845.405333pt;}
.y7{bottom:3891.440000pt;}
.y6{bottom:4070.780000pt;}
.y5{bottom:4099.578667pt;}
.y4{bottom:4167.836000pt;}
.y3{bottom:4240.668000pt;}
.y2{bottom:4359.080000pt;}
.h6{height:54.879635pt;}
.h10{height:66.951844pt;}
.h16{height:76.437844pt;}
.h5{height:93.284969pt;}
.he{height:95.687156pt;}
.h19{height:97.710365pt;}
.h11{height:100.997521pt;}
.h17{height:108.814979pt;}
.h14{height:113.482646pt;}
.h13{height:114.793031pt;}
.h12{height:124.283812pt;}
.hd{height:124.344990pt;}
.h8{height:132.053656pt;}
.h15{height:133.903687pt;}
.hc{height:143.334344pt;}
.ha{height:143.339677pt;}
.h18{height:143.394469pt;}
.hb{height:153.014344pt;}
.h4{height:155.405010pt;}
.h9{height:162.500344pt;}
.hf{height:194.282490pt;}
.h7{height:209.812500pt;}
.h3{height:287.571344pt;}
.h2{height:4494.310667pt;}
.h0{height:4494.349606pt;}
.h1{height:4494.666667pt;}
.w1{width:3178.666667pt;}
.w2{width:3178.960000pt;}
.w0{width:3178.998425pt;}
.x0{left:0.000000pt;}
.x7{left:86.022667pt;}
.x1a{left:100.649333pt;}
.x18{left:108.661333pt;}
.x1d{left:114.784000pt;}
.x9{left:134.022667pt;}
.x8{left:140.032000pt;}
.x1e{left:142.790667pt;}
.x20{left:154.809333pt;}
.x19{left:156.661333pt;}
.x1f{left:193.814667pt;}
.xa{left:195.364000pt;}
.xe{left:229.114667pt;}
.x1b{left:380.182667pt;}
.x6{left:611.452000pt;}
.xc{left:662.437333pt;}
.x3{left:741.958667pt;}
.x22{left:845.782667pt;}
.x1c{left:946.922667pt;}
.x1{left:1022.966667pt;}
.x2{left:1138.205333pt;}
.x4{left:1151.168000pt;}
.x5{left:1230.850667pt;}
.x21{left:1254.046667pt;}
.x23{left:1630.941333pt;}
.x16{left:1651.237333pt;}
.xf{left:1655.168000pt;}
.x24{left:1666.960000pt;}
.x17{left:1688.390667pt;}
.x12{left:1703.168000pt;}
.x13{left:1733.177333pt;}
.x11{left:1744.516000pt;}
.xd{left:1864.857333pt;}
.x10{left:1923.212000pt;}
.xb{left:2021.782667pt;}
.x14{left:2190.312000pt;}
.x25{left:2530.582667pt;}
.x15{left:2770.242667pt;}
}




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