
    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_a0131a0f9f7d4d33474e3463.woff')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_72cf4299ef336b86b01d9e75.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d9fe6969d20bfaa260b01cb8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_3fc1cac490cbcb3ebcc2cf06.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_c4bdefdb60fabdddcb73c79b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.873535;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_fe8d962ac48f58c0c6c81b97.woff')format("woff");}.ff6{font-family:ff6;line-height:0.873535;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_bb2119b25f3107adfbadd207.woff')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-6.379200px;}
.ls2e{letter-spacing:-3.556800px;}
.ls30{letter-spacing:-2.793600px;}
.ls2d{letter-spacing:-2.664000px;}
.ls23{letter-spacing:-2.455200px;}
.ls19{letter-spacing:-2.347200px;}
.ls31{letter-spacing:-1.468800px;}
.ls1b{letter-spacing:-1.267200px;}
.ls17{letter-spacing:-1.010592px;}
.ls14{letter-spacing:-0.979200px;}
.ls10{letter-spacing:-0.810144px;}
.ls24{letter-spacing:-0.777600px;}
.ls16{letter-spacing:-0.691200px;}
.ls13{letter-spacing:-0.619200px;}
.ls2c{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.417600px;}
.ls2f{letter-spacing:-0.352800px;}
.lsc{letter-spacing:-0.289440px;}
.ls1a{letter-spacing:-0.036000px;}
.ls15{letter-spacing:-0.028800px;}
.ls12{letter-spacing:-0.014400px;}
.lse{letter-spacing:-0.007200px;}
.lsd{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.003456px;}
.ls1f{letter-spacing:0.004320px;}
.ls26{letter-spacing:0.005328px;}
.lsa{letter-spacing:0.005760px;}
.ls1{letter-spacing:0.006336px;}
.ls2{letter-spacing:0.006480px;}
.ls4{letter-spacing:0.007200px;}
.ls28{letter-spacing:0.010080px;}
.ls1e{letter-spacing:0.010944px;}
.ls9{letter-spacing:0.011520px;}
.ls6{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.021600px;}
.ls18{letter-spacing:0.028800px;}
.ls2a{letter-spacing:0.031824px;}
.ls3{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.043200px;}
.ls2b{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.115200px;}
.lsf{letter-spacing:0.200448px;}
.ls25{letter-spacing:0.217152px;}
.ls11{letter-spacing:0.225504px;}
.ls8{letter-spacing:0.250560px;}
.ls27{letter-spacing:1.173600px;}
.ls29{letter-spacing:5.561280px;}
.ls5{letter-spacing:6.219216px;}
.ls7{letter-spacing:6.219360px;}
.ls21{letter-spacing:52.124544px;}
.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:-19.126080px;}
.ws0{word-spacing:-19.101024px;}
.ws9{word-spacing:-17.864928px;}
.ws19{word-spacing:-16.336800px;}
.wsf{word-spacing:-16.315200px;}
.ws3{word-spacing:-16.308000px;}
.ws13{word-spacing:-16.300800px;}
.ws7{word-spacing:-16.293600px;}
.ws8{word-spacing:-16.286400px;}
.ws6{word-spacing:-16.279200px;}
.wsc{word-spacing:-16.272000px;}
.ws12{word-spacing:-16.264800px;}
.ws2{word-spacing:-16.257600px;}
.ws5{word-spacing:-16.243200px;}
.ws18{word-spacing:-16.236000px;}
.ws16{word-spacing:-15.919200px;}
.wsb{word-spacing:-15.854400px;}
.ws14{word-spacing:-15.696000px;}
.ws11{word-spacing:-15.580800px;}
.ws10{word-spacing:-15.494400px;}
.ws4{word-spacing:-15.292800px;}
.wsa{word-spacing:-15.004800px;}
.ws1a{word-spacing:-14.803200px;}
.ws17{word-spacing:-13.478400px;}
.ws15{word-spacing:-12.715200px;}
.wse{word-spacing:-9.892800px;}
.wsd{word-spacing:0.000000px;}
._6{margin-left:-6.508800px;}
._8{margin-left:-5.299632px;}
._3{margin-left:-3.946752px;}
._1{margin-left:-2.603520px;}
._0{margin-left:-1.061280px;}
._2{width:1.002240px;}
._4{width:2.583360px;}
._7{width:4.437072px;}
._5{width:6.399936px;}
._9{width:7.442928px;}
._a{width:8.977968px;}
._c{width:14.976000px;}
._b{width:17.658720px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:95.040000px;}
.y58{bottom:104.760000px;}
.y2b{bottom:117.000000px;}
.y57{bottom:126.720000px;}
.y2a{bottom:138.960000px;}
.y56{bottom:157.680000px;}
.y29{bottom:160.920000px;}
.y28{bottom:182.880000px;}
.y55{bottom:188.640000px;}
.y27{bottom:204.840000px;}
.y7d{bottom:213.120000px;}
.y54{bottom:219.600000px;}
.y26{bottom:226.800000px;}
.y7c{bottom:235.080000px;}
.y53{bottom:241.560000px;}
.y7b{bottom:257.040000px;}
.y25{bottom:257.760000px;}
.y52{bottom:263.520000px;}
.y7a{bottom:279.000000px;}
.y51{bottom:285.480000px;}
.y24{bottom:288.720000px;}
.y79{bottom:300.960000px;}
.y50{bottom:307.440000px;}
.y23{bottom:319.680000px;}
.y78{bottom:322.920000px;}
.y4f{bottom:329.400000px;}
.y22{bottom:341.640000px;}
.y77{bottom:351.000000px;}
.y4e{bottom:351.360000px;}
.y76{bottom:362.880000px;}
.y21{bottom:363.600000px;}
.y4d{bottom:373.320000px;}
.y75{bottom:384.840000px;}
.y20{bottom:385.560000px;}
.y4c{bottom:405.000000px;}
.y74{bottom:415.800000px;}
.y1f{bottom:417.240000px;}
.y4b{bottom:436.320000px;}
.y73{bottom:446.760000px;}
.y1e{bottom:448.560000px;}
.y4a{bottom:457.200000px;}
.y72{bottom:468.720000px;}
.y1d{bottom:469.440000px;}
.y49{bottom:479.160000px;}
.y71{bottom:490.680000px;}
.y1c{bottom:491.400000px;}
.y48{bottom:501.120000px;}
.y70{bottom:513.000000px;}
.y1b{bottom:513.360000px;}
.y47{bottom:523.080000px;}
.y6f{bottom:534.960000px;}
.y1a{bottom:535.320000px;}
.y46{bottom:545.040000px;}
.y6e{bottom:556.920000px;}
.y19{bottom:557.280000px;}
.y45{bottom:567.000000px;}
.y18{bottom:579.240000px;}
.y6d{bottom:587.880000px;}
.y44{bottom:588.960000px;}
.y17{bottom:601.200000px;}
.y43{bottom:610.920000px;}
.y6c{bottom:618.840000px;}
.y16{bottom:623.160000px;}
.y42{bottom:632.880000px;}
.y6b{bottom:640.800000px;}
.y15{bottom:654.120000px;}
.y41{bottom:663.840000px;}
.y6a{bottom:668.880000px;}
.y14{bottom:676.080000px;}
.y69{bottom:689.760000px;}
.y40{bottom:694.800000px;}
.y13{bottom:698.040000px;}
.y68{bottom:711.720000px;}
.y3f{bottom:716.760000px;}
.y12{bottom:720.000000px;}
.y67{bottom:733.680000px;}
.y3e{bottom:738.720000px;}
.y11{bottom:741.960000px;}
.y66{bottom:755.640000px;}
.y3d{bottom:760.680000px;}
.y10{bottom:772.920000px;}
.y3c{bottom:782.640000px;}
.y65{bottom:786.600000px;}
.yf{bottom:794.880000px;}
.y3b{bottom:804.600000px;}
.ye{bottom:816.840000px;}
.y64{bottom:817.560000px;}
.y3a{bottom:826.560000px;}
.yd{bottom:838.800000px;}
.y63{bottom:839.520000px;}
.y39{bottom:848.520000px;}
.y62{bottom:861.480000px;}
.yc{bottom:867.240000px;}
.y38{bottom:870.480000px;}
.y61{bottom:883.440000px;}
.yb{bottom:888.120000px;}
.y37{bottom:901.440000px;}
.y60{bottom:914.400000px;}
.ya{bottom:916.200000px;}
.y36{bottom:932.400000px;}
.y9{bottom:934.560000px;}
.y5f{bottom:945.720000px;}
.y35{bottom:954.720000px;}
.y8{bottom:955.440000px;}
.y5e{bottom:967.680000px;}
.y34{bottom:976.680000px;}
.y7{bottom:983.520000px;}
.y5d{bottom:989.640000px;}
.y33{bottom:998.640000px;}
.y6{bottom:1005.120000px;}
.y5c{bottom:1011.600000px;}
.y32{bottom:1020.600000px;}
.y5{bottom:1031.400000px;}
.y5b{bottom:1033.560000px;}
.y31{bottom:1042.560000px;}
.y5a{bottom:1055.520000px;}
.y4{bottom:1062.000000px;}
.y30{bottom:1064.520000px;}
.y3{bottom:1082.880000px;}
.y2f{bottom:1086.480000px;}
.y2e{bottom:1108.440000px;}
.y2{bottom:1110.960000px;}
.y59{bottom:1117.440000px;}
.y1{bottom:1134.000000px;}
.y2d{bottom:1139.400000px;}
.h3{height:20.155078px;}
.h6{height:50.062500px;}
.h4{height:57.093750px;}
.h5{height:58.072500px;}
.h2{height:65.953125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:106.200072px;}
.x8{left:133.200072px;}
.x6{left:149.756112px;}
.x9{left:160.200072px;}
.x4{left:179.788320px;}
.x3{left:273.457764px;}
.x5{left:332.007588px;}
.x1{left:374.517360px;}
.x2{left:446.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-5.670400pt;}
.ls2e{letter-spacing:-3.161600pt;}
.ls30{letter-spacing:-2.483200pt;}
.ls2d{letter-spacing:-2.368000pt;}
.ls23{letter-spacing:-2.182400pt;}
.ls19{letter-spacing:-2.086400pt;}
.ls31{letter-spacing:-1.305600pt;}
.ls1b{letter-spacing:-1.126400pt;}
.ls17{letter-spacing:-0.898304pt;}
.ls14{letter-spacing:-0.870400pt;}
.ls10{letter-spacing:-0.720128pt;}
.ls24{letter-spacing:-0.691200pt;}
.ls16{letter-spacing:-0.614400pt;}
.ls13{letter-spacing:-0.550400pt;}
.ls2c{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.371200pt;}
.ls2f{letter-spacing:-0.313600pt;}
.lsc{letter-spacing:-0.257280pt;}
.ls1a{letter-spacing:-0.032000pt;}
.ls15{letter-spacing:-0.025600pt;}
.ls12{letter-spacing:-0.012800pt;}
.lse{letter-spacing:-0.006400pt;}
.lsd{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.003072pt;}
.ls1f{letter-spacing:0.003840pt;}
.ls26{letter-spacing:0.004736pt;}
.lsa{letter-spacing:0.005120pt;}
.ls1{letter-spacing:0.005632pt;}
.ls2{letter-spacing:0.005760pt;}
.ls4{letter-spacing:0.006400pt;}
.ls28{letter-spacing:0.008960pt;}
.ls1e{letter-spacing:0.009728pt;}
.ls9{letter-spacing:0.010240pt;}
.ls6{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.019200pt;}
.ls18{letter-spacing:0.025600pt;}
.ls2a{letter-spacing:0.028288pt;}
.ls3{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.038400pt;}
.ls2b{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.102400pt;}
.lsf{letter-spacing:0.178176pt;}
.ls25{letter-spacing:0.193024pt;}
.ls11{letter-spacing:0.200448pt;}
.ls8{letter-spacing:0.222720pt;}
.ls27{letter-spacing:1.043200pt;}
.ls29{letter-spacing:4.943360pt;}
.ls5{letter-spacing:5.528192pt;}
.ls7{letter-spacing:5.528320pt;}
.ls21{letter-spacing:46.332928pt;}
.ws1{word-spacing:-17.000960pt;}
.ws0{word-spacing:-16.978688pt;}
.ws9{word-spacing:-15.879936pt;}
.ws19{word-spacing:-14.521600pt;}
.wsf{word-spacing:-14.502400pt;}
.ws3{word-spacing:-14.496000pt;}
.ws13{word-spacing:-14.489600pt;}
.ws7{word-spacing:-14.483200pt;}
.ws8{word-spacing:-14.476800pt;}
.ws6{word-spacing:-14.470400pt;}
.wsc{word-spacing:-14.464000pt;}
.ws12{word-spacing:-14.457600pt;}
.ws2{word-spacing:-14.451200pt;}
.ws5{word-spacing:-14.438400pt;}
.ws18{word-spacing:-14.432000pt;}
.ws16{word-spacing:-14.150400pt;}
.wsb{word-spacing:-14.092800pt;}
.ws14{word-spacing:-13.952000pt;}
.ws11{word-spacing:-13.849600pt;}
.ws10{word-spacing:-13.772800pt;}
.ws4{word-spacing:-13.593600pt;}
.wsa{word-spacing:-13.337600pt;}
.ws1a{word-spacing:-13.158400pt;}
.ws17{word-spacing:-11.980800pt;}
.ws15{word-spacing:-11.302400pt;}
.wse{word-spacing:-8.793600pt;}
.wsd{word-spacing:0.000000pt;}
._6{margin-left:-5.785600pt;}
._8{margin-left:-4.710784pt;}
._3{margin-left:-3.508224pt;}
._1{margin-left:-2.314240pt;}
._0{margin-left:-0.943360pt;}
._2{width:0.890880pt;}
._4{width:2.296320pt;}
._7{width:3.944064pt;}
._5{width:5.688832pt;}
._9{width:6.615936pt;}
._a{width:7.980416pt;}
._c{width:13.312000pt;}
._b{width:15.696640pt;}
.fs1{font-size:26.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:84.480000pt;}
.y58{bottom:93.120000pt;}
.y2b{bottom:104.000000pt;}
.y57{bottom:112.640000pt;}
.y2a{bottom:123.520000pt;}
.y56{bottom:140.160000pt;}
.y29{bottom:143.040000pt;}
.y28{bottom:162.560000pt;}
.y55{bottom:167.680000pt;}
.y27{bottom:182.080000pt;}
.y7d{bottom:189.440000pt;}
.y54{bottom:195.200000pt;}
.y26{bottom:201.600000pt;}
.y7c{bottom:208.960000pt;}
.y53{bottom:214.720000pt;}
.y7b{bottom:228.480000pt;}
.y25{bottom:229.120000pt;}
.y52{bottom:234.240000pt;}
.y7a{bottom:248.000000pt;}
.y51{bottom:253.760000pt;}
.y24{bottom:256.640000pt;}
.y79{bottom:267.520000pt;}
.y50{bottom:273.280000pt;}
.y23{bottom:284.160000pt;}
.y78{bottom:287.040000pt;}
.y4f{bottom:292.800000pt;}
.y22{bottom:303.680000pt;}
.y77{bottom:312.000000pt;}
.y4e{bottom:312.320000pt;}
.y76{bottom:322.560000pt;}
.y21{bottom:323.200000pt;}
.y4d{bottom:331.840000pt;}
.y75{bottom:342.080000pt;}
.y20{bottom:342.720000pt;}
.y4c{bottom:360.000000pt;}
.y74{bottom:369.600000pt;}
.y1f{bottom:370.880000pt;}
.y4b{bottom:387.840000pt;}
.y73{bottom:397.120000pt;}
.y1e{bottom:398.720000pt;}
.y4a{bottom:406.400000pt;}
.y72{bottom:416.640000pt;}
.y1d{bottom:417.280000pt;}
.y49{bottom:425.920000pt;}
.y71{bottom:436.160000pt;}
.y1c{bottom:436.800000pt;}
.y48{bottom:445.440000pt;}
.y70{bottom:456.000000pt;}
.y1b{bottom:456.320000pt;}
.y47{bottom:464.960000pt;}
.y6f{bottom:475.520000pt;}
.y1a{bottom:475.840000pt;}
.y46{bottom:484.480000pt;}
.y6e{bottom:495.040000pt;}
.y19{bottom:495.360000pt;}
.y45{bottom:504.000000pt;}
.y18{bottom:514.880000pt;}
.y6d{bottom:522.560000pt;}
.y44{bottom:523.520000pt;}
.y17{bottom:534.400000pt;}
.y43{bottom:543.040000pt;}
.y6c{bottom:550.080000pt;}
.y16{bottom:553.920000pt;}
.y42{bottom:562.560000pt;}
.y6b{bottom:569.600000pt;}
.y15{bottom:581.440000pt;}
.y41{bottom:590.080000pt;}
.y6a{bottom:594.560000pt;}
.y14{bottom:600.960000pt;}
.y69{bottom:613.120000pt;}
.y40{bottom:617.600000pt;}
.y13{bottom:620.480000pt;}
.y68{bottom:632.640000pt;}
.y3f{bottom:637.120000pt;}
.y12{bottom:640.000000pt;}
.y67{bottom:652.160000pt;}
.y3e{bottom:656.640000pt;}
.y11{bottom:659.520000pt;}
.y66{bottom:671.680000pt;}
.y3d{bottom:676.160000pt;}
.y10{bottom:687.040000pt;}
.y3c{bottom:695.680000pt;}
.y65{bottom:699.200000pt;}
.yf{bottom:706.560000pt;}
.y3b{bottom:715.200000pt;}
.ye{bottom:726.080000pt;}
.y64{bottom:726.720000pt;}
.y3a{bottom:734.720000pt;}
.yd{bottom:745.600000pt;}
.y63{bottom:746.240000pt;}
.y39{bottom:754.240000pt;}
.y62{bottom:765.760000pt;}
.yc{bottom:770.880000pt;}
.y38{bottom:773.760000pt;}
.y61{bottom:785.280000pt;}
.yb{bottom:789.440000pt;}
.y37{bottom:801.280000pt;}
.y60{bottom:812.800000pt;}
.ya{bottom:814.400000pt;}
.y36{bottom:828.800000pt;}
.y9{bottom:830.720000pt;}
.y5f{bottom:840.640000pt;}
.y35{bottom:848.640000pt;}
.y8{bottom:849.280000pt;}
.y5e{bottom:860.160000pt;}
.y34{bottom:868.160000pt;}
.y7{bottom:874.240000pt;}
.y5d{bottom:879.680000pt;}
.y33{bottom:887.680000pt;}
.y6{bottom:893.440000pt;}
.y5c{bottom:899.200000pt;}
.y32{bottom:907.200000pt;}
.y5{bottom:916.800000pt;}
.y5b{bottom:918.720000pt;}
.y31{bottom:926.720000pt;}
.y5a{bottom:938.240000pt;}
.y4{bottom:944.000000pt;}
.y30{bottom:946.240000pt;}
.y3{bottom:962.560000pt;}
.y2f{bottom:965.760000pt;}
.y2e{bottom:985.280000pt;}
.y2{bottom:987.520000pt;}
.y59{bottom:993.280000pt;}
.y1{bottom:1008.000000pt;}
.y2d{bottom:1012.800000pt;}
.h3{height:17.915625pt;}
.h6{height:44.500000pt;}
.h4{height:50.750000pt;}
.h5{height:51.620000pt;}
.h2{height:58.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:94.400064pt;}
.x8{left:118.400064pt;}
.x6{left:133.116544pt;}
.x9{left:142.400064pt;}
.x4{left:159.811840pt;}
.x3{left:243.073568pt;}
.x5{left:295.117856pt;}
.x1{left:332.904320pt;}
.x2{left:396.800000pt;}
}




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