
    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_4f2c61825c461c53534788b7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.716000;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_a5eaead4fea4f05542e52760.woff')format("woff");}.ff2{font-family:ff2;line-height:1.013672;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_5726fa1a2e3605fe9c0ddb96.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097656;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_77f0d97c8ecdd5552dab7484.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_2116307f49ae7bd28c37fa9d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_b9ec88bc5c59c7c371065383.woff')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_1cf4e723940347a0e7ab4c93.woff')format("woff");}.ff7{font-family:ff7;line-height:0.716000;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_78fe2ac0076280b892dd0c13.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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:ff9;src:url('chunks/assets/font_3a601649415cfec94240c9ab.woff')format("woff");}.ff9{font-family:ff9;line-height:0.992188;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:ffa;src:url('chunks/assets/font_78eeb764605a2168dcc738d6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.330566;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:ffb;src:url('chunks/assets/font_a7899bd9a7e72a804c425d75.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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;}
.ls11{letter-spacing:-2.027288px;}
.ls9{letter-spacing:-0.023037px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:1.093125px;}
.ls10{letter-spacing:1.097023px;}
.ls3{letter-spacing:1.100034px;}
.ls5{letter-spacing:1.105793px;}
.lsa{letter-spacing:1.108100px;}
.lsb{letter-spacing:1.111553px;}
.lse{letter-spacing:1.115587px;}
.lsc{letter-spacing:1.123071px;}
.ls4{letter-spacing:1.128831px;}
.ls1{letter-spacing:1.130561px;}
.ls8{letter-spacing:1.134590px;}
.ls12{letter-spacing:1.138048px;}
.ls6{letter-spacing:1.140349px;}
.lsd{letter-spacing:1.145535px;}
.ls2{letter-spacing:1.151868px;}
.ls7{letter-spacing:1.157627px;}
.ls13{letter-spacing:1.163387px;}
.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:-60.000000px;}
.ws7{word-spacing:-17.168593px;}
.ws6{word-spacing:-17.162833px;}
.ws5{word-spacing:-17.151315px;}
.ws9{word-spacing:-17.145555px;}
.ws4{word-spacing:-17.139796px;}
.ws8{word-spacing:-17.116758px;}
.ws3{word-spacing:-17.110999px;}
.ws0{word-spacing:-0.612829px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-2910.835434px;}
._a{margin-left:-2121.750317px;}
._9{margin-left:-2039.963987px;}
._b{margin-left:-1988.698045px;}
._c{margin-left:-1320.645459px;}
._3{margin-left:-8.322000px;}
._d{margin-left:-7.141582px;}
._8{margin-left:-5.880000px;}
._2{margin-left:-4.389000px;}
._4{margin-left:-2.622000px;}
._5{margin-left:-1.200000px;}
._1{width:1.083000px;}
._6{width:2.496000px;}
._7{width:6.180000px;}
._0{width:993.738000px;}
.fc3{color:rgb(17,17,17);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs7{font-size:57.593400px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:74.871600px;}
.fs5{font-size:180.000000px;}
.fs1{font-size:504.682800px;}
.fs0{font-size:612.829200px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.526000px;}
.y6f{bottom:22.925010px;}
.y27{bottom:40.799927px;}
.y2{bottom:43.317900px;}
.y6e{bottom:61.800555px;}
.y4{bottom:63.078600px;}
.y6d{bottom:86.277750px;}
.y6c{bottom:110.754945px;}
.y17{bottom:113.994000px;}
.y6b{bottom:149.630490px;}
.y6a{bottom:174.107685px;}
.y69{bottom:198.584880px;}
.y68{bottom:223.062075px;}
.y67{bottom:247.539270px;}
.y66{bottom:286.414815px;}
.y65{bottom:310.892010px;}
.y84{bottom:335.223960px;}
.y64{bottom:335.369205px;}
.y15{bottom:354.015150px;}
.y83{bottom:359.701155px;}
.y63{bottom:359.846400px;}
.y14{bottom:372.015150px;}
.y43{bottom:374.099505px;}
.y42{bottom:398.576700px;}
.y82{bottom:398.576805px;}
.y62{bottom:398.721945px;}
.y13{bottom:408.015150px;}
.y81{bottom:423.054000px;}
.y41{bottom:423.054870px;}
.y61{bottom:423.199140px;}
.y12{bottom:426.015150px;}
.y11{bottom:444.015150px;}
.y40{bottom:447.532065px;}
.y60{bottom:447.676335px;}
.y80{bottom:461.929710px;}
.y92{bottom:462.073650px;}
.y3f{bottom:472.009260px;}
.y5f{bottom:472.153530px;}
.y10{bottom:480.015150px;}
.y7f{bottom:486.406905px;}
.y91{bottom:486.550800px;}
.y3e{bottom:496.486455px;}
.y5e{bottom:496.630725px;}
.yf{bottom:498.015150px;}
.y9f{bottom:506.565360px;}
.y7e{bottom:510.884100px;}
.y90{bottom:511.028205px;}
.ye{bottom:516.015150px;}
.y3d{bottom:520.963650px;}
.y7d{bottom:535.361400px;}
.y5d{bottom:535.506270px;}
.y26{bottom:541.120755px;}
.y4b{bottom:545.440305px;}
.y9e{bottom:545.440905px;}
.y8f{bottom:549.903750px;}
.yd{bottom:552.015150px;}
.y7c{bottom:559.838550px;}
.y3c{bottom:559.839195px;}
.y5c{bottom:559.983465px;}
.y25{bottom:565.598055px;}
.y4a{bottom:569.917500px;}
.y9d{bottom:569.918100px;}
.yc{bottom:570.015150px;}
.y8e{bottom:574.381815px;}
.y7b{bottom:584.316330px;}
.y3b{bottom:584.316390px;}
.y5b{bottom:584.460660px;}
.yb{bottom:588.015150px;}
.y49{bottom:594.395010px;}
.y9c{bottom:594.395295px;}
.y8d{bottom:598.859010px;}
.y24{bottom:604.474455px;}
.y5a{bottom:608.937855px;}
.y32{bottom:618.872055px;}
.y7a{bottom:623.191875px;}
.y3a{bottom:623.191935px;}
.y8c{bottom:623.336205px;}
.ya{bottom:624.015150px;}
.y48{bottom:633.270555px;}
.y9b{bottom:633.270840px;}
.y59{bottom:633.415050px;}
.y9{bottom:642.015150px;}
.y31{bottom:643.349250px;}
.y23{bottom:643.350000px;}
.y79{bottom:647.669070px;}
.y39{bottom:647.669130px;}
.y8b{bottom:647.813400px;}
.y86{bottom:657.747600px;}
.y9a{bottom:657.748035px;}
.y30{bottom:667.826505px;}
.y22{bottom:667.827195px;}
.y78{bottom:672.146265px;}
.y38{bottom:672.146325px;}
.y47{bottom:672.146700px;}
.y58{bottom:672.290595px;}
.y8{bottom:678.015150px;}
.y99{bottom:682.225230px;}
.y85{bottom:682.225545px;}
.y7{bottom:696.015150px;}
.y77{bottom:696.623460px;}
.y37{bottom:696.623520px;}
.y46{bottom:696.623895px;}
.y57{bottom:696.767790px;}
.y2f{bottom:706.702050px;}
.y21{bottom:706.702740px;}
.y6{bottom:714.015150px;}
.y76{bottom:721.100655px;}
.y36{bottom:721.100715px;}
.y98{bottom:721.100775px;}
.y45{bottom:721.101090px;}
.y56{bottom:721.244985px;}
.y20{bottom:731.179935px;}
.y5{bottom:732.015150px;}
.y8a{bottom:735.643335px;}
.y75{bottom:745.577850px;}
.y35{bottom:745.577910px;}
.y97{bottom:745.577970px;}
.y44{bottom:745.578285px;}
.y55{bottom:745.722180px;}
.y1f{bottom:755.657130px;}
.y4d{bottom:759.976635px;}
.y89{bottom:760.120530px;}
.y2d{bottom:770.055000px;}
.y96{bottom:770.055165px;}
.y2e{bottom:770.055480px;}
.y54{bottom:770.199375px;}
.y1e{bottom:780.134325px;}
.y16{bottom:783.465450px;}
.y34{bottom:784.453455px;}
.y4c{bottom:784.453830px;}
.y88{bottom:784.597725px;}
.y95{bottom:794.532360px;}
.y2c{bottom:794.532675px;}
.y53{bottom:794.676570px;}
.y33{bottom:808.931025px;}
.y87{bottom:809.074920px;}
.y94{bottom:819.009555px;}
.y1d{bottom:819.009870px;}
.y2b{bottom:833.408220px;}
.y52{bottom:833.552115px;}
.y1c{bottom:843.487065px;}
.y74{bottom:848.942250px;}
.y93{bottom:857.885205px;}
.y2a{bottom:857.885415px;}
.y51{bottom:858.029310px;}
.y1b{bottom:867.964260px;}
.y1{bottom:868.525500px;}
.y73{bottom:873.419715px;}
.y3{bottom:874.772700px;}
.y29{bottom:882.362610px;}
.y50{bottom:882.506505px;}
.y1a{bottom:906.839805px;}
.y4f{bottom:906.983700px;}
.y72{bottom:912.295260px;}
.y19{bottom:931.317000px;}
.y71{bottom:936.772455px;}
.y4e{bottom:950.114880px;}
.y18{bottom:974.448150px;}
.y70{bottom:975.648000px;}
.hb{height:13.200074px;}
.h4{height:40.218750px;}
.h6{height:42.720000px;}
.h5{height:42.840000px;}
.ha{height:45.022966px;}
.h3{height:47.759766px;}
.hc{height:48.281250px;}
.h9{height:54.508572px;}
.h7{height:126.000000px;}
.h1{height:249.636000px;}
.h2{height:428.980440px;}
.h8{height:993.006000px;}
.h0{height:1188.000000px;}
.w3{width:6.675000px;}
.w4{width:13.348500px;}
.w2{width:756.012000px;}
.w1{width:827.280000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:7.679100px;}
.xb{left:16.793256px;}
.x9{left:36.475800px;}
.x1{left:45.360000px;}
.x3{left:60.750000px;}
.x4{left:62.887500px;}
.x7{left:81.000000px;}
.x5{left:102.222000px;}
.x6{left:111.654000px;}
.x2{left:178.168650px;}
.xc{left:796.651520px;}
.xa{left:803.324982px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.802033pt;}
.ls9{letter-spacing:-0.020478pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.971667pt;}
.ls10{letter-spacing:0.975132pt;}
.ls3{letter-spacing:0.977808pt;}
.ls5{letter-spacing:0.982927pt;}
.lsa{letter-spacing:0.984977pt;}
.lsb{letter-spacing:0.988047pt;}
.lse{letter-spacing:0.991633pt;}
.lsc{letter-spacing:0.998286pt;}
.ls4{letter-spacing:1.003405pt;}
.ls1{letter-spacing:1.004943pt;}
.ls8{letter-spacing:1.008524pt;}
.ls12{letter-spacing:1.011599pt;}
.ls6{letter-spacing:1.013644pt;}
.lsd{letter-spacing:1.018254pt;}
.ls2{letter-spacing:1.023883pt;}
.ls7{letter-spacing:1.029002pt;}
.ls13{letter-spacing:1.034121pt;}
.ws1{word-spacing:-53.333333pt;}
.ws7{word-spacing:-15.260971pt;}
.ws6{word-spacing:-15.255852pt;}
.ws5{word-spacing:-15.245613pt;}
.ws9{word-spacing:-15.240493pt;}
.ws4{word-spacing:-15.235374pt;}
.ws8{word-spacing:-15.214896pt;}
.ws3{word-spacing:-15.209777pt;}
.ws0{word-spacing:-0.544737pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-2587.409274pt;}
._a{margin-left:-1886.000282pt;}
._9{margin-left:-1813.301322pt;}
._b{margin-left:-1767.731595pt;}
._c{margin-left:-1173.907074pt;}
._3{margin-left:-7.397333pt;}
._d{margin-left:-6.348073pt;}
._8{margin-left:-5.226667pt;}
._2{margin-left:-3.901333pt;}
._4{margin-left:-2.330667pt;}
._5{margin-left:-1.066667pt;}
._1{width:0.962667pt;}
._6{width:2.218667pt;}
._7{width:5.493333pt;}
._0{width:883.322667pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs7{font-size:51.194133pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:66.552533pt;}
.fs5{font-size:160.000000pt;}
.fs1{font-size:448.606933pt;}
.fs0{font-size:544.737067pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.245333pt;}
.y6f{bottom:20.377787pt;}
.y27{bottom:36.266602pt;}
.y2{bottom:38.504800pt;}
.y6e{bottom:54.933827pt;}
.y4{bottom:56.069867pt;}
.y6d{bottom:76.691333pt;}
.y6c{bottom:98.448840pt;}
.y17{bottom:101.328000pt;}
.y6b{bottom:133.004880pt;}
.y6a{bottom:154.762387pt;}
.y69{bottom:176.519893pt;}
.y68{bottom:198.277400pt;}
.y67{bottom:220.034907pt;}
.y66{bottom:254.590947pt;}
.y65{bottom:276.348453pt;}
.y84{bottom:297.976853pt;}
.y64{bottom:298.105960pt;}
.y15{bottom:314.680133pt;}
.y83{bottom:319.734360pt;}
.y63{bottom:319.863467pt;}
.y14{bottom:330.680133pt;}
.y43{bottom:332.532893pt;}
.y42{bottom:354.290400pt;}
.y82{bottom:354.290493pt;}
.y62{bottom:354.419507pt;}
.y13{bottom:362.680133pt;}
.y81{bottom:376.048000pt;}
.y41{bottom:376.048773pt;}
.y61{bottom:376.177013pt;}
.y12{bottom:378.680133pt;}
.y11{bottom:394.680133pt;}
.y40{bottom:397.806280pt;}
.y60{bottom:397.934520pt;}
.y80{bottom:410.604187pt;}
.y92{bottom:410.732133pt;}
.y3f{bottom:419.563787pt;}
.y5f{bottom:419.692027pt;}
.y10{bottom:426.680133pt;}
.y7f{bottom:432.361693pt;}
.y91{bottom:432.489600pt;}
.y3e{bottom:441.321293pt;}
.y5e{bottom:441.449533pt;}
.yf{bottom:442.680133pt;}
.y9f{bottom:450.280320pt;}
.y7e{bottom:454.119200pt;}
.y90{bottom:454.247293pt;}
.ye{bottom:458.680133pt;}
.y3d{bottom:463.078800pt;}
.y7d{bottom:475.876800pt;}
.y5d{bottom:476.005573pt;}
.y26{bottom:480.996227pt;}
.y4b{bottom:484.835827pt;}
.y9e{bottom:484.836360pt;}
.y8f{bottom:488.803333pt;}
.yd{bottom:490.680133pt;}
.y7c{bottom:497.634267pt;}
.y3c{bottom:497.634840pt;}
.y5c{bottom:497.763080pt;}
.y25{bottom:502.753827pt;}
.y4a{bottom:506.593333pt;}
.y9d{bottom:506.593867pt;}
.yc{bottom:506.680133pt;}
.y8e{bottom:510.561613pt;}
.y7b{bottom:519.392293pt;}
.y3b{bottom:519.392347pt;}
.y5b{bottom:519.520587pt;}
.yb{bottom:522.680133pt;}
.y49{bottom:528.351120pt;}
.y9c{bottom:528.351373pt;}
.y8d{bottom:532.319120pt;}
.y24{bottom:537.310627pt;}
.y5a{bottom:541.278093pt;}
.y32{bottom:550.108493pt;}
.y7a{bottom:553.948333pt;}
.y3a{bottom:553.948387pt;}
.y8c{bottom:554.076627pt;}
.ya{bottom:554.680133pt;}
.y48{bottom:562.907160pt;}
.y9b{bottom:562.907413pt;}
.y59{bottom:563.035600pt;}
.y9{bottom:570.680133pt;}
.y31{bottom:571.866000pt;}
.y23{bottom:571.866667pt;}
.y79{bottom:575.705840pt;}
.y39{bottom:575.705893pt;}
.y8b{bottom:575.834133pt;}
.y86{bottom:584.664533pt;}
.y9a{bottom:584.664920pt;}
.y30{bottom:593.623560pt;}
.y22{bottom:593.624173pt;}
.y78{bottom:597.463347pt;}
.y38{bottom:597.463400pt;}
.y47{bottom:597.463733pt;}
.y58{bottom:597.591640pt;}
.y8{bottom:602.680133pt;}
.y99{bottom:606.422427pt;}
.y85{bottom:606.422707pt;}
.y7{bottom:618.680133pt;}
.y77{bottom:619.220853pt;}
.y37{bottom:619.220907pt;}
.y46{bottom:619.221240pt;}
.y57{bottom:619.349147pt;}
.y2f{bottom:628.179600pt;}
.y21{bottom:628.180213pt;}
.y6{bottom:634.680133pt;}
.y76{bottom:640.978360pt;}
.y36{bottom:640.978413pt;}
.y98{bottom:640.978467pt;}
.y45{bottom:640.978747pt;}
.y56{bottom:641.106653pt;}
.y20{bottom:649.937720pt;}
.y5{bottom:650.680133pt;}
.y8a{bottom:653.905187pt;}
.y75{bottom:662.735867pt;}
.y35{bottom:662.735920pt;}
.y97{bottom:662.735973pt;}
.y44{bottom:662.736253pt;}
.y55{bottom:662.864160pt;}
.y1f{bottom:671.695227pt;}
.y4d{bottom:675.534787pt;}
.y89{bottom:675.662693pt;}
.y2d{bottom:684.493333pt;}
.y96{bottom:684.493480pt;}
.y2e{bottom:684.493760pt;}
.y54{bottom:684.621667pt;}
.y1e{bottom:693.452733pt;}
.y16{bottom:696.413733pt;}
.y34{bottom:697.291960pt;}
.y4c{bottom:697.292293pt;}
.y88{bottom:697.420200pt;}
.y95{bottom:706.250987pt;}
.y2c{bottom:706.251267pt;}
.y53{bottom:706.379173pt;}
.y33{bottom:719.049800pt;}
.y87{bottom:719.177707pt;}
.y94{bottom:728.008493pt;}
.y1d{bottom:728.008773pt;}
.y2b{bottom:740.807307pt;}
.y52{bottom:740.935213pt;}
.y1c{bottom:749.766280pt;}
.y74{bottom:754.615333pt;}
.y93{bottom:762.564627pt;}
.y2a{bottom:762.564813pt;}
.y51{bottom:762.692720pt;}
.y1b{bottom:771.523787pt;}
.y1{bottom:772.022667pt;}
.y73{bottom:776.373080pt;}
.y3{bottom:777.575733pt;}
.y29{bottom:784.322320pt;}
.y50{bottom:784.450227pt;}
.y1a{bottom:806.079827pt;}
.y4f{bottom:806.207733pt;}
.y72{bottom:810.929120pt;}
.y19{bottom:827.837333pt;}
.y71{bottom:832.686627pt;}
.y4e{bottom:844.546560pt;}
.y18{bottom:866.176133pt;}
.y70{bottom:867.242667pt;}
.hb{height:11.733399pt;}
.h4{height:35.750000pt;}
.h6{height:37.973333pt;}
.h5{height:38.080000pt;}
.ha{height:40.020414pt;}
.h3{height:42.453125pt;}
.hc{height:42.916667pt;}
.h9{height:48.452064pt;}
.h7{height:112.000000pt;}
.h1{height:221.898667pt;}
.h2{height:381.315947pt;}
.h8{height:882.672000pt;}
.h0{height:1056.000000pt;}
.w3{width:5.933333pt;}
.w4{width:11.865333pt;}
.w2{width:672.010667pt;}
.w1{width:735.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.825867pt;}
.xb{left:14.927338pt;}
.x9{left:32.422933pt;}
.x1{left:40.320000pt;}
.x3{left:54.000000pt;}
.x4{left:55.900000pt;}
.x7{left:72.000000pt;}
.x5{left:90.864000pt;}
.x6{left:99.248000pt;}
.x2{left:158.372133pt;}
.xc{left:708.134684pt;}
.xa{left:714.066650pt;}
}




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