
    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_5ebb8456dd828a27ac3c77a1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8f254e91365d43071cf8d239.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_2d5331b2f398e4e2d0db8793.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_40771210baff7e7a356cf4a7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3929929ceec43356abfaf9fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_24f7a15496796d49750d63e5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_284e2724f22f1b55d498dc39.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-63.360000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-1.998000px;}
.ls24{letter-spacing:-1.914000px;}
.ls1c{letter-spacing:-1.440000px;}
.ls28{letter-spacing:-1.254000px;}
.ls13{letter-spacing:-0.936000px;}
.ls27{letter-spacing:-0.810000px;}
.lsb{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.492600px;}
.ls26{letter-spacing:-0.475200px;}
.lsa{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.200160px;}
.ls1{letter-spacing:0.313920px;}
.ls9{letter-spacing:0.316800px;}
.ls21{letter-spacing:0.507000px;}
.ls25{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.732000px;}
.ls1d{letter-spacing:1.458000px;}
.ls11{letter-spacing:1.460160px;}
.ls12{letter-spacing:2.160000px;}
.ls1f{letter-spacing:5.040000px;}
.ls15{letter-spacing:5.160000px;}
.ls14{letter-spacing:6.480000px;}
.ls17{letter-spacing:7.920000px;}
.ls6{letter-spacing:9.360000px;}
.lsd{letter-spacing:12.240000px;}
.lse{letter-spacing:25.200000px;}
.ls4{letter-spacing:46.812000px;}
.lsf{letter-spacing:48.420000px;}
.ls16{letter-spacing:49.680000px;}
.ls2{letter-spacing:54.012000px;}
.ls7{letter-spacing:62.640000px;}
.ls8{letter-spacing:154.800000px;}
.ls3{letter-spacing:160.572000px;}
.ls1b{letter-spacing:163.198560px;}
.ls1e{letter-spacing:163.318560px;}
.ls1a{letter-spacing:164.638560px;}
.ls18{letter-spacing:193.438560px;}
.ls19{letter-spacing:194.878560px;}
.ls20{letter-spacing:1151.832000px;}
.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;}
}
.ws4{word-spacing:-16.578000px;}
.ws5{word-spacing:-15.627000px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.310000px;}
.ws3{word-spacing:-14.184000px;}
.ws1{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.204800px;}
.ws7{word-spacing:-13.187400px;}
.wsb{word-spacing:-12.870000px;}
.wsc{word-spacing:-12.426000px;}
.ws6{word-spacing:-12.240000px;}
.ws8{word-spacing:-11.766000px;}
.ws2{word-spacing:0.000000px;}
._2f{margin-left:-11.520000px;}
._2{margin-left:-7.980480px;}
._26{margin-left:-5.245440px;}
._1a{margin-left:-3.996000px;}
._3{margin-left:-2.865600px;}
._0{margin-left:-1.440000px;}
._1{width:1.016640px;}
._4{width:2.520000px;}
._d{width:3.563520px;}
._c{width:5.084160px;}
._b{width:6.168480px;}
._e{width:7.267200px;}
._f{width:8.543520px;}
._10{width:9.744000px;}
._12{width:11.030400px;}
._a{width:12.040800px;}
._9{width:13.052160px;}
._11{width:14.065440px;}
._24{width:16.150080px;}
._6{width:17.211840px;}
._16{width:18.953280px;}
._15{width:20.649600px;}
._20{width:21.939360px;}
._25{width:23.440800px;}
._1c{width:25.466400px;}
._1b{width:26.759520px;}
._22{width:27.912960px;}
._17{width:28.920960px;}
._18{width:30.562560px;}
._8{width:31.691520px;}
._7{width:32.742720px;}
._19{width:34.156800px;}
._2b{width:35.873280px;}
._2c{width:37.059840px;}
._23{width:38.183040px;}
._21{width:43.905600px;}
._2d{width:45.293760px;}
._1d{width:46.316160px;}
._1f{width:47.764800px;}
._1e{width:48.887520px;}
._2a{width:50.265120px;}
._2e{width:51.319680px;}
._27{width:54.757440px;}
._28{width:56.439360px;}
._29{width:57.543840px;}
._13{width:60.986880px;}
._14{width:63.106560px;}
._5{width:69.005280px;}
._33{width:77.230080px;}
._32{width:78.865920px;}
._35{width:121.423200px;}
._34{width:122.541600px;}
._31{width:123.920160px;}
._30{width:125.208480px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y38{bottom:108.000000px;}
.y6a{bottom:113.436000px;}
.y79{bottom:116.676000px;}
.y37{bottom:123.516000px;}
.y69{bottom:130.356000px;}
.y6c{bottom:130.716000px;}
.y78{bottom:133.956000px;}
.y36{bottom:139.356000px;}
.y68{bottom:147.996000px;}
.y77{bottom:151.230000px;}
.y67{bottom:165.270000px;}
.y76{bottom:168.150000px;}
.y35{bottom:173.910000px;}
.y66{bottom:182.190000px;}
.y34{bottom:190.830000px;}
.y65{bottom:199.470000px;}
.y33{bottom:208.110000px;}
.y64{bottom:216.750000px;}
.y32{bottom:225.435000px;}
.y75{bottom:233.715000px;}
.y63{bottom:234.075000px;}
.y31{bottom:242.715000px;}
.y74{bottom:250.995000px;}
.y62{bottom:251.355000px;}
.y30{bottom:259.995000px;}
.y61{bottom:268.635000px;}
.y2f{bottom:276.915000px;}
.y73{bottom:285.555000px;}
.y60{bottom:285.915000px;}
.y2e{bottom:294.555000px;}
.y72{bottom:302.835000px;}
.y5f{bottom:303.195000px;}
.y2d{bottom:311.835000px;}
.y5e{bottom:320.475000px;}
.y2c{bottom:329.145000px;}
.y71{bottom:337.425000px;}
.y5d{bottom:337.785000px;}
.y2b{bottom:346.425000px;}
.y70{bottom:354.705000px;}
.y5c{bottom:355.065000px;}
.y2a{bottom:363.705000px;}
.y5b{bottom:371.985000px;}
.y29{bottom:380.625000px;}
.y5a{bottom:389.265000px;}
.y28{bottom:397.905000px;}
.y6f{bottom:406.185000px;}
.y59{bottom:406.545000px;}
.y27{bottom:415.185000px;}
.y6e{bottom:423.465000px;}
.y58{bottom:423.825000px;}
.y26{bottom:432.510000px;}
.y57{bottom:441.150000px;}
.y25{bottom:449.790000px;}
.y56{bottom:458.430000px;}
.y24{bottom:467.070000px;}
.y55{bottom:475.710000px;}
.y23{bottom:484.350000px;}
.y54{bottom:492.990000px;}
.y22{bottom:501.630000px;}
.y53{bottom:510.270000px;}
.y21{bottom:518.910000px;}
.y52{bottom:527.550000px;}
.y20{bottom:536.220000px;}
.y51{bottom:544.860000px;}
.y1f{bottom:553.500000px;}
.y50{bottom:562.140000px;}
.y1e{bottom:570.420000px;}
.y4f{bottom:579.060000px;}
.y1d{bottom:587.700000px;}
.y4e{bottom:596.340000px;}
.y1c{bottom:604.980000px;}
.y4d{bottom:613.620000px;}
.y1b{bottom:622.260000px;}
.y4c{bottom:630.900000px;}
.y1a{bottom:639.570000px;}
.y4b{bottom:648.210000px;}
.y19{bottom:656.850000px;}
.y4a{bottom:665.490000px;}
.y18{bottom:674.130000px;}
.y49{bottom:682.770000px;}
.y17{bottom:691.410000px;}
.y48{bottom:700.050000px;}
.y16{bottom:708.690000px;}
.y47{bottom:717.330000px;}
.y15{bottom:725.970000px;}
.y46{bottom:734.610000px;}
.y14{bottom:743.295000px;}
.y45{bottom:751.935000px;}
.y13{bottom:760.215000px;}
.y6d{bottom:768.495000px;}
.y44{bottom:768.855000px;}
.y12{bottom:777.495000px;}
.y6b{bottom:785.775000px;}
.y43{bottom:786.135000px;}
.y11{bottom:794.415000px;}
.y42{bottom:803.415000px;}
.y10{bottom:811.695000px;}
.y41{bottom:820.695000px;}
.yf{bottom:827.535000px;}
.y40{bottom:837.975000px;}
.ye{bottom:843.015000px;}
.y3f{bottom:855.285000px;}
.yd{bottom:858.525000px;}
.y3e{bottom:872.565000px;}
.yc{bottom:873.645000px;}
.yb{bottom:889.485000px;}
.y3d{bottom:889.845000px;}
.ya{bottom:907.125000px;}
.y9{bottom:924.045000px;}
.y3c{bottom:924.405000px;}
.y8{bottom:941.325000px;}
.y3b{bottom:941.685000px;}
.y7{bottom:958.650000px;}
.y3a{bottom:959.010000px;}
.y6{bottom:975.930000px;}
.y5{bottom:993.210000px;}
.y39{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.h7{height:53.704687px;}
.h8{height:54.219375px;}
.h6{height:55.147500px;}
.h4{height:59.328281px;}
.h2{height:59.357813px;}
.h5{height:60.952500px;}
.h9{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:51.155989px;}
.xc{left:76.715989px;}
.x2{left:93.635989px;}
.x8{left:103.031989px;}
.x6{left:105.551989px;}
.xb{left:119.231989px;}
.x4{left:152.354989px;}
.x7{left:195.224989px;}
.xd{left:235.184989px;}
.x1{left:337.859989px;}
.x5{left:349.019989px;}
.xa{left:363.419989px;}
.x9{left:370.259989px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-56.320000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-1.776000pt;}
.ls24{letter-spacing:-1.701333pt;}
.ls1c{letter-spacing:-1.280000pt;}
.ls28{letter-spacing:-1.114667pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls27{letter-spacing:-0.720000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.437867pt;}
.ls26{letter-spacing:-0.422400pt;}
.lsa{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.177920pt;}
.ls1{letter-spacing:0.279040pt;}
.ls9{letter-spacing:0.281600pt;}
.ls21{letter-spacing:0.450667pt;}
.ls25{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.650667pt;}
.ls1d{letter-spacing:1.296000pt;}
.ls11{letter-spacing:1.297920pt;}
.ls12{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls15{letter-spacing:4.586667pt;}
.ls14{letter-spacing:5.760000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls6{letter-spacing:8.320000pt;}
.lsd{letter-spacing:10.880000pt;}
.lse{letter-spacing:22.400000pt;}
.ls4{letter-spacing:41.610667pt;}
.lsf{letter-spacing:43.040000pt;}
.ls16{letter-spacing:44.160000pt;}
.ls2{letter-spacing:48.010667pt;}
.ls7{letter-spacing:55.680000pt;}
.ls8{letter-spacing:137.600000pt;}
.ls3{letter-spacing:142.730667pt;}
.ls1b{letter-spacing:145.065387pt;}
.ls1e{letter-spacing:145.172053pt;}
.ls1a{letter-spacing:146.345387pt;}
.ls18{letter-spacing:171.945387pt;}
.ls19{letter-spacing:173.225387pt;}
.ls20{letter-spacing:1023.850667pt;}
.ws4{word-spacing:-14.736000pt;}
.ws5{word-spacing:-13.890667pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-12.720000pt;}
.ws3{word-spacing:-12.608000pt;}
.ws1{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.737600pt;}
.ws7{word-spacing:-11.722133pt;}
.wsb{word-spacing:-11.440000pt;}
.wsc{word-spacing:-11.045333pt;}
.ws6{word-spacing:-10.880000pt;}
.ws8{word-spacing:-10.458667pt;}
.ws2{word-spacing:0.000000pt;}
._2f{margin-left:-10.240000pt;}
._2{margin-left:-7.093760pt;}
._26{margin-left:-4.662613pt;}
._1a{margin-left:-3.552000pt;}
._3{margin-left:-2.547200pt;}
._0{margin-left:-1.280000pt;}
._1{width:0.903680pt;}
._4{width:2.240000pt;}
._d{width:3.167573pt;}
._c{width:4.519253pt;}
._b{width:5.483093pt;}
._e{width:6.459733pt;}
._f{width:7.594240pt;}
._10{width:8.661333pt;}
._12{width:9.804800pt;}
._a{width:10.702933pt;}
._9{width:11.601920pt;}
._11{width:12.502613pt;}
._24{width:14.355627pt;}
._6{width:15.299413pt;}
._16{width:16.847360pt;}
._15{width:18.355200pt;}
._20{width:19.501653pt;}
._25{width:20.836267pt;}
._1c{width:22.636800pt;}
._1b{width:23.786240pt;}
._22{width:24.811520pt;}
._17{width:25.707520pt;}
._18{width:27.166720pt;}
._8{width:28.170240pt;}
._7{width:29.104640pt;}
._19{width:30.361600pt;}
._2b{width:31.887360pt;}
._2c{width:32.942080pt;}
._23{width:33.940480pt;}
._21{width:39.027200pt;}
._2d{width:40.261120pt;}
._1d{width:41.169920pt;}
._1f{width:42.457600pt;}
._1e{width:43.455573pt;}
._2a{width:44.680107pt;}
._2e{width:45.617493pt;}
._27{width:48.673280pt;}
._28{width:50.168320pt;}
._29{width:51.150080pt;}
._13{width:54.210560pt;}
._14{width:56.094720pt;}
._5{width:61.338027pt;}
._33{width:68.648960pt;}
._32{width:70.103040pt;}
._35{width:107.931733pt;}
._34{width:108.925867pt;}
._31{width:110.151253pt;}
._30{width:111.296427pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y38{bottom:96.000000pt;}
.y6a{bottom:100.832000pt;}
.y79{bottom:103.712000pt;}
.y37{bottom:109.792000pt;}
.y69{bottom:115.872000pt;}
.y6c{bottom:116.192000pt;}
.y78{bottom:119.072000pt;}
.y36{bottom:123.872000pt;}
.y68{bottom:131.552000pt;}
.y77{bottom:134.426667pt;}
.y67{bottom:146.906667pt;}
.y76{bottom:149.466667pt;}
.y35{bottom:154.586667pt;}
.y66{bottom:161.946667pt;}
.y34{bottom:169.626667pt;}
.y65{bottom:177.306667pt;}
.y33{bottom:184.986667pt;}
.y64{bottom:192.666667pt;}
.y32{bottom:200.386667pt;}
.y75{bottom:207.746667pt;}
.y63{bottom:208.066667pt;}
.y31{bottom:215.746667pt;}
.y74{bottom:223.106667pt;}
.y62{bottom:223.426667pt;}
.y30{bottom:231.106667pt;}
.y61{bottom:238.786667pt;}
.y2f{bottom:246.146667pt;}
.y73{bottom:253.826667pt;}
.y60{bottom:254.146667pt;}
.y2e{bottom:261.826667pt;}
.y72{bottom:269.186667pt;}
.y5f{bottom:269.506667pt;}
.y2d{bottom:277.186667pt;}
.y5e{bottom:284.866667pt;}
.y2c{bottom:292.573333pt;}
.y71{bottom:299.933333pt;}
.y5d{bottom:300.253333pt;}
.y2b{bottom:307.933333pt;}
.y70{bottom:315.293333pt;}
.y5c{bottom:315.613333pt;}
.y2a{bottom:323.293333pt;}
.y5b{bottom:330.653333pt;}
.y29{bottom:338.333333pt;}
.y5a{bottom:346.013333pt;}
.y28{bottom:353.693333pt;}
.y6f{bottom:361.053333pt;}
.y59{bottom:361.373333pt;}
.y27{bottom:369.053333pt;}
.y6e{bottom:376.413333pt;}
.y58{bottom:376.733333pt;}
.y26{bottom:384.453333pt;}
.y57{bottom:392.133333pt;}
.y25{bottom:399.813333pt;}
.y56{bottom:407.493333pt;}
.y24{bottom:415.173333pt;}
.y55{bottom:422.853333pt;}
.y23{bottom:430.533333pt;}
.y54{bottom:438.213333pt;}
.y22{bottom:445.893333pt;}
.y53{bottom:453.573333pt;}
.y21{bottom:461.253333pt;}
.y52{bottom:468.933333pt;}
.y20{bottom:476.640000pt;}
.y51{bottom:484.320000pt;}
.y1f{bottom:492.000000pt;}
.y50{bottom:499.680000pt;}
.y1e{bottom:507.040000pt;}
.y4f{bottom:514.720000pt;}
.y1d{bottom:522.400000pt;}
.y4e{bottom:530.080000pt;}
.y1c{bottom:537.760000pt;}
.y4d{bottom:545.440000pt;}
.y1b{bottom:553.120000pt;}
.y4c{bottom:560.800000pt;}
.y1a{bottom:568.506667pt;}
.y4b{bottom:576.186667pt;}
.y19{bottom:583.866667pt;}
.y4a{bottom:591.546667pt;}
.y18{bottom:599.226667pt;}
.y49{bottom:606.906667pt;}
.y17{bottom:614.586667pt;}
.y48{bottom:622.266667pt;}
.y16{bottom:629.946667pt;}
.y47{bottom:637.626667pt;}
.y15{bottom:645.306667pt;}
.y46{bottom:652.986667pt;}
.y14{bottom:660.706667pt;}
.y45{bottom:668.386667pt;}
.y13{bottom:675.746667pt;}
.y6d{bottom:683.106667pt;}
.y44{bottom:683.426667pt;}
.y12{bottom:691.106667pt;}
.y6b{bottom:698.466667pt;}
.y43{bottom:698.786667pt;}
.y11{bottom:706.146667pt;}
.y42{bottom:714.146667pt;}
.y10{bottom:721.506667pt;}
.y41{bottom:729.506667pt;}
.yf{bottom:735.586667pt;}
.y40{bottom:744.866667pt;}
.ye{bottom:749.346667pt;}
.y3f{bottom:760.253333pt;}
.yd{bottom:763.133333pt;}
.y3e{bottom:775.613333pt;}
.yc{bottom:776.573333pt;}
.yb{bottom:790.653333pt;}
.y3d{bottom:790.973333pt;}
.ya{bottom:806.333333pt;}
.y9{bottom:821.373333pt;}
.y3c{bottom:821.693333pt;}
.y8{bottom:836.733333pt;}
.y3b{bottom:837.053333pt;}
.y7{bottom:852.133333pt;}
.y3a{bottom:852.453333pt;}
.y6{bottom:867.493333pt;}
.y5{bottom:882.853333pt;}
.y39{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.h7{height:47.737500pt;}
.h8{height:48.195000pt;}
.h6{height:49.020000pt;}
.h4{height:52.736250pt;}
.h2{height:52.762500pt;}
.h5{height:54.180000pt;}
.h9{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:45.471990pt;}
.xc{left:68.191990pt;}
.x2{left:83.231990pt;}
.x8{left:91.583990pt;}
.x6{left:93.823990pt;}
.xb{left:105.983990pt;}
.x4{left:135.426657pt;}
.x7{left:173.533324pt;}
.xd{left:209.053324pt;}
.x1{left:300.319990pt;}
.x5{left:310.239990pt;}
.xa{left:323.039990pt;}
.x9{left:329.119990pt;}
}




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