
    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_224b510fcb38a71ba357bd11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.816895;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_9d293bd6125d6b4b633dcddd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_b0091f1bd03f9bcaf34f39c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_68c268fa6b3d6fbb3c5df80d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_83d3402445728677c986cb7c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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_8a9d4e051e8b84eec989dc60.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_c6be03ef99c9dd82d0209c03.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_af2780a67fded7a987b8f3c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.000000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m5{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.041395px;}
.ls4{letter-spacing:0.045060px;}
.ls1{letter-spacing:0.253037px;}
.ls3{letter-spacing:0.766440px;}
.ls5{letter-spacing:130.945748px;}
.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.043600px;}
.ws2{word-spacing:-14.043594px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-2.616001px;}
._3{margin-left:-1.015199px;}
._0{width:1.087800px;}
._1{width:2.515201px;}
._4{width:4.390802px;}
._d{width:5.597106px;}
._e{width:7.059336px;}
._f{width:8.107621px;}
._6{width:9.143402px;}
._5{width:10.210804px;}
._b{width:11.366968px;}
._7{width:12.373210px;}
._c{width:15.240005px;}
._9{width:16.873805px;}
._8{width:18.459608px;}
._a{width:24.052809px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.545760px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:56.174378px;}
.fs0{font-size:56.174400px;}
.fs1{font-size:90.014400px;}
.y7c{bottom:-0.000337px;}
.y0{bottom:0.000000px;}
.y7d{bottom:1.259662px;}
.y39{bottom:32.862000px;}
.y1{bottom:55.079985px;}
.y5d{bottom:106.919957px;}
.y7a{bottom:108.899956px;}
.y5c{bottom:123.119951px;}
.y79{bottom:125.099950px;}
.y37{bottom:126.359820px;}
.y5b{bottom:139.319944px;}
.y78{bottom:141.299943px;}
.y36{bottom:142.739820px;}
.y5a{bottom:155.519938px;}
.y77{bottom:157.319937px;}
.y35{bottom:158.939820px;}
.y59{bottom:171.719931px;}
.y76{bottom:173.699931px;}
.y34{bottom:174.959820px;}
.y38{bottom:181.932015px;}
.y58{bottom:188.099925px;}
.y75{bottom:189.899924px;}
.y33{bottom:191.159820px;}
.y57{bottom:204.299918px;}
.y74{bottom:206.099918px;}
.y32{bottom:207.539820px;}
.y56{bottom:220.319912px;}
.y73{bottom:222.299911px;}
.y31{bottom:223.739820px;}
.y55{bottom:236.519905px;}
.y72{bottom:238.499905px;}
.y30{bottom:239.939820px;}
.y54{bottom:252.899899px;}
.y71{bottom:254.699898px;}
.y2f{bottom:256.139820px;}
.y53{bottom:269.099892px;}
.y70{bottom:270.899892px;}
.y2e{bottom:272.339820px;}
.y52{bottom:285.299886px;}
.y6f{bottom:287.099885px;}
.y2d{bottom:288.539820px;}
.y51{bottom:301.499879px;}
.y6e{bottom:303.479879px;}
.y2c{bottom:304.739820px;}
.yaf{bottom:314.999874px;}
.y6d{bottom:319.679872px;}
.y2b{bottom:320.939820px;}
.y50{bottom:321.839871px;}
.yae{bottom:331.199868px;}
.y6c{bottom:335.699866px;}
.y2a{bottom:337.319820px;}
.yad{bottom:347.399861px;}
.y6b{bottom:351.899859px;}
.y29{bottom:353.339820px;}
.y4f{bottom:354.959858px;}
.yac{bottom:363.599855px;}
.y6a{bottom:368.279853px;}
.y28{bottom:369.539820px;}
.y4e{bottom:372.419851px;}
.yab{bottom:379.799848px;}
.y69{bottom:384.479846px;}
.y27{bottom:385.739820px;}
.yaa{bottom:395.999842px;}
.y68{bottom:400.679840px;}
.y26{bottom:402.119820px;}
.ya9{bottom:412.199835px;}
.y67{bottom:416.879833px;}
.y25{bottom:418.319820px;}
.ya8{bottom:428.399829px;}
.y66{bottom:433.079827px;}
.y24{bottom:438.659820px;}
.ya7{bottom:444.779822px;}
.y65{bottom:449.279820px;}
.ya6{bottom:460.799816px;}
.y64{bottom:465.479814px;}
.y23{bottom:471.779730px;}
.ya5{bottom:476.999809px;}
.y63{bottom:481.679807px;}
.y22{bottom:487.979730px;}
.ya4{bottom:493.199803px;}
.y62{bottom:498.059801px;}
.y21{bottom:504.179730px;}
.ya3{bottom:509.579796px;}
.y61{bottom:514.259794px;}
.y20{bottom:520.559730px;}
.ya2{bottom:525.779790px;}
.y60{bottom:530.279788px;}
.y1f{bottom:536.759730px;}
.ya1{bottom:541.979783px;}
.y5f{bottom:550.799780px;}
.y1e{bottom:552.959730px;}
.ya0{bottom:557.999777px;}
.y1d{bottom:568.979730px;}
.y9f{bottom:574.379770px;}
.y1c{bottom:585.359730px;}
.y9e{bottom:590.579764px;}
.y82{bottom:592.379763px;}
.y1b{bottom:601.559730px;}
.y9d{bottom:606.779757px;}
.y81{bottom:608.579757px;}
.y1a{bottom:617.759730px;}
.y9c{bottom:622.979751px;}
.y19{bottom:633.959730px;}
.y9b{bottom:639.359744px;}
.y18{bottom:650.339730px;}
.y9a{bottom:655.379738px;}
.y17{bottom:666.359730px;}
.y99{bottom:671.579731px;}
.y16{bottom:686.879730px;}
.y98{bottom:687.779725px;}
.y97{bottom:704.159718px;}
.y15{bottom:719.999610px;}
.y96{bottom:720.359712px;}
.y14{bottom:736.199610px;}
.y95{bottom:736.379705px;}
.y13{bottom:752.399610px;}
.y94{bottom:752.579699px;}
.y4d{bottom:758.159697px;}
.y12{bottom:768.599610px;}
.y93{bottom:773.099691px;}
.y80{bottom:775.079690px;}
.y4c{bottom:782.819687px;}
.y11{bottom:784.799610px;}
.y4b{bottom:799.019680px;}
.y7f{bottom:799.739680px;}
.y10{bottom:800.999610px;}
.y92{bottom:806.219678px;}
.y4a{bottom:815.219674px;}
.yf{bottom:817.199610px;}
.y91{bottom:822.599671px;}
.y7e{bottom:827.279669px;}
.y49{bottom:831.419667px;}
.ye{bottom:833.579610px;}
.y90{bottom:838.799664px;}
.y7b{bottom:843.300000px;}
.y48{bottom:847.799661px;}
.yd{bottom:849.779610px;}
.y8f{bottom:854.819658px;}
.y47{bottom:863.999654px;}
.yc{bottom:865.799610px;}
.y8e{bottom:871.019652px;}
.y46{bottom:880.019648px;}
.yb{bottom:881.999610px;}
.y8d{bottom:887.399645px;}
.y45{bottom:896.399641px;}
.ya{bottom:898.379610px;}
.y8c{bottom:907.739637px;}
.y44{bottom:912.599635px;}
.y9{bottom:923.039610px;}
.y43{bottom:928.799628px;}
.y8b{bottom:941.039624px;}
.y8{bottom:942.119610px;}
.y42{bottom:944.999622px;}
.y8a{bottom:957.239617px;}
.y7{bottom:961.019610px;}
.y41{bottom:961.379615px;}
.y89{bottom:973.259611px;}
.y40{bottom:977.399609px;}
.y5{bottom:980.099610px;}
.y6{bottom:984.959610px;}
.y88{bottom:989.459604px;}
.y3f{bottom:993.599603px;}
.y87{bottom:1005.839598px;}
.y3e{bottom:1009.799596px;}
.y4{bottom:1015.199580px;}
.y5e{bottom:1021.859591px;}
.y86{bottom:1022.039591px;}
.y3d{bottom:1026.179590px;}
.y85{bottom:1038.239585px;}
.y3{bottom:1041.119580px;}
.y3c{bottom:1042.379583px;}
.y84{bottom:1054.439578px;}
.y3b{bottom:1058.579577px;}
.y2{bottom:1067.039580px;}
.y3a{bottom:1074.599570px;}
.y83{bottom:1074.779570px;}
.he{height:0.000000px;}
.hc{height:12.600000px;}
.hd{height:13.860000px;}
.h4{height:25.289666px;}
.h7{height:34.453125px;}
.ha{height:38.367100px;}
.h5{height:38.367115px;}
.h9{height:38.647972px;}
.h6{height:38.647987px;}
.hb{height:38.872669px;}
.h3{height:38.872685px;}
.h1{height:42.624520px;}
.h8{height:43.804688px;}
.h2{height:62.289965px;}
.h0{height:1188.000000px;}
.w1{width:1.620000px;}
.w2{width:4.320000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:26.400015px;}
.x16{left:100.687500px;}
.x13{left:138.959595px;}
.x1a{left:146.519941px;}
.x14{left:148.859595px;}
.x1b{left:154.980045px;}
.x1e{left:162.359935px;}
.x1d{left:170.819932px;}
.x5{left:177.479925px;}
.x3{left:213.119715px;}
.x1c{left:248.759441px;}
.x6{left:263.159895px;}
.x7{left:267.839895px;}
.x2{left:286.559880px;}
.x1{left:322.379865px;}
.x18{left:332.819104px;}
.x10{left:338.039025px;}
.x12{left:347.759025px;}
.x8{left:374.939850px;}
.x9{left:379.439850px;}
.x11{left:402.658965px;}
.x4{left:458.459730px;}
.xa{left:508.859790px;}
.xb{left:513.539790px;}
.xc{left:607.859760px;}
.xd{left:612.539760px;}
.xe{left:735.119700px;}
.xf{left:739.799700px;}
.x17{left:760.319658px;}
.x19{left:774.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.036796pt;}
.ls4{letter-spacing:0.040053pt;}
.ls1{letter-spacing:0.224922pt;}
.ls3{letter-spacing:0.681280pt;}
.ls5{letter-spacing:116.396220pt;}
.ws0{word-spacing:-12.483200pt;}
.ws2{word-spacing:-12.483195pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-2.325335pt;}
._3{margin-left:-0.902399pt;}
._0{width:0.966933pt;}
._1{width:2.235735pt;}
._4{width:3.902935pt;}
._d{width:4.975206pt;}
._e{width:6.274965pt;}
._f{width:7.206774pt;}
._6{width:8.127468pt;}
._5{width:9.076271pt;}
._b{width:10.103972pt;}
._7{width:10.998409pt;}
._c{width:13.546671pt;}
._9{width:14.998938pt;}
._8{width:16.408541pt;}
._a{width:21.380274pt;}
.fs2{font-size:32.485120pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:49.932780pt;}
.fs0{font-size:49.932800pt;}
.fs1{font-size:80.012800pt;}
.y7c{bottom:-0.000300pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:1.119700pt;}
.y39{bottom:29.210667pt;}
.y1{bottom:48.959987pt;}
.y5d{bottom:95.039962pt;}
.y7a{bottom:96.799961pt;}
.y5c{bottom:109.439956pt;}
.y79{bottom:111.199956pt;}
.y37{bottom:112.319840pt;}
.y5b{bottom:123.839950pt;}
.y78{bottom:125.599950pt;}
.y36{bottom:126.879840pt;}
.y5a{bottom:138.239945pt;}
.y77{bottom:139.839944pt;}
.y35{bottom:141.279840pt;}
.y59{bottom:152.639939pt;}
.y76{bottom:154.399938pt;}
.y34{bottom:155.519840pt;}
.y38{bottom:161.717347pt;}
.y58{bottom:167.199933pt;}
.y75{bottom:168.799932pt;}
.y33{bottom:169.919840pt;}
.y57{bottom:181.599927pt;}
.y74{bottom:183.199927pt;}
.y32{bottom:184.479840pt;}
.y56{bottom:195.839922pt;}
.y73{bottom:197.599921pt;}
.y31{bottom:198.879840pt;}
.y55{bottom:210.239916pt;}
.y72{bottom:211.999915pt;}
.y30{bottom:213.279840pt;}
.y54{bottom:224.799910pt;}
.y71{bottom:226.399909pt;}
.y2f{bottom:227.679840pt;}
.y53{bottom:239.199904pt;}
.y70{bottom:240.799904pt;}
.y2e{bottom:242.079840pt;}
.y52{bottom:253.599899pt;}
.y6f{bottom:255.199898pt;}
.y2d{bottom:256.479840pt;}
.y51{bottom:267.999893pt;}
.y6e{bottom:269.759892pt;}
.y2c{bottom:270.879840pt;}
.yaf{bottom:279.999888pt;}
.y6d{bottom:284.159886pt;}
.y2b{bottom:285.279840pt;}
.y50{bottom:286.079886pt;}
.yae{bottom:294.399882pt;}
.y6c{bottom:298.399881pt;}
.y2a{bottom:299.839840pt;}
.yad{bottom:308.799876pt;}
.y6b{bottom:312.799875pt;}
.y29{bottom:314.079840pt;}
.y4f{bottom:315.519874pt;}
.yac{bottom:323.199871pt;}
.y6a{bottom:327.359869pt;}
.y28{bottom:328.479840pt;}
.y4e{bottom:331.039868pt;}
.yab{bottom:337.599865pt;}
.y69{bottom:341.759863pt;}
.y27{bottom:342.879840pt;}
.yaa{bottom:351.999859pt;}
.y68{bottom:356.159858pt;}
.y26{bottom:357.439840pt;}
.ya9{bottom:366.399853pt;}
.y67{bottom:370.559852pt;}
.y25{bottom:371.839840pt;}
.ya8{bottom:380.799848pt;}
.y66{bottom:384.959846pt;}
.y24{bottom:389.919840pt;}
.ya7{bottom:395.359842pt;}
.y65{bottom:399.359840pt;}
.ya6{bottom:409.599836pt;}
.y64{bottom:413.759834pt;}
.y23{bottom:419.359760pt;}
.ya5{bottom:423.999830pt;}
.y63{bottom:428.159829pt;}
.y22{bottom:433.759760pt;}
.ya4{bottom:438.399825pt;}
.y62{bottom:442.719823pt;}
.y21{bottom:448.159760pt;}
.ya3{bottom:452.959819pt;}
.y61{bottom:457.119817pt;}
.y20{bottom:462.719760pt;}
.ya2{bottom:467.359813pt;}
.y60{bottom:471.359811pt;}
.y1f{bottom:477.119760pt;}
.ya1{bottom:481.759807pt;}
.y5f{bottom:489.599804pt;}
.y1e{bottom:491.519760pt;}
.ya0{bottom:495.999802pt;}
.y1d{bottom:505.759760pt;}
.y9f{bottom:510.559796pt;}
.y1c{bottom:520.319760pt;}
.y9e{bottom:524.959790pt;}
.y82{bottom:526.559789pt;}
.y1b{bottom:534.719760pt;}
.y9d{bottom:539.359784pt;}
.y81{bottom:540.959784pt;}
.y1a{bottom:549.119760pt;}
.y9c{bottom:553.759778pt;}
.y19{bottom:563.519760pt;}
.y9b{bottom:568.319773pt;}
.y18{bottom:578.079760pt;}
.y9a{bottom:582.559767pt;}
.y17{bottom:592.319760pt;}
.y99{bottom:596.959761pt;}
.y16{bottom:610.559760pt;}
.y98{bottom:611.359755pt;}
.y97{bottom:625.919750pt;}
.y15{bottom:639.999653pt;}
.y96{bottom:640.319744pt;}
.y14{bottom:654.399653pt;}
.y95{bottom:654.559738pt;}
.y13{bottom:668.799653pt;}
.y94{bottom:668.959732pt;}
.y4d{bottom:673.919730pt;}
.y12{bottom:683.199653pt;}
.y93{bottom:687.199725pt;}
.y80{bottom:688.959724pt;}
.y4c{bottom:695.839722pt;}
.y11{bottom:697.599653pt;}
.y4b{bottom:710.239716pt;}
.y7f{bottom:710.879716pt;}
.y10{bottom:711.999653pt;}
.y92{bottom:716.639713pt;}
.y4a{bottom:724.639710pt;}
.yf{bottom:726.399653pt;}
.y91{bottom:731.199708pt;}
.y7e{bottom:735.359706pt;}
.y49{bottom:739.039704pt;}
.ye{bottom:740.959653pt;}
.y90{bottom:745.599702pt;}
.y7b{bottom:749.600000pt;}
.y48{bottom:753.599699pt;}
.yd{bottom:755.359653pt;}
.y8f{bottom:759.839696pt;}
.y47{bottom:767.999693pt;}
.yc{bottom:769.599653pt;}
.y8e{bottom:774.239690pt;}
.y46{bottom:782.239687pt;}
.yb{bottom:783.999653pt;}
.y8d{bottom:788.799684pt;}
.y45{bottom:796.799681pt;}
.ya{bottom:798.559653pt;}
.y8c{bottom:806.879677pt;}
.y44{bottom:811.199676pt;}
.y9{bottom:820.479653pt;}
.y43{bottom:825.599670pt;}
.y8b{bottom:836.479665pt;}
.y8{bottom:837.439653pt;}
.y42{bottom:839.999664pt;}
.y8a{bottom:850.879660pt;}
.y7{bottom:854.239653pt;}
.y41{bottom:854.559658pt;}
.y89{bottom:865.119654pt;}
.y40{bottom:868.799652pt;}
.y5{bottom:871.199653pt;}
.y6{bottom:875.519653pt;}
.y88{bottom:879.519648pt;}
.y3f{bottom:883.199647pt;}
.y87{bottom:894.079642pt;}
.y3e{bottom:897.599641pt;}
.y4{bottom:902.399627pt;}
.y5e{bottom:908.319637pt;}
.y86{bottom:908.479637pt;}
.y3d{bottom:912.159635pt;}
.y85{bottom:922.879631pt;}
.y3{bottom:925.439627pt;}
.y3c{bottom:926.559629pt;}
.y84{bottom:937.279625pt;}
.y3b{bottom:940.959624pt;}
.y2{bottom:948.479627pt;}
.y3a{bottom:955.199618pt;}
.y83{bottom:955.359618pt;}
.he{height:0.000000pt;}
.hc{height:11.200000pt;}
.hd{height:12.320000pt;}
.h4{height:22.479703pt;}
.h7{height:30.625000pt;}
.ha{height:34.104089pt;}
.h5{height:34.104102pt;}
.h9{height:34.353753pt;}
.h6{height:34.353766pt;}
.hb{height:34.553484pt;}
.h3{height:34.553498pt;}
.h1{height:37.888463pt;}
.h8{height:38.937500pt;}
.h2{height:55.368858pt;}
.h0{height:1056.000000pt;}
.w1{width:1.440000pt;}
.w2{width:3.840000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:23.466680pt;}
.x16{left:89.500000pt;}
.x13{left:123.519640pt;}
.x1a{left:130.239948pt;}
.x14{left:132.319640pt;}
.x1b{left:137.760040pt;}
.x1e{left:144.319942pt;}
.x1d{left:151.839939pt;}
.x5{left:157.759933pt;}
.x3{left:189.439747pt;}
.x1c{left:221.119503pt;}
.x6{left:233.919907pt;}
.x7{left:238.079907pt;}
.x2{left:254.719893pt;}
.x1{left:286.559880pt;}
.x18{left:295.839204pt;}
.x10{left:300.479133pt;}
.x12{left:309.119133pt;}
.x8{left:333.279867pt;}
.x9{left:337.279867pt;}
.x11{left:357.919080pt;}
.x4{left:407.519760pt;}
.xa{left:452.319813pt;}
.xb{left:456.479813pt;}
.xc{left:540.319787pt;}
.xd{left:544.479787pt;}
.xe{left:653.439733pt;}
.xf{left:657.599733pt;}
.x17{left:675.839696pt;}
.x19{left:688.000000pt;}
}




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