
    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_ccf31e38ac31396115f7662d.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_cc6212ed6f7021d56895e746.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a9b4d0135cbb232ae6f17792.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_1acf2c0c749646df2194f812.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_b269874099c0f6773c1d9a3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_43f84b78a04e77a25ca23795.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d596016f4dd18e94a1dadb42.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_13ba25df88ce274ea8e055be.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.079200px;}
.ls12{letter-spacing:-0.064800px;}
.ls1a{letter-spacing:-0.057600px;}
.lsd{letter-spacing:-0.054108px;}
.ls1b{letter-spacing:-0.050400px;}
.ls11{letter-spacing:-0.043200px;}
.lsf{letter-spacing:-0.042084px;}
.ls19{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.030060px;}
.ls15{letter-spacing:-0.028800px;}
.ls17{letter-spacing:-0.021600px;}
.ls10{letter-spacing:-0.014400px;}
.ls16{letter-spacing:-0.007200px;}
.lsc{letter-spacing:-0.006012px;}
.lsb{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006588px;}
.ls1f{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.013176px;}
.ls14{letter-spacing:0.014400px;}
.ls1c{letter-spacing:0.021600px;}
.ls9{letter-spacing:0.026352px;}
.ls21{letter-spacing:0.028800px;}
.ls2{letter-spacing:0.032940px;}
.ls1{letter-spacing:0.043200px;}
.ls5{letter-spacing:0.046116px;}
.lsa{letter-spacing:0.059292px;}
.ls18{letter-spacing:0.065880px;}
.ls7{letter-spacing:0.072468px;}
.ls8{letter-spacing:0.092232px;}
.ls4{letter-spacing:0.098820px;}
.ls1e{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.158400px;}
.ls1d{letter-spacing:951.264000px;}
.ls22{letter-spacing:1255.464000px;}
.ls0{letter-spacing:1930.824000px;}
.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;}
}
.ws1{word-spacing:-65.880000px;}
.ws1f{word-spacing:-20.030400px;}
.ws0{word-spacing:-19.994400px;}
.ws2d{word-spacing:-19.987200px;}
.ws13{word-spacing:-0.039528px;}
.ws18{word-spacing:-0.032940px;}
.ws5{word-spacing:-0.030060px;}
.ws3{word-spacing:-0.024048px;}
.ws2c{word-spacing:-0.014400px;}
.ws17{word-spacing:-0.013176px;}
.ws15{word-spacing:-0.006588px;}
.ws2{word-spacing:0.000000px;}
.ws2f{word-spacing:0.007200px;}
.ws6{word-spacing:0.012024px;}
.ws14{word-spacing:0.013176px;}
.ws30{word-spacing:0.014400px;}
.ws31{word-spacing:0.021600px;}
.ws4{word-spacing:0.024048px;}
.ws11{word-spacing:0.026352px;}
.ws19{word-spacing:0.032940px;}
.ws1c{word-spacing:0.036000px;}
.ws12{word-spacing:0.046116px;}
.ws16{word-spacing:0.052704px;}
.ws28{word-spacing:0.086400px;}
.wsc{word-spacing:0.093600px;}
.ws25{word-spacing:0.100800px;}
.ws9{word-spacing:0.115200px;}
.wsd{word-spacing:0.122400px;}
.ws2e{word-spacing:0.129600px;}
.wsa{word-spacing:0.144000px;}
.ws27{word-spacing:0.151200px;}
.ws23{word-spacing:0.158400px;}
.ws24{word-spacing:0.165600px;}
.ws10{word-spacing:0.172800px;}
.wsf{word-spacing:0.180000px;}
.wsb{word-spacing:0.187200px;}
.ws26{word-spacing:0.194400px;}
.wse{word-spacing:0.201600px;}
.ws1b{word-spacing:0.208800px;}
.ws1a{word-spacing:0.216000px;}
.ws7{word-spacing:0.223200px;}
.ws29{word-spacing:0.230400px;}
.ws8{word-spacing:0.237600px;}
.ws1d{word-spacing:0.244800px;}
.ws2a{word-spacing:0.252000px;}
.ws1e{word-spacing:0.280800px;}
.ws2b{word-spacing:0.288000px;}
.ws22{word-spacing:1.576800px;}
.ws21{word-spacing:1.598400px;}
.ws20{word-spacing:1.785600px;}
._0{margin-left:-1.262520px;}
._1{width:1.440000px;}
._2{width:55.734480px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(154,204,0);}
.fc1{color:rgb(255,101,0);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:57.360600px;}
.y7{bottom:77.790600px;}
.y6{bottom:97.770450px;}
.y5{bottom:114.951630px;}
.y4{bottom:132.236130px;}
.y3{bottom:149.430450px;}
.y31{bottom:170.850450px;}
.y5d{bottom:175.170450px;}
.y30{bottom:191.640450px;}
.y5c{bottom:195.870450px;}
.y2f{bottom:212.340450px;}
.y5b{bottom:216.570450px;}
.y2e{bottom:233.040450px;}
.y5a{bottom:237.270450px;}
.y2d{bottom:253.740450px;}
.y59{bottom:257.970450px;}
.y2c{bottom:274.440450px;}
.y58{bottom:278.580450px;}
.y2b{bottom:295.140450px;}
.y57{bottom:299.460450px;}
.y2a{bottom:315.750450px;}
.y56{bottom:319.980450px;}
.y55{bottom:340.770450px;}
.y29{bottom:354.033840px;}
.y54{bottom:361.470450px;}
.y28{bottom:375.906000px;}
.y53{bottom:382.170450px;}
.y27{bottom:397.679340px;}
.y52{bottom:402.870450px;}
.y26{bottom:421.626720px;}
.y51{bottom:423.480450px;}
.y25{bottom:443.762400px;}
.y50{bottom:444.180450px;}
.y7d{bottom:444.450600px;}
.y4f{bottom:464.880450px;}
.y7c{bottom:465.150600px;}
.y24{bottom:465.634560px;}
.y4e{bottom:485.670450px;}
.y7b{bottom:485.850600px;}
.y23{bottom:487.407900px;}
.y4d{bottom:506.370450px;}
.y7a{bottom:506.550600px;}
.y22{bottom:509.280060px;}
.y4c{bottom:527.070450px;}
.y79{bottom:527.250600px;}
.y21{bottom:531.053400px;}
.y4b{bottom:547.770450px;}
.y78{bottom:547.950600px;}
.y20{bottom:552.826740px;}
.y4a{bottom:568.470450px;}
.y77{bottom:568.560600px;}
.y1f{bottom:574.698900px;}
.y49{bottom:589.080450px;}
.y76{bottom:589.350600px;}
.y1e{bottom:597.641610px;}
.y48{bottom:609.870450px;}
.y75{bottom:610.050600px;}
.y1d{bottom:619.414950px;}
.y47{bottom:630.570450px;}
.y74{bottom:630.750600px;}
.y1c{bottom:641.188290px;}
.y46{bottom:651.270450px;}
.y73{bottom:651.450600px;}
.y1b{bottom:663.060450px;}
.y72{bottom:672.150600px;}
.y1a{bottom:683.400450px;}
.y45{bottom:692.670450px;}
.y71{bottom:692.850600px;}
.y19{bottom:704.100450px;}
.y44{bottom:713.370450px;}
.y70{bottom:713.460600px;}
.y18{bottom:724.890450px;}
.y43{bottom:734.070450px;}
.y6f{bottom:734.250600px;}
.y17{bottom:745.590450px;}
.y42{bottom:754.770450px;}
.y6e{bottom:754.950600px;}
.y16{bottom:766.290450px;}
.y41{bottom:775.470450px;}
.y6d{bottom:775.650600px;}
.y15{bottom:786.990450px;}
.y40{bottom:796.170450px;}
.y6c{bottom:796.350600px;}
.y14{bottom:807.600450px;}
.y3f{bottom:816.870450px;}
.y6b{bottom:817.050600px;}
.y13{bottom:828.390600px;}
.y3e{bottom:837.660450px;}
.y6a{bottom:837.660600px;}
.y12{bottom:849.090600px;}
.y3d{bottom:858.270450px;}
.y69{bottom:858.360600px;}
.y11{bottom:869.790600px;}
.y3c{bottom:878.970450px;}
.y68{bottom:878.970600px;}
.y10{bottom:890.490600px;}
.y3b{bottom:899.670450px;}
.y67{bottom:899.670600px;}
.yf{bottom:911.190600px;}
.y3a{bottom:920.370450px;}
.y66{bottom:920.460600px;}
.ye{bottom:931.800600px;}
.y39{bottom:941.070450px;}
.y65{bottom:941.160600px;}
.yd{bottom:952.500600px;}
.y38{bottom:961.680450px;}
.y64{bottom:961.860600px;}
.y37{bottom:982.380450px;}
.y63{bottom:982.560600px;}
.yc{bottom:993.900600px;}
.y36{bottom:1003.170450px;}
.y62{bottom:1003.260600px;}
.yb{bottom:1021.980600px;}
.y35{bottom:1023.870450px;}
.y61{bottom:1023.960600px;}
.y34{bottom:1044.570450px;}
.y60{bottom:1044.570600px;}
.ya{bottom:1050.240600px;}
.y33{bottom:1065.270600px;}
.y5f{bottom:1065.450600px;}
.y9{bottom:1078.410600px;}
.y32{bottom:1085.970600px;}
.y5e{bottom:1086.150600px;}
.y2{bottom:1106.850450px;}
.y1{bottom:1123.410450px;}
.h6{height:43.909277px;}
.h2{height:62.703281px;}
.h5{height:68.710781px;}
.h1{height:70.664062px;}
.h7{height:72.562500px;}
.h4{height:75.093750px;}
.h3{height:75.129630px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x5{left:147.335940px;}
.xc{left:154.620000px;}
.xd{left:181.614330px;}
.x6{left:218.700000px;}
.x3{left:234.540000px;}
.x9{left:257.490000px;}
.xb{left:340.020000px;}
.xa{left:354.510000px;}
.x7{left:378.000000px;}
.x8{left:407.520000px;}
.x4{left:446.493060px;}
.x1{left:539.730000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.070400pt;}
.ls12{letter-spacing:-0.057600pt;}
.ls1a{letter-spacing:-0.051200pt;}
.lsd{letter-spacing:-0.048096pt;}
.ls1b{letter-spacing:-0.044800pt;}
.ls11{letter-spacing:-0.038400pt;}
.lsf{letter-spacing:-0.037408pt;}
.ls19{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.026720pt;}
.ls15{letter-spacing:-0.025600pt;}
.ls17{letter-spacing:-0.019200pt;}
.ls10{letter-spacing:-0.012800pt;}
.ls16{letter-spacing:-0.006400pt;}
.lsc{letter-spacing:-0.005344pt;}
.lsb{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005856pt;}
.ls1f{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.011712pt;}
.ls14{letter-spacing:0.012800pt;}
.ls1c{letter-spacing:0.019200pt;}
.ls9{letter-spacing:0.023424pt;}
.ls21{letter-spacing:0.025600pt;}
.ls2{letter-spacing:0.029280pt;}
.ls1{letter-spacing:0.038400pt;}
.ls5{letter-spacing:0.040992pt;}
.lsa{letter-spacing:0.052704pt;}
.ls18{letter-spacing:0.058560pt;}
.ls7{letter-spacing:0.064416pt;}
.ls8{letter-spacing:0.081984pt;}
.ls4{letter-spacing:0.087840pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.140800pt;}
.ls1d{letter-spacing:845.568000pt;}
.ls22{letter-spacing:1115.968000pt;}
.ls0{letter-spacing:1716.288000pt;}
.ws1{word-spacing:-58.560000pt;}
.ws1f{word-spacing:-17.804800pt;}
.ws0{word-spacing:-17.772800pt;}
.ws2d{word-spacing:-17.766400pt;}
.ws13{word-spacing:-0.035136pt;}
.ws18{word-spacing:-0.029280pt;}
.ws5{word-spacing:-0.026720pt;}
.ws3{word-spacing:-0.021376pt;}
.ws2c{word-spacing:-0.012800pt;}
.ws17{word-spacing:-0.011712pt;}
.ws15{word-spacing:-0.005856pt;}
.ws2{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.006400pt;}
.ws6{word-spacing:0.010688pt;}
.ws14{word-spacing:0.011712pt;}
.ws30{word-spacing:0.012800pt;}
.ws31{word-spacing:0.019200pt;}
.ws4{word-spacing:0.021376pt;}
.ws11{word-spacing:0.023424pt;}
.ws19{word-spacing:0.029280pt;}
.ws1c{word-spacing:0.032000pt;}
.ws12{word-spacing:0.040992pt;}
.ws16{word-spacing:0.046848pt;}
.ws28{word-spacing:0.076800pt;}
.wsc{word-spacing:0.083200pt;}
.ws25{word-spacing:0.089600pt;}
.ws9{word-spacing:0.102400pt;}
.wsd{word-spacing:0.108800pt;}
.ws2e{word-spacing:0.115200pt;}
.wsa{word-spacing:0.128000pt;}
.ws27{word-spacing:0.134400pt;}
.ws23{word-spacing:0.140800pt;}
.ws24{word-spacing:0.147200pt;}
.ws10{word-spacing:0.153600pt;}
.wsf{word-spacing:0.160000pt;}
.wsb{word-spacing:0.166400pt;}
.ws26{word-spacing:0.172800pt;}
.wse{word-spacing:0.179200pt;}
.ws1b{word-spacing:0.185600pt;}
.ws1a{word-spacing:0.192000pt;}
.ws7{word-spacing:0.198400pt;}
.ws29{word-spacing:0.204800pt;}
.ws8{word-spacing:0.211200pt;}
.ws1d{word-spacing:0.217600pt;}
.ws2a{word-spacing:0.224000pt;}
.ws1e{word-spacing:0.249600pt;}
.ws2b{word-spacing:0.256000pt;}
.ws22{word-spacing:1.401600pt;}
.ws21{word-spacing:1.420800pt;}
.ws20{word-spacing:1.587200pt;}
._0{margin-left:-1.122240pt;}
._1{width:1.280000pt;}
._2{width:49.541760pt;}
.fs1{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:50.987200pt;}
.y7{bottom:69.147200pt;}
.y6{bottom:86.907067pt;}
.y5{bottom:102.179227pt;}
.y4{bottom:117.543227pt;}
.y3{bottom:132.827067pt;}
.y31{bottom:151.867067pt;}
.y5d{bottom:155.707067pt;}
.y30{bottom:170.347067pt;}
.y5c{bottom:174.107067pt;}
.y2f{bottom:188.747067pt;}
.y5b{bottom:192.507067pt;}
.y2e{bottom:207.147067pt;}
.y5a{bottom:210.907067pt;}
.y2d{bottom:225.547067pt;}
.y59{bottom:229.307067pt;}
.y2c{bottom:243.947067pt;}
.y58{bottom:247.627067pt;}
.y2b{bottom:262.347067pt;}
.y57{bottom:266.187067pt;}
.y2a{bottom:280.667067pt;}
.y56{bottom:284.427067pt;}
.y55{bottom:302.907067pt;}
.y29{bottom:314.696747pt;}
.y54{bottom:321.307067pt;}
.y28{bottom:334.138667pt;}
.y53{bottom:339.707067pt;}
.y27{bottom:353.492747pt;}
.y52{bottom:358.107067pt;}
.y26{bottom:374.779307pt;}
.y51{bottom:376.427067pt;}
.y25{bottom:394.455467pt;}
.y50{bottom:394.827067pt;}
.y7d{bottom:395.067200pt;}
.y4f{bottom:413.227067pt;}
.y7c{bottom:413.467200pt;}
.y24{bottom:413.897387pt;}
.y4e{bottom:431.707067pt;}
.y7b{bottom:431.867200pt;}
.y23{bottom:433.251467pt;}
.y4d{bottom:450.107067pt;}
.y7a{bottom:450.267200pt;}
.y22{bottom:452.693387pt;}
.y4c{bottom:468.507067pt;}
.y79{bottom:468.667200pt;}
.y21{bottom:472.047467pt;}
.y4b{bottom:486.907067pt;}
.y78{bottom:487.067200pt;}
.y20{bottom:491.401547pt;}
.y4a{bottom:505.307067pt;}
.y77{bottom:505.387200pt;}
.y1f{bottom:510.843467pt;}
.y49{bottom:523.627067pt;}
.y76{bottom:523.867200pt;}
.y1e{bottom:531.236987pt;}
.y48{bottom:542.107067pt;}
.y75{bottom:542.267200pt;}
.y1d{bottom:550.591067pt;}
.y47{bottom:560.507067pt;}
.y74{bottom:560.667200pt;}
.y1c{bottom:569.945147pt;}
.y46{bottom:578.907067pt;}
.y73{bottom:579.067200pt;}
.y1b{bottom:589.387067pt;}
.y72{bottom:597.467200pt;}
.y1a{bottom:607.467067pt;}
.y45{bottom:615.707067pt;}
.y71{bottom:615.867200pt;}
.y19{bottom:625.867067pt;}
.y44{bottom:634.107067pt;}
.y70{bottom:634.187200pt;}
.y18{bottom:644.347067pt;}
.y43{bottom:652.507067pt;}
.y6f{bottom:652.667200pt;}
.y17{bottom:662.747067pt;}
.y42{bottom:670.907067pt;}
.y6e{bottom:671.067200pt;}
.y16{bottom:681.147067pt;}
.y41{bottom:689.307067pt;}
.y6d{bottom:689.467200pt;}
.y15{bottom:699.547067pt;}
.y40{bottom:707.707067pt;}
.y6c{bottom:707.867200pt;}
.y14{bottom:717.867067pt;}
.y3f{bottom:726.107067pt;}
.y6b{bottom:726.267200pt;}
.y13{bottom:736.347200pt;}
.y3e{bottom:744.587067pt;}
.y6a{bottom:744.587200pt;}
.y12{bottom:754.747200pt;}
.y3d{bottom:762.907067pt;}
.y69{bottom:762.987200pt;}
.y11{bottom:773.147200pt;}
.y3c{bottom:781.307067pt;}
.y68{bottom:781.307200pt;}
.y10{bottom:791.547200pt;}
.y3b{bottom:799.707067pt;}
.y67{bottom:799.707200pt;}
.yf{bottom:809.947200pt;}
.y3a{bottom:818.107067pt;}
.y66{bottom:818.187200pt;}
.ye{bottom:828.267200pt;}
.y39{bottom:836.507067pt;}
.y65{bottom:836.587200pt;}
.yd{bottom:846.667200pt;}
.y38{bottom:854.827067pt;}
.y64{bottom:854.987200pt;}
.y37{bottom:873.227067pt;}
.y63{bottom:873.387200pt;}
.yc{bottom:883.467200pt;}
.y36{bottom:891.707067pt;}
.y62{bottom:891.787200pt;}
.yb{bottom:908.427200pt;}
.y35{bottom:910.107067pt;}
.y61{bottom:910.187200pt;}
.y34{bottom:928.507067pt;}
.y60{bottom:928.507200pt;}
.ya{bottom:933.547200pt;}
.y33{bottom:946.907200pt;}
.y5f{bottom:947.067200pt;}
.y9{bottom:958.587200pt;}
.y32{bottom:965.307200pt;}
.y5e{bottom:965.467200pt;}
.y2{bottom:983.867067pt;}
.y1{bottom:998.587067pt;}
.h6{height:39.030469pt;}
.h2{height:55.736250pt;}
.h5{height:61.076250pt;}
.h1{height:62.812500pt;}
.h7{height:64.500000pt;}
.h4{height:66.750000pt;}
.h3{height:66.781893pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x5{left:130.965280pt;}
.xc{left:137.440000pt;}
.xd{left:161.434960pt;}
.x6{left:194.400000pt;}
.x3{left:208.480000pt;}
.x9{left:228.880000pt;}
.xb{left:302.240000pt;}
.xa{left:315.120000pt;}
.x7{left:336.000000pt;}
.x8{left:362.240000pt;}
.x4{left:396.882720pt;}
.x1{left:479.760000pt;}
}




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