
    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_1132a9b00b4df54feb27c365.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_3525678f7817ed3b9fcf842f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.868000;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_afab8c5f3c376446e446d24b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_cf689d13e1da73eefd5f9e7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.165000;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.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.lsc{letter-spacing:-0.285000px;}
.lsb{letter-spacing:-0.184800px;}
.ls6{letter-spacing:-0.061800px;}
.ls7{letter-spacing:-0.046800px;}
.ls4{letter-spacing:-0.038880px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.117360px;}
.ls8{letter-spacing:0.160800px;}
.ls3{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.311760px;}
.ls1{letter-spacing:58.266720px;}
.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:-12.204000px;}
.ws0{word-spacing:-11.913120px;}
.ws4{word-spacing:-11.905200px;}
.ws2{word-spacing:-9.648000px;}
.ws5{word-spacing:-9.463200px;}
.ws6{word-spacing:-9.363000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-3.468960px;}
._3{margin-left:-2.450160px;}
._1{margin-left:-1.080000px;}
._0{width:1.198080px;}
._2{width:2.668560px;}
._7{width:3.701520px;}
._8{width:4.780800px;}
._4{width:5.796720px;}
._9{width:6.892560px;}
._5{width:7.904400px;}
._a{width:9.143280px;}
._b{width:15.119280px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:5.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:74.880000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.540000px;}
.y2c{bottom:3.240000px;}
.y7{bottom:15.840000px;}
.y3{bottom:26.100000px;}
.y2b{bottom:27.900000px;}
.y6{bottom:30.960000px;}
.ya6{bottom:104.256000px;}
.y5b{bottom:108.756000px;}
.yd5{bottom:113.796000px;}
.ya5{bottom:124.596000px;}
.yd4{bottom:128.916000px;}
.y2a{bottom:129.456000px;}
.y5a{bottom:129.636000px;}
.y81{bottom:140.256000px;}
.yd3{bottom:144.036000px;}
.y29{bottom:150.150000px;}
.y59{bottom:150.690000px;}
.ya4{bottom:157.350000px;}
.yd2{bottom:159.150000px;}
.y80{bottom:161.310000px;}
.y28{bottom:170.850000px;}
.y58{bottom:171.750000px;}
.ya3{bottom:177.690000px;}
.yd1{bottom:178.770000px;}
.y7f{bottom:182.190000px;}
.y27{bottom:190.110000px;}
.y57{bottom:192.630000px;}
.ya2{bottom:198.030000px;}
.yd0{bottom:199.830000px;}
.y7e{bottom:203.250000px;}
.y26{bottom:211.170000px;}
.y56{bottom:213.690000px;}
.ya1{bottom:217.290000px;}
.ycf{bottom:220.890000px;}
.y7d{bottom:224.310000px;}
.y25{bottom:232.050000px;}
.ya0{bottom:238.170000px;}
.yce{bottom:241.950000px;}
.y55{bottom:252.750000px;}
.y24{bottom:253.110000px;}
.ycd{bottom:262.830000px;}
.y7c{bottom:263.190000px;}
.y9f{bottom:272.730000px;}
.y54{bottom:273.630000px;}
.y23{bottom:274.170000px;}
.ycc{bottom:283.890000px;}
.y7b{bottom:284.250000px;}
.y9e{bottom:293.070000px;}
.y53{bottom:294.690000px;}
.y22{bottom:295.050000px;}
.ycb{bottom:304.950000px;}
.y7a{bottom:305.310000px;}
.y9d{bottom:313.410000px;}
.y52{bottom:315.750000px;}
.y21{bottom:316.110000px;}
.yca{bottom:325.830000px;}
.y79{bottom:326.190000px;}
.y9c{bottom:333.615000px;}
.y51{bottom:336.675000px;}
.y20{bottom:337.215000px;}
.yc9{bottom:346.935000px;}
.y78{bottom:347.295000px;}
.y50{bottom:357.735000px;}
.y1f{bottom:358.095000px;}
.y9b{bottom:366.375000px;}
.yc8{bottom:367.995000px;}
.y77{bottom:368.355000px;}
.y4f{bottom:378.795000px;}
.y1e{bottom:379.155000px;}
.y9a{bottom:386.715000px;}
.yc7{bottom:388.875000px;}
.y76{bottom:389.235000px;}
.y4e{bottom:399.675000px;}
.y1d{bottom:400.215000px;}
.y99{bottom:407.055000px;}
.yc6{bottom:409.935000px;}
.y75{bottom:410.295000px;}
.y4d{bottom:420.735000px;}
.y1c{bottom:421.095000px;}
.y98{bottom:426.315000px;}
.yc5{bottom:430.995000px;}
.y74{bottom:431.355000px;}
.y4c{bottom:441.795000px;}
.y1b{bottom:442.155000px;}
.y97{bottom:447.375000px;}
.yc4{bottom:451.875000px;}
.y73{bottom:452.235000px;}
.y4b{bottom:462.675000px;}
.y1a{bottom:463.215000px;}
.y96{bottom:468.255000px;}
.yc3{bottom:472.935000px;}
.y72{bottom:473.295000px;}
.y4a{bottom:483.735000px;}
.y19{bottom:484.095000px;}
.yc2{bottom:493.995000px;}
.y71{bottom:494.355000px;}
.y49{bottom:504.795000px;}
.y95{bottom:507.315000px;}
.yc1{bottom:514.875000px;}
.y70{bottom:515.235000px;}
.y18{bottom:523.155000px;}
.y48{bottom:525.675000px;}
.y94{bottom:528.375000px;}
.yc0{bottom:535.935000px;}
.y6f{bottom:536.295000px;}
.y17{bottom:544.215000px;}
.y47{bottom:546.735000px;}
.y93{bottom:550.695000px;}
.ybf{bottom:556.995000px;}
.y6e{bottom:557.355000px;}
.y16{bottom:565.095000px;}
.y46{bottom:567.795000px;}
.y92{bottom:571.395000px;}
.ybe{bottom:577.875000px;}
.y6d{bottom:578.235000px;}
.y15{bottom:586.155000px;}
.y45{bottom:588.675000px;}
.y91{bottom:591.735000px;}
.ybd{bottom:598.965000px;}
.y6c{bottom:599.325000px;}
.y14{bottom:607.245000px;}
.y90{bottom:612.465000px;}
.ybc{bottom:620.025000px;}
.y44{bottom:627.765000px;}
.y13{bottom:628.305000px;}
.y8f{bottom:631.725000px;}
.y6b{bottom:633.705000px;}
.ybb{bottom:640.905000px;}
.y43{bottom:648.825000px;}
.y6a{bottom:654.045000px;}
.yba{bottom:661.965000px;}
.y12{bottom:668.445000px;}
.y42{bottom:669.705000px;}
.y8e{bottom:672.045000px;}
.y69{bottom:674.385000px;}
.yb9{bottom:683.025000px;}
.y41{bottom:690.765000px;}
.y8d{bottom:692.745000px;}
.y68{bottom:694.725000px;}
.yb8{bottom:703.905000px;}
.y40{bottom:711.825000px;}
.y8c{bottom:713.445000px;}
.y67{bottom:715.425000px;}
.y11{bottom:720.645000px;}
.yb7{bottom:724.965000px;}
.y3f{bottom:732.705000px;}
.y8b{bottom:733.785000px;}
.y66{bottom:735.765000px;}
.y10{bottom:751.605000px;}
.y8a{bottom:753.045000px;}
.y3e{bottom:753.765000px;}
.y65{bottom:756.105000px;}
.yb6{bottom:764.025000px;}
.yf{bottom:770.505000px;}
.y89{bottom:774.105000px;}
.y3d{bottom:774.825000px;}
.y64{bottom:776.445000px;}
.yb5{bottom:784.905000px;}
.y3c{bottom:795.705000px;}
.y88{bottom:796.425000px;}
.ye{bottom:801.465000px;}
.yb4{bottom:805.965000px;}
.y3b{bottom:816.765000px;}
.y87{bottom:817.125000px;}
.yd{bottom:832.785000px;}
.y86{bottom:837.465000px;}
.y3a{bottom:837.825000px;}
.yb3{bottom:840.345000px;}
.yc{bottom:851.685000px;}
.y85{bottom:858.165000px;}
.y39{bottom:858.705000px;}
.yb2{bottom:860.685000px;}
.y84{bottom:878.910000px;}
.y38{bottom:879.810000px;}
.yb1{bottom:881.070000px;}
.yb{bottom:882.510000px;}
.y83{bottom:899.610000px;}
.y37{bottom:900.870000px;}
.yb0{bottom:901.410000px;}
.y82{bottom:918.870000px;}
.y36{bottom:921.750000px;}
.ya{bottom:934.890000px;}
.y63{bottom:939.750000px;}
.y35{bottom:942.810000px;}
.yaf{bottom:954.510000px;}
.y62{bottom:960.810000px;}
.y34{bottom:963.870000px;}
.y9{bottom:969.270000px;}
.yae{bottom:974.850000px;}
.y61{bottom:981.870000px;}
.y33{bottom:984.750000px;}
.yad{bottom:995.190000px;}
.y8{bottom:1001.670000px;}
.y60{bottom:1002.750000px;}
.y32{bottom:1005.810000px;}
.yac{bottom:1015.530000px;}
.y5f{bottom:1023.810000px;}
.y31{bottom:1026.870000px;}
.yab{bottom:1034.790000px;}
.y5e{bottom:1044.870000px;}
.y30{bottom:1047.750000px;}
.yaa{bottom:1055.670000px;}
.y5{bottom:1059.450000px;}
.y5d{bottom:1065.750000px;}
.y2f{bottom:1068.810000px;}
.y5c{bottom:1086.810000px;}
.ya9{bottom:1090.230000px;}
.y2e{bottom:1107.870000px;}
.ya8{bottom:1110.570000px;}
.y2d{bottom:1128.750000px;}
.ya7{bottom:1130.940000px;}
.y4{bottom:1154.700000px;}
.y1{bottom:1169.460000px;}
.h3{height:5.034240px;}
.hb{height:17.460000px;}
.h6{height:42.161760px;}
.ha{height:45.041760px;}
.h9{height:51.154560px;}
.h5{height:52.230240px;}
.h2{height:63.900000px;}
.h4{height:64.097280px;}
.h8{height:72.109440px;}
.h7{height:92.448000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:73.620000px;}
.w2{width:213.510000px;}
.w3{width:295.635000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:28.080000px;}
.x4{left:30.600000px;}
.x9{left:45.720000px;}
.x5{left:102.095987px;}
.x7{left:129.095987px;}
.xa{left:156.089987px;}
.x2{left:184.890000px;}
.x3{left:242.310000px;}
.x8{left:717.090000px;}
.x6{left:791.069987px;}
@media print{
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.lsc{letter-spacing:-0.253333pt;}
.lsb{letter-spacing:-0.164267pt;}
.ls6{letter-spacing:-0.054933pt;}
.ls7{letter-spacing:-0.041600pt;}
.ls4{letter-spacing:-0.034560pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.104320pt;}
.ls8{letter-spacing:0.142933pt;}
.ls3{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.277120pt;}
.ls1{letter-spacing:51.792640pt;}
.ws3{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.589440pt;}
.ws4{word-spacing:-10.582400pt;}
.ws2{word-spacing:-8.576000pt;}
.ws5{word-spacing:-8.411733pt;}
.ws6{word-spacing:-8.322667pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-3.083520pt;}
._3{margin-left:-2.177920pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.064960pt;}
._2{width:2.372053pt;}
._7{width:3.290240pt;}
._8{width:4.249600pt;}
._4{width:5.152640pt;}
._9{width:6.126720pt;}
._5{width:7.026133pt;}
._a{width:8.127360pt;}
._b{width:13.439360pt;}
.fs0{font-size:5.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:66.560000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.480000pt;}
.y2c{bottom:2.880000pt;}
.y7{bottom:14.080000pt;}
.y3{bottom:23.200000pt;}
.y2b{bottom:24.800000pt;}
.y6{bottom:27.520000pt;}
.ya6{bottom:92.672000pt;}
.y5b{bottom:96.672000pt;}
.yd5{bottom:101.152000pt;}
.ya5{bottom:110.752000pt;}
.yd4{bottom:114.592000pt;}
.y2a{bottom:115.072000pt;}
.y5a{bottom:115.232000pt;}
.y81{bottom:124.672000pt;}
.yd3{bottom:128.032000pt;}
.y29{bottom:133.466667pt;}
.y59{bottom:133.946667pt;}
.ya4{bottom:139.866667pt;}
.yd2{bottom:141.466667pt;}
.y80{bottom:143.386667pt;}
.y28{bottom:151.866667pt;}
.y58{bottom:152.666667pt;}
.ya3{bottom:157.946667pt;}
.yd1{bottom:158.906667pt;}
.y7f{bottom:161.946667pt;}
.y27{bottom:168.986667pt;}
.y57{bottom:171.226667pt;}
.ya2{bottom:176.026667pt;}
.yd0{bottom:177.626667pt;}
.y7e{bottom:180.666667pt;}
.y26{bottom:187.706667pt;}
.y56{bottom:189.946667pt;}
.ya1{bottom:193.146667pt;}
.ycf{bottom:196.346667pt;}
.y7d{bottom:199.386667pt;}
.y25{bottom:206.266667pt;}
.ya0{bottom:211.706667pt;}
.yce{bottom:215.066667pt;}
.y55{bottom:224.666667pt;}
.y24{bottom:224.986667pt;}
.ycd{bottom:233.626667pt;}
.y7c{bottom:233.946667pt;}
.y9f{bottom:242.426667pt;}
.y54{bottom:243.226667pt;}
.y23{bottom:243.706667pt;}
.ycc{bottom:252.346667pt;}
.y7b{bottom:252.666667pt;}
.y9e{bottom:260.506667pt;}
.y53{bottom:261.946667pt;}
.y22{bottom:262.266667pt;}
.ycb{bottom:271.066667pt;}
.y7a{bottom:271.386667pt;}
.y9d{bottom:278.586667pt;}
.y52{bottom:280.666667pt;}
.y21{bottom:280.986667pt;}
.yca{bottom:289.626667pt;}
.y79{bottom:289.946667pt;}
.y9c{bottom:296.546667pt;}
.y51{bottom:299.266667pt;}
.y20{bottom:299.746667pt;}
.yc9{bottom:308.386667pt;}
.y78{bottom:308.706667pt;}
.y50{bottom:317.986667pt;}
.y1f{bottom:318.306667pt;}
.y9b{bottom:325.666667pt;}
.yc8{bottom:327.106667pt;}
.y77{bottom:327.426667pt;}
.y4f{bottom:336.706667pt;}
.y1e{bottom:337.026667pt;}
.y9a{bottom:343.746667pt;}
.yc7{bottom:345.666667pt;}
.y76{bottom:345.986667pt;}
.y4e{bottom:355.266667pt;}
.y1d{bottom:355.746667pt;}
.y99{bottom:361.826667pt;}
.yc6{bottom:364.386667pt;}
.y75{bottom:364.706667pt;}
.y4d{bottom:373.986667pt;}
.y1c{bottom:374.306667pt;}
.y98{bottom:378.946667pt;}
.yc5{bottom:383.106667pt;}
.y74{bottom:383.426667pt;}
.y4c{bottom:392.706667pt;}
.y1b{bottom:393.026667pt;}
.y97{bottom:397.666667pt;}
.yc4{bottom:401.666667pt;}
.y73{bottom:401.986667pt;}
.y4b{bottom:411.266667pt;}
.y1a{bottom:411.746667pt;}
.y96{bottom:416.226667pt;}
.yc3{bottom:420.386667pt;}
.y72{bottom:420.706667pt;}
.y4a{bottom:429.986667pt;}
.y19{bottom:430.306667pt;}
.yc2{bottom:439.106667pt;}
.y71{bottom:439.426667pt;}
.y49{bottom:448.706667pt;}
.y95{bottom:450.946667pt;}
.yc1{bottom:457.666667pt;}
.y70{bottom:457.986667pt;}
.y18{bottom:465.026667pt;}
.y48{bottom:467.266667pt;}
.y94{bottom:469.666667pt;}
.yc0{bottom:476.386667pt;}
.y6f{bottom:476.706667pt;}
.y17{bottom:483.746667pt;}
.y47{bottom:485.986667pt;}
.y93{bottom:489.506667pt;}
.ybf{bottom:495.106667pt;}
.y6e{bottom:495.426667pt;}
.y16{bottom:502.306667pt;}
.y46{bottom:504.706667pt;}
.y92{bottom:507.906667pt;}
.ybe{bottom:513.666667pt;}
.y6d{bottom:513.986667pt;}
.y15{bottom:521.026667pt;}
.y45{bottom:523.266667pt;}
.y91{bottom:525.986667pt;}
.ybd{bottom:532.413333pt;}
.y6c{bottom:532.733333pt;}
.y14{bottom:539.773333pt;}
.y90{bottom:544.413333pt;}
.ybc{bottom:551.133333pt;}
.y44{bottom:558.013333pt;}
.y13{bottom:558.493333pt;}
.y8f{bottom:561.533333pt;}
.y6b{bottom:563.293333pt;}
.ybb{bottom:569.693333pt;}
.y43{bottom:576.733333pt;}
.y6a{bottom:581.373333pt;}
.yba{bottom:588.413333pt;}
.y12{bottom:594.173333pt;}
.y42{bottom:595.293333pt;}
.y8e{bottom:597.373333pt;}
.y69{bottom:599.453333pt;}
.yb9{bottom:607.133333pt;}
.y41{bottom:614.013333pt;}
.y8d{bottom:615.773333pt;}
.y68{bottom:617.533333pt;}
.yb8{bottom:625.693333pt;}
.y40{bottom:632.733333pt;}
.y8c{bottom:634.173333pt;}
.y67{bottom:635.933333pt;}
.y11{bottom:640.573333pt;}
.yb7{bottom:644.413333pt;}
.y3f{bottom:651.293333pt;}
.y8b{bottom:652.253333pt;}
.y66{bottom:654.013333pt;}
.y10{bottom:668.093333pt;}
.y8a{bottom:669.373333pt;}
.y3e{bottom:670.013333pt;}
.y65{bottom:672.093333pt;}
.yb6{bottom:679.133333pt;}
.yf{bottom:684.893333pt;}
.y89{bottom:688.093333pt;}
.y3d{bottom:688.733333pt;}
.y64{bottom:690.173333pt;}
.yb5{bottom:697.693333pt;}
.y3c{bottom:707.293333pt;}
.y88{bottom:707.933333pt;}
.ye{bottom:712.413333pt;}
.yb4{bottom:716.413333pt;}
.y3b{bottom:726.013333pt;}
.y87{bottom:726.333333pt;}
.yd{bottom:740.253333pt;}
.y86{bottom:744.413333pt;}
.y3a{bottom:744.733333pt;}
.yb3{bottom:746.973333pt;}
.yc{bottom:757.053333pt;}
.y85{bottom:762.813333pt;}
.y39{bottom:763.293333pt;}
.yb2{bottom:765.053333pt;}
.y84{bottom:781.253333pt;}
.y38{bottom:782.053333pt;}
.yb1{bottom:783.173333pt;}
.yb{bottom:784.453333pt;}
.y83{bottom:799.653333pt;}
.y37{bottom:800.773333pt;}
.yb0{bottom:801.253333pt;}
.y82{bottom:816.773333pt;}
.y36{bottom:819.333333pt;}
.ya{bottom:831.013333pt;}
.y63{bottom:835.333333pt;}
.y35{bottom:838.053333pt;}
.yaf{bottom:848.453333pt;}
.y62{bottom:854.053333pt;}
.y34{bottom:856.773333pt;}
.y9{bottom:861.573333pt;}
.yae{bottom:866.533333pt;}
.y61{bottom:872.773333pt;}
.y33{bottom:875.333333pt;}
.yad{bottom:884.613333pt;}
.y8{bottom:890.373333pt;}
.y60{bottom:891.333333pt;}
.y32{bottom:894.053333pt;}
.yac{bottom:902.693333pt;}
.y5f{bottom:910.053333pt;}
.y31{bottom:912.773333pt;}
.yab{bottom:919.813333pt;}
.y5e{bottom:928.773333pt;}
.y30{bottom:931.333333pt;}
.yaa{bottom:938.373333pt;}
.y5{bottom:941.733333pt;}
.y5d{bottom:947.333333pt;}
.y2f{bottom:950.053333pt;}
.y5c{bottom:966.053333pt;}
.ya9{bottom:969.093333pt;}
.y2e{bottom:984.773333pt;}
.ya8{bottom:987.173333pt;}
.y2d{bottom:1003.333333pt;}
.ya7{bottom:1005.280000pt;}
.y4{bottom:1026.400000pt;}
.y1{bottom:1039.520000pt;}
.h3{height:4.474880pt;}
.hb{height:15.520000pt;}
.h6{height:37.477120pt;}
.ha{height:40.037120pt;}
.h9{height:45.470720pt;}
.h5{height:46.426880pt;}
.h2{height:56.800000pt;}
.h4{height:56.975360pt;}
.h8{height:64.097280pt;}
.h7{height:82.176000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:65.440000pt;}
.w2{width:189.786667pt;}
.w3{width:262.786667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:24.960000pt;}
.x4{left:27.200000pt;}
.x9{left:40.640000pt;}
.x5{left:90.751988pt;}
.x7{left:114.751988pt;}
.xa{left:138.746655pt;}
.x2{left:164.346667pt;}
.x3{left:215.386667pt;}
.x8{left:637.413333pt;}
.x6{left:703.173322pt;}
}




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