
    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_18f723bf1e3726e58ac38d11.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3760e9b09446c9fad43c3e2b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4f9f27671f0083fd05145b6f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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_efdbc63aeabcafc901141167.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_cca63e9ebb97a30e0d504932.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.169440px;}
.ls7{letter-spacing:0.189300px;}
.ls5{letter-spacing:0.378602px;}
.ls2{letter-spacing:1.221960px;}
.ls6{letter-spacing:19.408852px;}
.ls4{letter-spacing:49.667500px;}
.ls3{letter-spacing:928.841628px;}
.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;}
}
.ws0{word-spacing:-14.939994px;}
.ws2{word-spacing:-13.410715px;}
.ws3{word-spacing:-9.719996px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-3.539717px;}
._6{margin-left:-2.497908px;}
._1{margin-left:-1.186581px;}
._0{width:1.053591px;}
._7{width:2.457482px;}
._3{width:3.615340px;}
._2{width:4.814705px;}
._f{width:6.094716px;}
._8{width:7.144450px;}
._5{width:8.230786px;}
._4{width:9.485562px;}
._a{width:10.555236px;}
._b{width:11.714061px;}
._10{width:12.820681px;}
._e{width:16.000422px;}
._c{width:18.360086px;}
._d{width:19.377144px;}
._12{width:20.921093px;}
._14{width:22.153563px;}
._13{width:23.606180px;}
._16{width:27.791550px;}
._15{width:29.047320px;}
._11{width:858.502730px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs1{font-size:59.759976px;}
.fs0{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.419160px;}
.y6a{bottom:3.599134px;}
.y31{bottom:112.259955px;}
.y5c{bottom:118.919952px;}
.y30{bottom:129.539948px;}
.y84{bottom:134.579946px;}
.y5b{bottom:137.459945px;}
.y2f{bottom:146.819941px;}
.y83{bottom:151.859939px;}
.y5a{bottom:154.739938px;}
.y2e{bottom:163.919934px;}
.y59{bottom:172.019931px;}
.y82{bottom:173.279931px;}
.y58{bottom:189.119924px;}
.y2d{bottom:189.839924px;}
.y81{bottom:208.919916px;}
.y57{bottom:210.539916px;}
.y2c{bottom:225.479910px;}
.y80{bottom:226.019910px;}
.y2b{bottom:242.759903px;}
.y7f{bottom:243.299903px;}
.y56{bottom:246.179902px;}
.y2a{bottom:260.039896px;}
.y7e{bottom:260.579896px;}
.y55{bottom:263.459895px;}
.y29{bottom:277.319889px;}
.y7d{bottom:277.859889px;}
.y54{bottom:279.299888px;}
.y53{bottom:280.739888px;}
.y28{bottom:294.419882px;}
.y7c{bottom:295.139882px;}
.y52{bottom:298.019881px;}
.y27{bottom:311.699875px;}
.y7b{bottom:312.419875px;}
.y51{bottom:315.119874px;}
.y7a{bottom:329.519868px;}
.y50{bottom:332.399867px;}
.y26{bottom:337.979865px;}
.y79{bottom:346.799861px;}
.y4f{bottom:348.239861px;}
.y4e{bottom:349.679860px;}
.y25{bottom:355.259858px;}
.y78{bottom:364.079854px;}
.y4d{bottom:366.959853px;}
.y24{bottom:372.539851px;}
.y77{bottom:385.499846px;}
.y23{bottom:389.819844px;}
.y4c{bottom:393.239843px;}
.y22{bottom:407.819837px;}
.y4b{bottom:410.339836px;}
.y76{bottom:421.139832px;}
.y4a{bottom:428.519829px;}
.y75{bottom:438.419825px;}
.y47{bottom:440.759824px;}
.y74{bottom:455.519818px;}
.y73{bottom:472.799811px;}
.y72{bottom:490.079804px;}
.y71{bottom:507.359797px;}
.y70{bottom:524.639790px;}
.y6f{bottom:541.739783px;}
.y6e{bottom:563.159775px;}
.y48{bottom:596.460600px;}
.y6d{bottom:598.799760px;}
.y46{bottom:599.879760px;}
.y21{bottom:607.259757px;}
.y6c{bottom:616.079754px;}
.ya1{bottom:621.119752px;}
.y45{bottom:623.459751px;}
.y20{bottom:624.539750px;}
.y6b{bottom:637.859745px;}
.ya0{bottom:638.399745px;}
.y44{bottom:640.739744px;}
.y1f{bottom:641.819743px;}
.y9f{bottom:655.679738px;}
.y43{bottom:657.839737px;}
.y1e{bottom:658.919736px;}
.y69{bottom:661.260600px;}
.y9e{bottom:672.959731px;}
.y42{bottom:675.119730px;}
.y1d{bottom:676.199730px;}
.y9d{bottom:690.239724px;}
.y41{bottom:692.399723px;}
.y1c{bottom:693.479723px;}
.y9c{bottom:707.519717px;}
.y40{bottom:709.679716px;}
.y1b{bottom:710.759716px;}
.y9b{bottom:724.619710px;}
.y3f{bottom:726.959709px;}
.y1a{bottom:728.039709px;}
.y9a{bottom:741.899703px;}
.y3e{bottom:744.239702px;}
.y19{bottom:745.139702px;}
.y99{bottom:759.179696px;}
.y18{bottom:762.419695px;}
.y3d{bottom:769.979692px;}
.y98{bottom:776.459689px;}
.y17{bottom:779.699688px;}
.y97{bottom:793.739683px;}
.y16{bottom:801.119680px;}
.y3c{bottom:805.619678px;}
.y96{bottom:810.839676px;}
.y3b{bottom:822.899671px;}
.y95{bottom:828.119669px;}
.y15{bottom:836.759665px;}
.y3a{bottom:840.179664px;}
.y94{bottom:845.399662px;}
.y14{bottom:854.039658px;}
.y93{bottom:862.679655px;}
.y39{bottom:866.459653px;}
.y13{bottom:870.779652px;}
.y92{bottom:879.959648px;}
.y38{bottom:884.459646px;}
.y12{bottom:888.419645px;}
.y91{bottom:897.239641px;}
.y68{bottom:902.459639px;}
.y11{bottom:905.699638px;}
.y90{bottom:914.339634px;}
.y10{bottom:922.979631px;}
.y67{bottom:926.039630px;}
.y8f{bottom:931.619627px;}
.yf{bottom:940.259624px;}
.y66{bottom:943.319623px;}
.y8e{bottom:948.899620px;}
.ye{bottom:957.179617px;}
.y65{bottom:960.599616px;}
.y8d{bottom:966.179614px;}
.y64{bottom:977.699609px;}
.y8c{bottom:983.459607px;}
.yd{bottom:983.639607px;}
.y63{bottom:994.979602px;}
.y8b{bottom:1000.739600px;}
.yc{bottom:1000.919600px;}
.yb{bottom:1006.139598px;}
.y62{bottom:1012.259595px;}
.y8a{bottom:1017.839593px;}
.ya{bottom:1018.199593px;}
.y9{bottom:1023.419591px;}
.y61{bottom:1029.539588px;}
.y89{bottom:1035.119586px;}
.y8{bottom:1035.479586px;}
.y7{bottom:1040.699584px;}
.y60{bottom:1046.819581px;}
.y5{bottom:1052.399579px;}
.y37{bottom:1056.899577px;}
.y6{bottom:1057.619577px;}
.y5e{bottom:1068.419573px;}
.y3{bottom:1069.679572px;}
.y5f{bottom:1073.639571px;}
.y36{bottom:1074.179570px;}
.y4{bottom:1074.899570px;}
.y88{bottom:1086.959565px;}
.y35{bottom:1091.459563px;}
.y87{bottom:1104.239558px;}
.y2{bottom:1106.759557px;}
.y34{bottom:1108.739557px;}
.y5d{bottom:1113.959554px;}
.y86{bottom:1121.339551px;}
.y33{bottom:1125.839550px;}
.y1{bottom:1134.299546px;}
.y85{bottom:1142.759543px;}
.y32{bottom:1143.119543px;}
.hb{height:16.920000px;}
.h9{height:17.280000px;}
.h4{height:38.139594px;}
.ha{height:38.158578px;}
.h3{height:39.183734px;}
.h8{height:50.312792px;}
.h5{height:58.621969px;}
.h6{height:58.651148px;}
.h2{height:60.226851px;}
.hc{height:60.228051px;}
.h7{height:62.327788px;}
.h1{height:96.508086px;}
.h0{height:1263.000000px;}
.w2{width:2.520000px;}
.w1{width:8.100000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1c{left:106.380848px;}
.x20{left:112.321921px;}
.x17{left:113.399955px;}
.x29{left:114.480052px;}
.x21{left:117.901491px;}
.x1f{left:119.701884px;}
.x18{left:120.779952px;}
.x2a{left:124.739744px;}
.x3{left:127.079949px;}
.x24{left:133.199947px;}
.x37{left:135.719946px;}
.x3d{left:140.401392px;}
.x25{left:143.819942px;}
.x1{left:145.259942px;}
.x38{left:146.339941px;}
.x15{left:149.939940px;}
.x2f{left:154.259938px;}
.x16{left:157.319937px;}
.xc{left:159.299951px;}
.x30{left:162.539935px;}
.x31{left:168.299933px;}
.x32{left:173.159931px;}
.x1d{left:180.902434px;}
.x23{left:205.019316px;}
.x4{left:213.839914px;}
.x19{left:215.279914px;}
.x5{left:218.699913px;}
.x1a{left:220.139912px;}
.xd{left:287.999885px;}
.xe{left:292.859883px;}
.x2{left:298.799853px;}
.x1b{left:350.640683px;}
.x6{left:358.019857px;}
.x7{left:362.879855px;}
.xf{left:388.079845px;}
.x10{left:392.939843px;}
.x2d{left:425.699830px;}
.x2e{left:438.659825px;}
.x3c{left:446.399843px;}
.x39{left:462.420000px;}
.x3a{left:475.379810px;}
.x26{left:481.860623px;}
.x3b{left:486.719805px;}
.x27{left:498.059801px;}
.x33{left:505.439798px;}
.x8{left:510.119796px;}
.x34{left:513.719795px;}
.x9{left:514.979794px;}
.x35{left:519.299792px;}
.x36{left:526.859789px;}
.x11{left:556.919777px;}
.x2b{left:560.519776px;}
.x12{left:564.299774px;}
.x2c{left:573.659771px;}
.x22{left:596.518631px;}
.x1e{left:606.241271px;}
.xa{left:703.799718px;}
.xb{left:708.659717px;}
.x13{left:728.639709px;}
.x14{left:733.679707px;}
.x28{left:768.959692px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.150613pt;}
.ls7{letter-spacing:0.168267pt;}
.ls5{letter-spacing:0.336535pt;}
.ls2{letter-spacing:1.086186pt;}
.ls6{letter-spacing:17.252313pt;}
.ls4{letter-spacing:44.148889pt;}
.ls3{letter-spacing:825.637003pt;}
.ws0{word-spacing:-13.279995pt;}
.ws2{word-spacing:-11.920635pt;}
.ws3{word-spacing:-8.639997pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-3.146415pt;}
._6{margin-left:-2.220363pt;}
._1{margin-left:-1.054739pt;}
._0{width:0.936525pt;}
._7{width:2.184428pt;}
._3{width:3.213636pt;}
._2{width:4.279738pt;}
._f{width:5.417526pt;}
._8{width:6.350623pt;}
._5{width:7.316254pt;}
._4{width:8.431611pt;}
._a{width:9.382432pt;}
._b{width:10.412499pt;}
._10{width:11.396161pt;}
._e{width:14.222597pt;}
._c{width:16.320077pt;}
._d{width:17.224128pt;}
._12{width:18.596527pt;}
._14{width:19.692056pt;}
._13{width:20.983271pt;}
._16{width:24.703600pt;}
._15{width:25.819840pt;}
._11{width:763.113538pt;}
.fs2{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.039253pt;}
.y6a{bottom:3.199230pt;}
.y31{bottom:99.786627pt;}
.y5c{bottom:105.706624pt;}
.y30{bottom:115.146621pt;}
.y84{bottom:119.626619pt;}
.y5b{bottom:122.186618pt;}
.y2f{bottom:130.506614pt;}
.y83{bottom:134.986613pt;}
.y5a{bottom:137.546612pt;}
.y2e{bottom:145.706608pt;}
.y59{bottom:152.906606pt;}
.y82{bottom:154.026605pt;}
.y58{bottom:168.106599pt;}
.y2d{bottom:168.746599pt;}
.y81{bottom:185.706592pt;}
.y57{bottom:187.146592pt;}
.y2c{bottom:200.426586pt;}
.y80{bottom:200.906586pt;}
.y2b{bottom:215.786580pt;}
.y7f{bottom:216.266580pt;}
.y56{bottom:218.826579pt;}
.y2a{bottom:231.146574pt;}
.y7e{bottom:231.626574pt;}
.y55{bottom:234.186573pt;}
.y29{bottom:246.506568pt;}
.y7d{bottom:246.986568pt;}
.y54{bottom:248.266567pt;}
.y53{bottom:249.546567pt;}
.y28{bottom:261.706562pt;}
.y7c{bottom:262.346562pt;}
.y52{bottom:264.906561pt;}
.y27{bottom:277.066556pt;}
.y7b{bottom:277.706556pt;}
.y51{bottom:280.106555pt;}
.y7a{bottom:292.906550pt;}
.y50{bottom:295.466548pt;}
.y26{bottom:300.426546pt;}
.y79{bottom:308.266543pt;}
.y4f{bottom:309.546543pt;}
.y4e{bottom:310.826542pt;}
.y25{bottom:315.786540pt;}
.y78{bottom:323.626537pt;}
.y4d{bottom:326.186536pt;}
.y24{bottom:331.146534pt;}
.y77{bottom:342.666530pt;}
.y23{bottom:346.506528pt;}
.y4c{bottom:349.546527pt;}
.y22{bottom:362.506522pt;}
.y4b{bottom:364.746521pt;}
.y76{bottom:374.346517pt;}
.y4a{bottom:380.906514pt;}
.y75{bottom:389.706511pt;}
.y47{bottom:391.786510pt;}
.y74{bottom:404.906505pt;}
.y73{bottom:420.266499pt;}
.y72{bottom:435.626492pt;}
.y71{bottom:450.986486pt;}
.y70{bottom:466.346480pt;}
.y6f{bottom:481.546474pt;}
.y6e{bottom:500.586466pt;}
.y48{bottom:530.187200pt;}
.y6d{bottom:532.266454pt;}
.y46{bottom:533.226453pt;}
.y21{bottom:539.786451pt;}
.y6c{bottom:547.626448pt;}
.ya1{bottom:552.106446pt;}
.y45{bottom:554.186445pt;}
.y20{bottom:555.146445pt;}
.y6b{bottom:566.986440pt;}
.ya0{bottom:567.466440pt;}
.y44{bottom:569.546439pt;}
.y1f{bottom:570.506438pt;}
.y9f{bottom:582.826434pt;}
.y43{bottom:584.746433pt;}
.y1e{bottom:585.706432pt;}
.y69{bottom:587.787200pt;}
.y9e{bottom:598.186427pt;}
.y42{bottom:600.106427pt;}
.y1d{bottom:601.066426pt;}
.y9d{bottom:613.546421pt;}
.y41{bottom:615.466420pt;}
.y1c{bottom:616.426420pt;}
.y9c{bottom:628.906415pt;}
.y40{bottom:630.826414pt;}
.y1b{bottom:631.786414pt;}
.y9b{bottom:644.106409pt;}
.y3f{bottom:646.186408pt;}
.y1a{bottom:647.146408pt;}
.y9a{bottom:659.466403pt;}
.y3e{bottom:661.546402pt;}
.y19{bottom:662.346402pt;}
.y99{bottom:674.826397pt;}
.y18{bottom:677.706396pt;}
.y3d{bottom:684.426393pt;}
.y98{bottom:690.186391pt;}
.y17{bottom:693.066389pt;}
.y97{bottom:705.546384pt;}
.y16{bottom:712.106382pt;}
.y3c{bottom:716.106380pt;}
.y96{bottom:720.746378pt;}
.y3b{bottom:731.466374pt;}
.y95{bottom:736.106372pt;}
.y15{bottom:743.786369pt;}
.y3a{bottom:746.826368pt;}
.y94{bottom:751.466366pt;}
.y14{bottom:759.146363pt;}
.y93{bottom:766.826360pt;}
.y39{bottom:770.186359pt;}
.y13{bottom:774.026357pt;}
.y92{bottom:782.186354pt;}
.y38{bottom:786.186352pt;}
.y12{bottom:789.706351pt;}
.y91{bottom:797.546348pt;}
.y68{bottom:802.186346pt;}
.y11{bottom:805.066345pt;}
.y90{bottom:812.746342pt;}
.y10{bottom:820.426338pt;}
.y67{bottom:823.146337pt;}
.y8f{bottom:828.106335pt;}
.yf{bottom:835.786332pt;}
.y66{bottom:838.506331pt;}
.y8e{bottom:843.466329pt;}
.ye{bottom:850.826326pt;}
.y65{bottom:853.866325pt;}
.y8d{bottom:858.826323pt;}
.y64{bottom:869.066319pt;}
.y8c{bottom:874.186317pt;}
.yd{bottom:874.346317pt;}
.y63{bottom:884.426313pt;}
.y8b{bottom:889.546311pt;}
.yc{bottom:889.706311pt;}
.yb{bottom:894.346309pt;}
.y62{bottom:899.786307pt;}
.y8a{bottom:904.746305pt;}
.ya{bottom:905.066305pt;}
.y9{bottom:909.706303pt;}
.y61{bottom:915.146301pt;}
.y89{bottom:920.106299pt;}
.y8{bottom:920.426298pt;}
.y7{bottom:925.066297pt;}
.y60{bottom:930.506294pt;}
.y5{bottom:935.466292pt;}
.y37{bottom:939.466291pt;}
.y6{bottom:940.106291pt;}
.y5e{bottom:949.706287pt;}
.y3{bottom:950.826286pt;}
.y5f{bottom:954.346285pt;}
.y36{bottom:954.826285pt;}
.y4{bottom:955.466284pt;}
.y88{bottom:966.186280pt;}
.y35{bottom:970.186279pt;}
.y87{bottom:981.546274pt;}
.y2{bottom:983.786273pt;}
.y34{bottom:985.546272pt;}
.y5d{bottom:990.186271pt;}
.y86{bottom:996.746268pt;}
.y33{bottom:1000.746266pt;}
.y1{bottom:1008.266263pt;}
.y85{bottom:1015.786260pt;}
.y32{bottom:1016.106260pt;}
.hb{height:15.040000pt;}
.h9{height:15.360000pt;}
.h4{height:33.901861pt;}
.ha{height:33.918736pt;}
.h3{height:34.829986pt;}
.h8{height:44.722482pt;}
.h5{height:52.108417pt;}
.h6{height:52.134354pt;}
.h2{height:53.534979pt;}
.hc{height:53.536045pt;}
.h7{height:55.402478pt;}
.h1{height:85.784966pt;}
.h0{height:1122.666667pt;}
.w2{width:2.240000pt;}
.w1{width:7.200000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1c{left:94.560754pt;}
.x20{left:99.841708pt;}
.x17{left:100.799960pt;}
.x29{left:101.760046pt;}
.x21{left:104.801325pt;}
.x1f{left:106.401675pt;}
.x18{left:107.359957pt;}
.x2a{left:110.879773pt;}
.x3{left:112.959955pt;}
.x24{left:118.399953pt;}
.x37{left:120.639952pt;}
.x3d{left:124.801237pt;}
.x25{left:127.839949pt;}
.x1{left:129.119948pt;}
.x38{left:130.079948pt;}
.x15{left:133.279947pt;}
.x2f{left:137.119945pt;}
.x16{left:139.839944pt;}
.xc{left:141.599956pt;}
.x30{left:144.479942pt;}
.x31{left:149.599940pt;}
.x32{left:153.919938pt;}
.x1d{left:160.802164pt;}
.x23{left:182.239392pt;}
.x4{left:190.079924pt;}
.x19{left:191.359923pt;}
.x5{left:194.399922pt;}
.x1a{left:195.679922pt;}
.xd{left:255.999898pt;}
.xe{left:260.319896pt;}
.x2{left:265.599870pt;}
.x1b{left:311.680607pt;}
.x6{left:318.239873pt;}
.x7{left:322.559871pt;}
.xf{left:344.959862pt;}
.x10{left:349.279860pt;}
.x2d{left:378.399849pt;}
.x2e{left:389.919844pt;}
.x3c{left:396.799861pt;}
.x39{left:411.040000pt;}
.x3a{left:422.559831pt;}
.x26{left:428.320553pt;}
.x3b{left:432.639827pt;}
.x27{left:442.719823pt;}
.x33{left:449.279820pt;}
.x8{left:453.439819pt;}
.x34{left:456.639817pt;}
.x9{left:457.759817pt;}
.x35{left:461.599815pt;}
.x36{left:468.319813pt;}
.x11{left:495.039802pt;}
.x2b{left:498.239801pt;}
.x12{left:501.599799pt;}
.x2c{left:509.919796pt;}
.x22{left:530.238783pt;}
.x1e{left:538.881129pt;}
.xa{left:625.599750pt;}
.xb{left:629.919748pt;}
.x13{left:647.679741pt;}
.x14{left:652.159739pt;}
.x28{left:683.519727pt;}
}




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