
    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_b3082315e37443acb18db2a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_62323ae795b97fdbe1975f62.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_98abf8fd12ae0d1b4ee0d5f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_5345344f22740a9185ddf2d2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_b4dd14bfb8db8f73cdf3adbd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853516;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:24.378000px;}
.ls10{letter-spacing:-2.736000px;}
.ls15{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.504000px;}
.ls34{letter-spacing:-0.462000px;}
.ls27{letter-spacing:-0.396000px;}
.lsf{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.330000px;}
.lsc{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.066000px;}
.ls9{letter-spacing:0.072000px;}
.ls1f{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.864000px;}
.ls1c{letter-spacing:1.008000px;}
.ls1e{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.122000px;}
.ls31{letter-spacing:1.320000px;}
.ls2c{letter-spacing:3.102000px;}
.ls29{letter-spacing:3.168000px;}
.ls2d{letter-spacing:3.300000px;}
.ls23{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls1b{letter-spacing:4.320000px;}
.ls7{letter-spacing:4.392000px;}
.ls25{letter-spacing:5.040000px;}
.ls11{letter-spacing:5.184000px;}
.ls20{letter-spacing:6.000000px;}
.ls21{letter-spacing:6.270000px;}
.ls1{letter-spacing:6.600000px;}
.ls19{letter-spacing:6.768000px;}
.ls22{letter-spacing:7.128000px;}
.ls2b{letter-spacing:7.200000px;}
.ls1a{letter-spacing:7.704000px;}
.ls2{letter-spacing:10.200000px;}
.ls26{letter-spacing:10.494000px;}
.ls17{letter-spacing:10.512000px;}
.ls18{letter-spacing:10.656000px;}
.ls24{letter-spacing:10.956000px;}
.ls1d{letter-spacing:11.232000px;}
.ls32{letter-spacing:12.240000px;}
.lsb{letter-spacing:17.340000px;}
.ls33{letter-spacing:19.800000px;}
.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;}
}
.wsd{word-spacing:-22.860000px;}
.wsc{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.576000px;}
.wsb{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.496000px;}
.ws4{word-spacing:-17.424000px;}
.ws5{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.860000px;}
.ws10{word-spacing:-16.632000px;}
.wse{word-spacing:-16.302000px;}
.wsf{word-spacing:-11.127600px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-22.596000px;}
._13{margin-left:-17.556000px;}
._17{margin-left:-15.810000px;}
._d{margin-left:-14.388000px;}
._c{margin-left:-13.128000px;}
._e{margin-left:-11.880000px;}
._12{margin-left:-10.032000px;}
._18{margin-left:-8.628000px;}
._0{margin-left:-7.350000px;}
._10{margin-left:-6.180000px;}
._3{margin-left:-4.950000px;}
._1{margin-left:-3.696000px;}
._b{margin-left:-2.394000px;}
._2{margin-left:-1.260000px;}
._5{width:1.560000px;}
._7{width:3.012000px;}
._4{width:4.620000px;}
._a{width:5.796000px;}
._6{width:7.140000px;}
._8{width:8.280000px;}
._9{width:10.224000px;}
._f{width:11.538000px;}
._11{width:14.094000px;}
._15{width:15.246000px;}
._16{width:22.428000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.325850px;}
.y23{bottom:76.337550px;}
.y7f{bottom:144.106050px;}
.y5d{bottom:144.723600px;}
.y49{bottom:145.162500px;}
.y22{bottom:145.192950px;}
.y7e{bottom:161.956050px;}
.y5c{bottom:164.078100px;}
.y48{bottom:166.312500px;}
.y21{bottom:166.486950px;}
.y7d{bottom:179.806050px;}
.y5b{bottom:183.432600px;}
.y47{bottom:187.462500px;}
.y20{bottom:187.636950px;}
.y7c{bottom:197.656050px;}
.y5a{bottom:202.787100px;}
.y46{bottom:208.612500px;}
.y1f{bottom:208.786950px;}
.y59{bottom:222.141600px;}
.y45{bottom:229.762500px;}
.y1e{bottom:229.936950px;}
.y58{bottom:241.496100px;}
.y44{bottom:250.912500px;}
.y1d{bottom:251.086950px;}
.y7b{bottom:251.813550px;}
.y57{bottom:260.850600px;}
.y7a{bottom:271.762050px;}
.y43{bottom:272.062500px;}
.y1c{bottom:272.236950px;}
.y56{bottom:280.205100px;}
.y79{bottom:291.710550px;}
.y42{bottom:293.212500px;}
.y1b{bottom:293.386950px;}
.y55{bottom:299.559600px;}
.y78{bottom:311.659050px;}
.y41{bottom:314.362500px;}
.y1a{bottom:314.536950px;}
.y54{bottom:318.914100px;}
.y77{bottom:331.607550px;}
.y40{bottom:335.512500px;}
.y19{bottom:335.686950px;}
.y53{bottom:338.268600px;}
.y76{bottom:351.566550px;}
.y3f{bottom:356.662500px;}
.y18{bottom:356.836950px;}
.y52{bottom:357.623100px;}
.y75{bottom:371.515050px;}
.y51{bottom:376.977600px;}
.y3e{bottom:377.812500px;}
.y17{bottom:377.986950px;}
.y74{bottom:391.463550px;}
.y50{bottom:396.332100px;}
.y3d{bottom:398.962500px;}
.y16{bottom:399.136950px;}
.y73{bottom:411.412050px;}
.y4f{bottom:415.686600px;}
.y3c{bottom:420.112500px;}
.y15{bottom:420.286950px;}
.y72{bottom:431.360550px;}
.y4e{bottom:435.041100px;}
.y3b{bottom:441.262500px;}
.y14{bottom:441.436950px;}
.y71{bottom:451.309050px;}
.y4d{bottom:454.395600px;}
.y3a{bottom:462.412500px;}
.y13{bottom:462.586950px;}
.y70{bottom:471.257550px;}
.y4c{bottom:473.750100px;}
.y39{bottom:483.562500px;}
.y12{bottom:483.736950px;}
.y6f{bottom:491.206050px;}
.y4b{bottom:493.104600px;}
.y38{bottom:504.712500px;}
.y11{bottom:504.886950px;}
.y4a{bottom:520.958550px;}
.y37{bottom:525.862500px;}
.y10{bottom:526.036950px;}
.y6e{bottom:532.906050px;}
.y36{bottom:547.012500px;}
.yf{bottom:547.186950px;}
.y6d{bottom:561.360000px;}
.y35{bottom:568.162500px;}
.ye{bottom:568.336950px;}
.y34{bottom:589.312500px;}
.yd{bottom:589.486950px;}
.y33{bottom:610.462500px;}
.yc{bottom:610.636950px;}
.y32{bottom:631.612500px;}
.yb{bottom:631.786950px;}
.y6c{bottom:634.860000px;}
.y31{bottom:652.762500px;}
.ya{bottom:652.936950px;}
.y6b{bottom:669.379500px;}
.y30{bottom:673.912500px;}
.y9{bottom:674.086950px;}
.y6a{bottom:689.328000px;}
.y2f{bottom:695.062500px;}
.y8{bottom:695.236950px;}
.y69{bottom:709.276500px;}
.y2e{bottom:716.212500px;}
.y7{bottom:716.386950px;}
.y68{bottom:729.225000px;}
.y2d{bottom:737.362500px;}
.y6{bottom:737.536950px;}
.y67{bottom:749.173500px;}
.y2c{bottom:758.512500px;}
.y5{bottom:758.686950px;}
.y66{bottom:769.122000px;}
.y2b{bottom:779.662500px;}
.y65{bottom:789.070500px;}
.y2a{bottom:800.812500px;}
.y64{bottom:809.019000px;}
.y29{bottom:821.962500px;}
.y63{bottom:828.967500px;}
.y28{bottom:843.112500px;}
.y62{bottom:848.916000px;}
.y4{bottom:855.436950px;}
.y27{bottom:864.262500px;}
.y61{bottom:868.864500px;}
.y26{bottom:885.412500px;}
.y60{bottom:888.813000px;}
.y25{bottom:906.562500px;}
.y5f{bottom:908.761500px;}
.y3{bottom:910.698300px;}
.y24{bottom:927.712500px;}
.y2{bottom:928.698300px;}
.y5e{bottom:928.710000px;}
.h8{height:35.663086px;}
.h2{height:40.757812px;}
.h3{height:41.396484px;}
.h4{height:43.989258px;}
.ha{height:48.399902px;}
.h5{height:50.947266px;}
.h9{height:56.041992px;}
.hb{height:58.003195px;}
.h7{height:61.136719px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.829400px;}
.x6{left:119.053350px;}
.x7{left:140.307150px;}
.x5{left:150.670350px;}
.x1{left:372.693300px;}
.x8{left:540.203550px;}
.x2{left:572.164350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:21.669333pt;}
.ls10{letter-spacing:-2.432000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.448000pt;}
.ls34{letter-spacing:-0.410667pt;}
.ls27{letter-spacing:-0.352000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.293333pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.058667pt;}
.ls9{letter-spacing:0.064000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.896000pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:0.997333pt;}
.ls31{letter-spacing:1.173333pt;}
.ls2c{letter-spacing:2.757333pt;}
.ls29{letter-spacing:2.816000pt;}
.ls2d{letter-spacing:2.933333pt;}
.ls23{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1b{letter-spacing:3.840000pt;}
.ls7{letter-spacing:3.904000pt;}
.ls25{letter-spacing:4.480000pt;}
.ls11{letter-spacing:4.608000pt;}
.ls20{letter-spacing:5.333333pt;}
.ls21{letter-spacing:5.573333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls19{letter-spacing:6.016000pt;}
.ls22{letter-spacing:6.336000pt;}
.ls2b{letter-spacing:6.400000pt;}
.ls1a{letter-spacing:6.848000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls26{letter-spacing:9.328000pt;}
.ls17{letter-spacing:9.344000pt;}
.ls18{letter-spacing:9.472000pt;}
.ls24{letter-spacing:9.738667pt;}
.ls1d{letter-spacing:9.984000pt;}
.ls32{letter-spacing:10.880000pt;}
.lsb{letter-spacing:15.413333pt;}
.ls33{letter-spacing:17.600000pt;}
.wsd{word-spacing:-20.320000pt;}
.wsc{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.512000pt;}
.wsb{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.552000pt;}
.ws4{word-spacing:-15.488000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws3{word-spacing:-14.986667pt;}
.ws10{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.490667pt;}
.wsf{word-spacing:-9.891200pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-20.085333pt;}
._13{margin-left:-15.605333pt;}
._17{margin-left:-14.053333pt;}
._d{margin-left:-12.789333pt;}
._c{margin-left:-11.669333pt;}
._e{margin-left:-10.560000pt;}
._12{margin-left:-8.917333pt;}
._18{margin-left:-7.669333pt;}
._0{margin-left:-6.533333pt;}
._10{margin-left:-5.493333pt;}
._3{margin-left:-4.400000pt;}
._1{margin-left:-3.285333pt;}
._b{margin-left:-2.128000pt;}
._2{margin-left:-1.120000pt;}
._5{width:1.386667pt;}
._7{width:2.677333pt;}
._4{width:4.106667pt;}
._a{width:5.152000pt;}
._6{width:6.346667pt;}
._8{width:7.360000pt;}
._9{width:9.088000pt;}
._f{width:10.256000pt;}
._11{width:12.528000pt;}
._15{width:13.552000pt;}
._16{width:19.936000pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.845200pt;}
.y23{bottom:67.855600pt;}
.y7f{bottom:128.094267pt;}
.y5d{bottom:128.643200pt;}
.y49{bottom:129.033333pt;}
.y22{bottom:129.060400pt;}
.y7e{bottom:143.960933pt;}
.y5c{bottom:145.847200pt;}
.y48{bottom:147.833333pt;}
.y21{bottom:147.988400pt;}
.y7d{bottom:159.827600pt;}
.y5b{bottom:163.051200pt;}
.y47{bottom:166.633333pt;}
.y20{bottom:166.788400pt;}
.y7c{bottom:175.694267pt;}
.y5a{bottom:180.255200pt;}
.y46{bottom:185.433333pt;}
.y1f{bottom:185.588400pt;}
.y59{bottom:197.459200pt;}
.y45{bottom:204.233333pt;}
.y1e{bottom:204.388400pt;}
.y58{bottom:214.663200pt;}
.y44{bottom:223.033333pt;}
.y1d{bottom:223.188400pt;}
.y7b{bottom:223.834267pt;}
.y57{bottom:231.867200pt;}
.y7a{bottom:241.566267pt;}
.y43{bottom:241.833333pt;}
.y1c{bottom:241.988400pt;}
.y56{bottom:249.071200pt;}
.y79{bottom:259.298267pt;}
.y42{bottom:260.633333pt;}
.y1b{bottom:260.788400pt;}
.y55{bottom:266.275200pt;}
.y78{bottom:277.030267pt;}
.y41{bottom:279.433333pt;}
.y1a{bottom:279.588400pt;}
.y54{bottom:283.479200pt;}
.y77{bottom:294.762267pt;}
.y40{bottom:298.233333pt;}
.y19{bottom:298.388400pt;}
.y53{bottom:300.683200pt;}
.y76{bottom:312.503600pt;}
.y3f{bottom:317.033333pt;}
.y18{bottom:317.188400pt;}
.y52{bottom:317.887200pt;}
.y75{bottom:330.235600pt;}
.y51{bottom:335.091200pt;}
.y3e{bottom:335.833333pt;}
.y17{bottom:335.988400pt;}
.y74{bottom:347.967600pt;}
.y50{bottom:352.295200pt;}
.y3d{bottom:354.633333pt;}
.y16{bottom:354.788400pt;}
.y73{bottom:365.699600pt;}
.y4f{bottom:369.499200pt;}
.y3c{bottom:373.433333pt;}
.y15{bottom:373.588400pt;}
.y72{bottom:383.431600pt;}
.y4e{bottom:386.703200pt;}
.y3b{bottom:392.233333pt;}
.y14{bottom:392.388400pt;}
.y71{bottom:401.163600pt;}
.y4d{bottom:403.907200pt;}
.y3a{bottom:411.033333pt;}
.y13{bottom:411.188400pt;}
.y70{bottom:418.895600pt;}
.y4c{bottom:421.111200pt;}
.y39{bottom:429.833333pt;}
.y12{bottom:429.988400pt;}
.y6f{bottom:436.627600pt;}
.y4b{bottom:438.315200pt;}
.y38{bottom:448.633333pt;}
.y11{bottom:448.788400pt;}
.y4a{bottom:463.074267pt;}
.y37{bottom:467.433333pt;}
.y10{bottom:467.588400pt;}
.y6e{bottom:473.694267pt;}
.y36{bottom:486.233333pt;}
.yf{bottom:486.388400pt;}
.y6d{bottom:498.986667pt;}
.y35{bottom:505.033333pt;}
.ye{bottom:505.188400pt;}
.y34{bottom:523.833333pt;}
.yd{bottom:523.988400pt;}
.y33{bottom:542.633333pt;}
.yc{bottom:542.788400pt;}
.y32{bottom:561.433333pt;}
.yb{bottom:561.588400pt;}
.y6c{bottom:564.320000pt;}
.y31{bottom:580.233333pt;}
.ya{bottom:580.388400pt;}
.y6b{bottom:595.004000pt;}
.y30{bottom:599.033333pt;}
.y9{bottom:599.188400pt;}
.y6a{bottom:612.736000pt;}
.y2f{bottom:617.833333pt;}
.y8{bottom:617.988400pt;}
.y69{bottom:630.468000pt;}
.y2e{bottom:636.633333pt;}
.y7{bottom:636.788400pt;}
.y68{bottom:648.200000pt;}
.y2d{bottom:655.433333pt;}
.y6{bottom:655.588400pt;}
.y67{bottom:665.932000pt;}
.y2c{bottom:674.233333pt;}
.y5{bottom:674.388400pt;}
.y66{bottom:683.664000pt;}
.y2b{bottom:693.033333pt;}
.y65{bottom:701.396000pt;}
.y2a{bottom:711.833333pt;}
.y64{bottom:719.128000pt;}
.y29{bottom:730.633333pt;}
.y63{bottom:736.860000pt;}
.y28{bottom:749.433333pt;}
.y62{bottom:754.592000pt;}
.y4{bottom:760.388400pt;}
.y27{bottom:768.233333pt;}
.y61{bottom:772.324000pt;}
.y26{bottom:787.033333pt;}
.y60{bottom:790.056000pt;}
.y25{bottom:805.833333pt;}
.y5f{bottom:807.788000pt;}
.y3{bottom:809.509600pt;}
.y24{bottom:824.633333pt;}
.y2{bottom:825.509600pt;}
.y5e{bottom:825.520000pt;}
.h8{height:31.700521pt;}
.h2{height:36.229167pt;}
.h3{height:36.796875pt;}
.h4{height:39.101562pt;}
.ha{height:43.022135pt;}
.h5{height:45.286458pt;}
.h9{height:49.815104pt;}
.hb{height:51.558396pt;}
.h7{height:54.343750pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.959467pt;}
.x6{left:105.825200pt;}
.x7{left:124.717467pt;}
.x5{left:133.929200pt;}
.x1{left:331.282933pt;}
.x8{left:480.180933pt;}
.x2{left:508.590533pt;}
}




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