
    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_5586ea3d6531722e34e6c302.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_9625989b604d4468c87fb8d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_9fc72b93e8a163959308c1cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916016;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_e026af3e1ac1349c03035db3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_a8510bcdbe965cd887ae2f58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932617;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_706cfd33bbddae1eaa218729.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932617;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_9402a64a7b92a6a53542eb86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.750000px;}
.ls6{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.028080px;}
.ls15{letter-spacing:-0.018720px;}
.ls8{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls14{letter-spacing:0.037440px;}
.lsf{letter-spacing:0.341280px;}
.ls16{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.369600px;}
.ls4{letter-spacing:3.420000px;}
.lsb{letter-spacing:6.300000px;}
.ls13{letter-spacing:7.740000px;}
.ls18{letter-spacing:11.340000px;}
.ls11{letter-spacing:12.780000px;}
.lsd{letter-spacing:13.500000px;}
.lsc{letter-spacing:18.540000px;}
.ls10{letter-spacing:29.340000px;}
.lse{letter-spacing:32.220000px;}
.ls0{letter-spacing:34.380000px;}
.ls12{letter-spacing:35.100000px;}
.ls17{letter-spacing:40.661280px;}
.ls19{letter-spacing:41.381280px;}
.ls5{letter-spacing:95.700000px;}
.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:-23.940000px;}
.ws9{word-spacing:-21.429600px;}
.ws0{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.097440px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.050640px;}
.ws7{word-spacing:-21.041280px;}
.ws5{word-spacing:-19.980000px;}
.ws3{word-spacing:0.000000px;}
._32{margin-left:-6.486480px;}
._2a{margin-left:-4.548960px;}
._29{margin-left:-3.399840px;}
._d{margin-left:-2.274480px;}
._0{margin-left:-1.149120px;}
._1{width:1.637760px;}
._c{width:3.369600px;}
._7{width:4.579200px;}
._6{width:5.613840px;}
._30{width:6.921360px;}
._28{width:8.225280px;}
._2f{width:9.518640px;}
._25{width:10.553760px;}
._40{width:11.628480px;}
._17{width:12.720240px;}
._9{width:14.711760px;}
._33{width:16.359840px;}
._14{width:17.437680px;}
._24{width:18.448560px;}
._23{width:19.934640px;}
._15{width:22.209120px;}
._31{width:23.250240px;}
._2e{width:25.221360px;}
._8{width:27.179280px;}
._f{width:28.226880px;}
._1e{width:29.652480px;}
._e{width:31.253040px;}
._21{width:32.263920px;}
._19{width:34.056720px;}
._18{width:35.128080px;}
._3f{width:36.698400px;}
._11{width:37.823760px;}
._1a{width:39.761280px;}
._1b{width:40.873200px;}
._37{width:41.966880px;}
._3c{width:43.905600px;}
._3d{width:45.590160px;}
._35{width:46.619520px;}
._34{width:48.690720px;}
._41{width:50.459760px;}
._3e{width:51.807600px;}
._26{width:56.440800px;}
._27{width:57.505680px;}
._20{width:60.484320px;}
._12{width:62.506080px;}
._13{width:63.575760px;}
._a{width:65.286000px;}
._b{width:67.375920px;}
._3{width:72.262800px;}
._2{width:73.273680px;}
._1c{width:80.418960px;}
._22{width:82.386720px;}
._2c{width:87.272640px;}
._3a{width:89.516880px;}
._2b{width:95.149200px;}
._4{width:97.381440px;}
._5{width:98.584560px;}
._36{width:105.017040px;}
._42{width:108.526800px;}
._43{width:109.566720px;}
._39{width:120.517200px;}
._38{width:121.528080px;}
._10{width:125.264880px;}
._3b{width:136.795440px;}
._2d{width:138.069360px;}
._16{width:195.827760px;}
._1f{width:199.143360px;}
._1d{width:264.176640px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y24{bottom:8.100000px;}
.yf{bottom:8.280000px;}
.y48{bottom:35.814000px;}
.y23{bottom:35.820000px;}
.y38{bottom:36.000000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y29{bottom:63.534000px;}
.y22{bottom:63.585000px;}
.y37{bottom:63.720000px;}
.y28{bottom:91.434000px;}
.y36{bottom:91.440000px;}
.y21{bottom:91.485000px;}
.y60{bottom:104.076000px;}
.y26{bottom:112.716000px;}
.y27{bottom:119.154000px;}
.y20{bottom:119.205000px;}
.y35{bottom:119.340000px;}
.y84{bottom:119.916000px;}
.y5f{bottom:131.796000px;}
.y3a{bottom:137.376000px;}
.y47{bottom:146.874000px;}
.y1f{bottom:146.925000px;}
.y34{bottom:147.060000px;}
.y83{bottom:147.636000px;}
.y5e{bottom:159.510000px;}
.y46{bottom:174.594000px;}
.y33{bottom:174.780000px;}
.y1e{bottom:174.825000px;}
.y82{bottom:175.530000px;}
.y5d{bottom:187.230000px;}
.y32{bottom:202.500000px;}
.y45{bottom:202.539000px;}
.y1d{bottom:202.545000px;}
.y81{bottom:203.250000px;}
.y5c{bottom:215.130000px;}
.y44{bottom:230.259000px;}
.y1c{bottom:230.265000px;}
.y31{bottom:230.445000px;}
.y80{bottom:230.970000px;}
.y5b{bottom:242.850000px;}
.y25{bottom:252.210000px;}
.y43{bottom:257.979000px;}
.y1b{bottom:257.985000px;}
.y30{bottom:258.165000px;}
.y7f{bottom:258.690000px;}
.y5a{bottom:270.570000px;}
.y10{bottom:280.830000px;}
.y42{bottom:285.879000px;}
.y1a{bottom:285.885000px;}
.y7e{bottom:286.590000px;}
.y59{bottom:298.290000px;}
.y41{bottom:313.599000px;}
.y19{bottom:313.605000px;}
.y7d{bottom:314.310000px;}
.y58{bottom:326.190000px;}
.y40{bottom:341.319000px;}
.y18{bottom:341.355000px;}
.y2f{bottom:341.505000px;}
.y7c{bottom:342.075000px;}
.y57{bottom:353.955000px;}
.y3f{bottom:369.039000px;}
.y17{bottom:369.075000px;}
.y2e{bottom:369.225000px;}
.y7b{bottom:369.975000px;}
.y56{bottom:381.675000px;}
.y3e{bottom:396.939000px;}
.y2d{bottom:396.945000px;}
.y16{bottom:396.975000px;}
.y7a{bottom:397.695000px;}
.y55{bottom:409.575000px;}
.y3d{bottom:424.659000px;}
.y15{bottom:424.695000px;}
.y2c{bottom:424.845000px;}
.y79{bottom:425.415000px;}
.y54{bottom:437.295000px;}
.y4b{bottom:439.965000px;}
.y3c{bottom:452.379000px;}
.y14{bottom:452.415000px;}
.y2b{bottom:452.565000px;}
.y78{bottom:453.135000px;}
.y53{bottom:465.015000px;}
.y4a{bottom:467.715000px;}
.y3b{bottom:480.309000px;}
.y13{bottom:480.315000px;}
.y77{bottom:481.035000px;}
.y52{bottom:492.735000px;}
.y12{bottom:508.035000px;}
.y76{bottom:508.755000px;}
.y51{bottom:520.635000px;}
.y11{bottom:535.755000px;}
.y75{bottom:536.475000px;}
.y50{bottom:548.355000px;}
.y74{bottom:564.195000px;}
.y4f{bottom:576.075000px;}
.y73{bottom:592.095000px;}
.y4e{bottom:604.005000px;}
.y72{bottom:619.845000px;}
.y4d{bottom:631.725000px;}
.y39{bottom:638.025000px;}
.y71{bottom:647.565000px;}
.y4c{bottom:659.445000px;}
.y2a{bottom:666.465000px;}
.y70{bottom:675.465000px;}
.y49{bottom:679.065000px;}
.y6f{bottom:703.185000px;}
.y6e{bottom:730.905000px;}
.y6d{bottom:758.625000px;}
.y6c{bottom:786.525000px;}
.y6b{bottom:814.245000px;}
.ye{bottom:836.925000px;}
.y6a{bottom:841.965000px;}
.y69{bottom:869.865000px;}
.yd{bottom:873.690000px;}
.y68{bottom:897.630000px;}
.yc{bottom:901.410000px;}
.y67{bottom:925.350000px;}
.yb{bottom:929.310000px;}
.y66{bottom:953.070000px;}
.ya{bottom:957.030000px;}
.y65{bottom:980.970000px;}
.y9{bottom:984.750000px;}
.y64{bottom:1008.690000px;}
.y8{bottom:1013.730000px;}
.y63{bottom:1036.410000px;}
.y7{bottom:1045.590000px;}
.y62{bottom:1064.130000px;}
.y6{bottom:1077.270000px;}
.y61{bottom:1092.030000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1147.500000px;}
.h3{height:22.536000px;}
.ha{height:27.720000px;}
.h8{height:27.900000px;}
.h5{height:58.984453px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.h7{height:60.382969px;}
.he{height:61.329023px;}
.h6{height:67.565039px;}
.hb{height:138.780000px;}
.hd{height:487.335000px;}
.hc{height:499.935000px;}
.h9{height:555.375000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x10{left:10.620000px;}
.x3{left:18.900000px;}
.xf{left:61.194000px;}
.x1{left:95.795987px;}
.x5{left:113.435987px;}
.x13{left:127.835987px;}
.x12{left:138.275987px;}
.x11{left:148.895987px;}
.x9{left:166.529987px;}
.x6{left:175.349987px;}
.xb{left:270.569987px;}
.x7{left:359.354987px;}
.xa{left:400.214987px;}
.x2{left:421.815000px;}
.xc{left:446.474987px;}
.x4{left:451.874987px;}
.x8{left:502.124987px;}
.xe{left:574.305000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.666667pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.024960pt;}
.ls15{letter-spacing:-0.016640pt;}
.ls8{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls14{letter-spacing:0.033280pt;}
.lsf{letter-spacing:0.303360pt;}
.ls16{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.328533pt;}
.ls4{letter-spacing:3.040000pt;}
.lsb{letter-spacing:5.600000pt;}
.ls13{letter-spacing:6.880000pt;}
.ls18{letter-spacing:10.080000pt;}
.ls11{letter-spacing:11.360000pt;}
.lsd{letter-spacing:12.000000pt;}
.lsc{letter-spacing:16.480000pt;}
.ls10{letter-spacing:26.080000pt;}
.lse{letter-spacing:28.640000pt;}
.ls0{letter-spacing:30.560000pt;}
.ls12{letter-spacing:31.200000pt;}
.ls17{letter-spacing:36.143360pt;}
.ls19{letter-spacing:36.783360pt;}
.ls5{letter-spacing:85.066667pt;}
.ws1{word-spacing:-21.280000pt;}
.ws9{word-spacing:-19.048533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.753280pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.711680pt;}
.ws7{word-spacing:-18.703360pt;}
.ws5{word-spacing:-17.760000pt;}
.ws3{word-spacing:0.000000pt;}
._32{margin-left:-5.765760pt;}
._2a{margin-left:-4.043520pt;}
._29{margin-left:-3.022080pt;}
._d{margin-left:-2.021760pt;}
._0{margin-left:-1.021440pt;}
._1{width:1.455787pt;}
._c{width:2.995200pt;}
._7{width:4.070400pt;}
._6{width:4.990080pt;}
._30{width:6.152320pt;}
._28{width:7.311360pt;}
._2f{width:8.461013pt;}
._25{width:9.381120pt;}
._40{width:10.336427pt;}
._17{width:11.306880pt;}
._9{width:13.077120pt;}
._33{width:14.542080pt;}
._14{width:15.500160pt;}
._24{width:16.398720pt;}
._23{width:17.719680pt;}
._15{width:19.741440pt;}
._31{width:20.666880pt;}
._2e{width:22.418987pt;}
._8{width:24.159360pt;}
._f{width:25.090560pt;}
._1e{width:26.357760pt;}
._e{width:27.780480pt;}
._21{width:28.679040pt;}
._19{width:30.272640pt;}
._18{width:31.224960pt;}
._3f{width:32.620800pt;}
._11{width:33.621120pt;}
._1a{width:35.343360pt;}
._1b{width:36.331733pt;}
._37{width:37.303893pt;}
._3c{width:39.027200pt;}
._3d{width:40.524587pt;}
._35{width:41.439573pt;}
._34{width:43.280640pt;}
._41{width:44.853120pt;}
._3e{width:46.051200pt;}
._26{width:50.169600pt;}
._27{width:51.116160pt;}
._20{width:53.763840pt;}
._12{width:55.560960pt;}
._13{width:56.511787pt;}
._a{width:58.032000pt;}
._b{width:59.889707pt;}
._3{width:64.233600pt;}
._2{width:65.132160pt;}
._1c{width:71.483520pt;}
._22{width:73.232640pt;}
._2c{width:77.575680pt;}
._3a{width:79.570560pt;}
._2b{width:84.577067pt;}
._4{width:86.561280pt;}
._5{width:87.630720pt;}
._36{width:93.348480pt;}
._42{width:96.468267pt;}
._43{width:97.392640pt;}
._39{width:107.126400pt;}
._38{width:108.024960pt;}
._10{width:111.346560pt;}
._3b{width:121.595947pt;}
._2d{width:122.728320pt;}
._16{width:174.069120pt;}
._1f{width:177.016320pt;}
._1d{width:234.823680pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y24{bottom:7.200000pt;}
.yf{bottom:7.360000pt;}
.y48{bottom:31.834667pt;}
.y23{bottom:31.840000pt;}
.y38{bottom:32.000000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y29{bottom:56.474667pt;}
.y22{bottom:56.520000pt;}
.y37{bottom:56.640000pt;}
.y28{bottom:81.274667pt;}
.y36{bottom:81.280000pt;}
.y21{bottom:81.320000pt;}
.y60{bottom:92.512000pt;}
.y26{bottom:100.192000pt;}
.y27{bottom:105.914667pt;}
.y20{bottom:105.960000pt;}
.y35{bottom:106.080000pt;}
.y84{bottom:106.592000pt;}
.y5f{bottom:117.152000pt;}
.y3a{bottom:122.112000pt;}
.y47{bottom:130.554667pt;}
.y1f{bottom:130.600000pt;}
.y34{bottom:130.720000pt;}
.y83{bottom:131.232000pt;}
.y5e{bottom:141.786667pt;}
.y46{bottom:155.194667pt;}
.y33{bottom:155.360000pt;}
.y1e{bottom:155.400000pt;}
.y82{bottom:156.026667pt;}
.y5d{bottom:166.426667pt;}
.y32{bottom:180.000000pt;}
.y45{bottom:180.034667pt;}
.y1d{bottom:180.040000pt;}
.y81{bottom:180.666667pt;}
.y5c{bottom:191.226667pt;}
.y44{bottom:204.674667pt;}
.y1c{bottom:204.680000pt;}
.y31{bottom:204.840000pt;}
.y80{bottom:205.306667pt;}
.y5b{bottom:215.866667pt;}
.y25{bottom:224.186667pt;}
.y43{bottom:229.314667pt;}
.y1b{bottom:229.320000pt;}
.y30{bottom:229.480000pt;}
.y7f{bottom:229.946667pt;}
.y5a{bottom:240.506667pt;}
.y10{bottom:249.626667pt;}
.y42{bottom:254.114667pt;}
.y1a{bottom:254.120000pt;}
.y7e{bottom:254.746667pt;}
.y59{bottom:265.146667pt;}
.y41{bottom:278.754667pt;}
.y19{bottom:278.760000pt;}
.y7d{bottom:279.386667pt;}
.y58{bottom:289.946667pt;}
.y40{bottom:303.394667pt;}
.y18{bottom:303.426667pt;}
.y2f{bottom:303.560000pt;}
.y7c{bottom:304.066667pt;}
.y57{bottom:314.626667pt;}
.y3f{bottom:328.034667pt;}
.y17{bottom:328.066667pt;}
.y2e{bottom:328.200000pt;}
.y7b{bottom:328.866667pt;}
.y56{bottom:339.266667pt;}
.y3e{bottom:352.834667pt;}
.y2d{bottom:352.840000pt;}
.y16{bottom:352.866667pt;}
.y7a{bottom:353.506667pt;}
.y55{bottom:364.066667pt;}
.y3d{bottom:377.474667pt;}
.y15{bottom:377.506667pt;}
.y2c{bottom:377.640000pt;}
.y79{bottom:378.146667pt;}
.y54{bottom:388.706667pt;}
.y4b{bottom:391.080000pt;}
.y3c{bottom:402.114667pt;}
.y14{bottom:402.146667pt;}
.y2b{bottom:402.280000pt;}
.y78{bottom:402.786667pt;}
.y53{bottom:413.346667pt;}
.y4a{bottom:415.746667pt;}
.y3b{bottom:426.941333pt;}
.y13{bottom:426.946667pt;}
.y77{bottom:427.586667pt;}
.y52{bottom:437.986667pt;}
.y12{bottom:451.586667pt;}
.y76{bottom:452.226667pt;}
.y51{bottom:462.786667pt;}
.y11{bottom:476.226667pt;}
.y75{bottom:476.866667pt;}
.y50{bottom:487.426667pt;}
.y74{bottom:501.506667pt;}
.y4f{bottom:512.066667pt;}
.y73{bottom:526.306667pt;}
.y4e{bottom:536.893333pt;}
.y72{bottom:550.973333pt;}
.y4d{bottom:561.533333pt;}
.y39{bottom:567.133333pt;}
.y71{bottom:575.613333pt;}
.y4c{bottom:586.173333pt;}
.y2a{bottom:592.413333pt;}
.y70{bottom:600.413333pt;}
.y49{bottom:603.613333pt;}
.y6f{bottom:625.053333pt;}
.y6e{bottom:649.693333pt;}
.y6d{bottom:674.333333pt;}
.y6c{bottom:699.133333pt;}
.y6b{bottom:723.773333pt;}
.ye{bottom:743.933333pt;}
.y6a{bottom:748.413333pt;}
.y69{bottom:773.213333pt;}
.yd{bottom:776.613333pt;}
.y68{bottom:797.893333pt;}
.yc{bottom:801.253333pt;}
.y67{bottom:822.533333pt;}
.yb{bottom:826.053333pt;}
.y66{bottom:847.173333pt;}
.ya{bottom:850.693333pt;}
.y65{bottom:871.973333pt;}
.y9{bottom:875.333333pt;}
.y64{bottom:896.613333pt;}
.y8{bottom:901.093333pt;}
.y63{bottom:921.253333pt;}
.y7{bottom:929.413333pt;}
.y62{bottom:945.893333pt;}
.y6{bottom:957.573333pt;}
.y61{bottom:970.693333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1020.000000pt;}
.h3{height:20.032000pt;}
.ha{height:24.640000pt;}
.h8{height:24.800000pt;}
.h5{height:52.430625pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.h7{height:53.673750pt;}
.he{height:54.514687pt;}
.h6{height:60.057813pt;}
.hb{height:123.360000pt;}
.hd{height:433.186667pt;}
.hc{height:444.386667pt;}
.h9{height:493.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x10{left:9.440000pt;}
.x3{left:16.800000pt;}
.xf{left:54.394667pt;}
.x1{left:85.151988pt;}
.x5{left:100.831988pt;}
.x13{left:113.631988pt;}
.x12{left:122.911988pt;}
.x11{left:132.351988pt;}
.x9{left:148.026655pt;}
.x6{left:155.866655pt;}
.xb{left:240.506655pt;}
.x7{left:319.426655pt;}
.xa{left:355.746655pt;}
.x2{left:374.946667pt;}
.xc{left:396.866655pt;}
.x4{left:401.666655pt;}
.x8{left:446.333322pt;}
.xe{left:510.493333pt;}
}




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