
    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_194157261a63776bd8f682a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_200dfa9a5dbafd16b827d1d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_88a8b7e6ec882f363375b46a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_39654e63a4f4f37b5320065e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138000;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_39d4a2f5fc67509f5349c65b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_2c7e42c292bbfa5147c7548f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.138000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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;}
.ls8{letter-spacing:-0.130800px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.008640px;}
.ls9{letter-spacing:0.012240px;}
.lsa{letter-spacing:0.066240px;}
.lsb{letter-spacing:0.129600px;}
.ls3{letter-spacing:0.157200px;}
.lse{letter-spacing:0.269400px;}
.lsd{letter-spacing:0.287400px;}
.ls7{letter-spacing:0.288000px;}
.lsc{letter-spacing:45.701280px;}
.ls6{letter-spacing:64.026720px;}
.ls2{letter-spacing:132.984000px;}
.ls4{letter-spacing:834.276000px;}
.ls1{letter-spacing:840.881280px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws4{word-spacing:-25.236000px;}
.ws5{word-spacing:-24.948000px;}
.ws8{word-spacing:-19.746840px;}
.ws9{word-spacing:-19.728840px;}
.ws2{word-spacing:-19.616640px;}
.ws1{word-spacing:-19.468080px;}
.ws3{word-spacing:-19.459440px;}
.ws6{word-spacing:-19.328640px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-15.220800px;}
._3{margin-left:-11.437920px;}
._9{margin-left:-10.080000px;}
._8{margin-left:-8.582880px;}
._4{margin-left:-5.727120px;}
._2b{margin-left:-4.624320px;}
._6{margin-left:-3.552480px;}
._0{margin-left:-2.404800px;}
._1{margin-left:-1.245120px;}
._2{width:1.202400px;}
._7{width:2.376000px;}
._1c{width:3.450000px;}
._18{width:4.782000px;}
._17{width:5.794080px;}
._12{width:7.177680px;}
._11{width:8.405520px;}
._16{width:9.683280px;}
._25{width:10.848480px;}
._14{width:12.888720px;}
._15{width:14.250960px;}
._10{width:15.890160px;}
._d{width:16.909680px;}
._c{width:17.989200px;}
._19{width:20.554560px;}
._27{width:22.473600px;}
._2d{width:23.502960px;}
._26{width:27.547680px;}
._22{width:28.790400px;}
._e{width:29.802480px;}
._f{width:31.636080px;}
._20{width:33.274800px;}
._21{width:34.519920px;}
._1f{width:37.318320px;}
._1d{width:38.918880px;}
._1e{width:39.995520px;}
._1a{width:41.867280px;}
._1b{width:42.925440px;}
._b{width:44.597520px;}
._a{width:45.955200px;}
._13{width:46.961520px;}
._2a{width:53.071200px;}
._29{width:54.232080px;}
._2c{width:55.279920px;}
._28{width:59.118000px;}
._23{width:62.758800px;}
._24{width:64.068480px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(0,76,62);}
.fc2{color:rgb(39,83,23);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:44.145000px;}
.y2{bottom:56.916000px;}
.y3{bottom:64.836000px;}
.y9{bottom:81.225000px;}
.y7c{bottom:92.196000px;}
.y58{bottom:92.556000px;}
.y7b{bottom:119.916000px;}
.y37{bottom:120.096000px;}
.y57{bottom:120.276000px;}
.y7a{bottom:147.636000px;}
.y36{bottom:147.816000px;}
.y56{bottom:147.996000px;}
.y79{bottom:175.530000px;}
.y61{bottom:175.710000px;}
.y35{bottom:187.590000px;}
.y55{bottom:196.770000px;}
.y34{bottom:215.310000px;}
.y78{bottom:216.030000px;}
.y54{bottom:224.490000px;}
.y77{bottom:251.850000px;}
.y53{bottom:252.210000px;}
.y33{bottom:255.090000px;}
.y8{bottom:266.070000px;}
.y52{bottom:279.930000px;}
.y32{bottom:294.915000px;}
.y51{bottom:307.875000px;}
.y76{bottom:312.555000px;}
.y31{bottom:334.695000px;}
.y50{bottom:335.595000px;}
.y75{bottom:352.335000px;}
.y4f{bottom:363.315000px;}
.y30{bottom:370.515000px;}
.y74{bottom:380.055000px;}
.y4e{bottom:391.035000px;}
.y73{bottom:407.775000px;}
.y60{bottom:418.755000px;}
.y1b{bottom:420.375000px;}
.y2f{bottom:431.175000px;}
.y72{bottom:435.495000px;}
.y4d{bottom:439.815000px;}
.y5f{bottom:446.475000px;}
.y1a{bottom:453.135000px;}
.y2e{bottom:458.895000px;}
.y71{bottom:463.395000px;}
.y4c{bottom:467.535000px;}
.y5e{bottom:474.195000px;}
.y2d{bottom:486.615000px;}
.y70{bottom:491.115000px;}
.y4b{bottom:495.255000px;}
.y8f{bottom:498.135000px;}
.y5d{bottom:502.095000px;}
.y19{bottom:504.615000px;}
.y2c{bottom:514.335000px;}
.y6f{bottom:518.835000px;}
.y4a{bottom:522.975000px;}
.y5c{bottom:529.815000px;}
.y6c{bottom:530.895000px;}
.y8e{bottom:536.115000px;}
.y2b{bottom:542.055000px;}
.y18{bottom:544.395000px;}
.y49{bottom:550.695000px;}
.y6e{bottom:554.655000px;}
.y6b{bottom:558.615000px;}
.y2a{bottom:569.805000px;}
.y8d{bottom:574.125000px;}
.y17{bottom:574.305000px;}
.y7{bottom:577.185000px;}
.y48{bottom:578.625000px;}
.y6a{bottom:586.365000px;}
.y29{bottom:597.705000px;}
.y47{bottom:606.345000px;}
.y8c{bottom:612.285000px;}
.y69{bottom:614.085000px;}
.y6d{bottom:615.345000px;}
.y6{bottom:616.965000px;}
.y28{bottom:625.425000px;}
.y16{bottom:628.125000px;}
.y46{bottom:634.065000px;}
.y68{bottom:649.905000px;}
.y8b{bottom:652.065000px;}
.y27{bottom:653.145000px;}
.y45{bottom:661.785000px;}
.y26{bottom:680.865000px;}
.y15{bottom:681.765000px;}
.y44{bottom:689.505000px;}
.y8a{bottom:691.665000px;}
.y67{bottom:710.565000px;}
.y43{bottom:717.225000px;}
.y89{bottom:719.565000px;}
.y25{bottom:720.645000px;}
.y14{bottom:735.405000px;}
.y66{bottom:738.285000px;}
.y42{bottom:745.125000px;}
.y24{bottom:756.465000px;}
.y88{bottom:760.245000px;}
.y65{bottom:766.005000px;}
.y41{bottom:772.845000px;}
.y13{bottom:789.045000px;}
.y64{bottom:793.725000px;}
.y87{bottom:799.845000px;}
.y40{bottom:800.565000px;}
.y23{bottom:819.285000px;}
.y63{bottom:821.625000px;}
.y86{bottom:827.745000px;}
.y3f{bottom:828.285000px;}
.y12{bottom:840.525000px;}
.y62{bottom:849.390000px;}
.y85{bottom:855.510000px;}
.y22{bottom:861.810000px;}
.y11{bottom:875.850000px;}
.y3e{bottom:877.110000px;}
.y21{bottom:894.210000px;}
.y84{bottom:895.290000px;}
.y3d{bottom:904.830000px;}
.y10{bottom:911.130000px;}
.y83{bottom:923.010000px;}
.y20{bottom:931.830000px;}
.y3c{bottom:932.550000px;}
.yf{bottom:946.410000px;}
.y82{bottom:951.630000px;}
.y3b{bottom:960.270000px;}
.y81{bottom:979.350000px;}
.y1f{bottom:979.530000px;}
.y5b{bottom:981.330000px;}
.ye{bottom:981.690000px;}
.y3a{bottom:987.990000px;}
.y80{bottom:1007.250000px;}
.y5a{bottom:1009.050000px;}
.y1e{bottom:1015.170000px;}
.y39{bottom:1015.890000px;}
.yd{bottom:1016.970000px;}
.y7f{bottom:1035.870000px;}
.y59{bottom:1036.770000px;}
.y1d{bottom:1050.810000px;}
.y5{bottom:1052.610000px;}
.yc{bottom:1056.570000px;}
.y7e{bottom:1063.590000px;}
.y38{bottom:1064.490000px;}
.yb{bottom:1086.450000px;}
.y1c{bottom:1086.630000px;}
.y7d{bottom:1091.490000px;}
.y4{bottom:1092.390000px;}
.y1{bottom:1189.620000px;}
.h9{height:61.735680px;}
.h2{height:78.511680px;}
.h3{height:86.585445px;}
.h6{height:100.656000px;}
.h7{height:102.600000px;}
.h4{height:110.016000px;}
.ha{height:111.006981px;}
.h5{height:112.063680px;}
.h8{height:112.429688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:622.725000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:81.714000px;}
.x1{left:84.959987px;}
.xc{left:111.995987px;}
.x6{left:131.075987px;}
.x7{left:133.775987px;}
.x2{left:135.216000px;}
.xd{left:138.995987px;}
.x4{left:177.159000px;}
.x5{left:183.269987px;}
.xb{left:220.709987px;}
.xa{left:321.374987px;}
.x8{left:348.734987px;}
.x9{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.116267pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007680pt;}
.ls9{letter-spacing:0.010880pt;}
.lsa{letter-spacing:0.058880pt;}
.lsb{letter-spacing:0.115200pt;}
.ls3{letter-spacing:0.139733pt;}
.lse{letter-spacing:0.239467pt;}
.lsd{letter-spacing:0.255467pt;}
.ls7{letter-spacing:0.256000pt;}
.lsc{letter-spacing:40.623360pt;}
.ls6{letter-spacing:56.912640pt;}
.ls2{letter-spacing:118.208000pt;}
.ls4{letter-spacing:741.578667pt;}
.ls1{letter-spacing:747.450027pt;}
.ws7{word-spacing:-53.120000pt;}
.ws4{word-spacing:-22.432000pt;}
.ws5{word-spacing:-22.176000pt;}
.ws8{word-spacing:-17.552747pt;}
.ws9{word-spacing:-17.536747pt;}
.ws2{word-spacing:-17.437013pt;}
.ws1{word-spacing:-17.304960pt;}
.ws3{word-spacing:-17.297280pt;}
.ws6{word-spacing:-17.181013pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-13.529600pt;}
._3{margin-left:-10.167040pt;}
._9{margin-left:-8.960000pt;}
._8{margin-left:-7.629227pt;}
._4{margin-left:-5.090773pt;}
._2b{margin-left:-4.110507pt;}
._6{margin-left:-3.157760pt;}
._0{margin-left:-2.137600pt;}
._1{margin-left:-1.106773pt;}
._2{width:1.068800pt;}
._7{width:2.112000pt;}
._1c{width:3.066667pt;}
._18{width:4.250667pt;}
._17{width:5.150293pt;}
._12{width:6.380160pt;}
._11{width:7.471573pt;}
._16{width:8.607360pt;}
._25{width:9.643093pt;}
._14{width:11.456640pt;}
._15{width:12.667520pt;}
._10{width:14.124587pt;}
._d{width:15.030827pt;}
._c{width:15.990400pt;}
._19{width:18.270720pt;}
._27{width:19.976533pt;}
._2d{width:20.891520pt;}
._26{width:24.486827pt;}
._22{width:25.591467pt;}
._e{width:26.491093pt;}
._f{width:28.120960pt;}
._20{width:29.577600pt;}
._21{width:30.684373pt;}
._1f{width:33.171840pt;}
._1d{width:34.594560pt;}
._1e{width:35.551573pt;}
._1a{width:37.215360pt;}
._1b{width:38.155947pt;}
._b{width:39.642240pt;}
._a{width:40.849067pt;}
._13{width:41.743573pt;}
._2a{width:47.174400pt;}
._29{width:48.206293pt;}
._2c{width:49.137707pt;}
._28{width:52.549333pt;}
._23{width:55.785600pt;}
._24{width:56.949760pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:39.240000pt;}
.y2{bottom:50.592000pt;}
.y3{bottom:57.632000pt;}
.y9{bottom:72.200000pt;}
.y7c{bottom:81.952000pt;}
.y58{bottom:82.272000pt;}
.y7b{bottom:106.592000pt;}
.y37{bottom:106.752000pt;}
.y57{bottom:106.912000pt;}
.y7a{bottom:131.232000pt;}
.y36{bottom:131.392000pt;}
.y56{bottom:131.552000pt;}
.y79{bottom:156.026667pt;}
.y61{bottom:156.186667pt;}
.y35{bottom:166.746667pt;}
.y55{bottom:174.906667pt;}
.y34{bottom:191.386667pt;}
.y78{bottom:192.026667pt;}
.y54{bottom:199.546667pt;}
.y77{bottom:223.866667pt;}
.y53{bottom:224.186667pt;}
.y33{bottom:226.746667pt;}
.y8{bottom:236.506667pt;}
.y52{bottom:248.826667pt;}
.y32{bottom:262.146667pt;}
.y51{bottom:273.666667pt;}
.y76{bottom:277.826667pt;}
.y31{bottom:297.506667pt;}
.y50{bottom:298.306667pt;}
.y75{bottom:313.186667pt;}
.y4f{bottom:322.946667pt;}
.y30{bottom:329.346667pt;}
.y74{bottom:337.826667pt;}
.y4e{bottom:347.586667pt;}
.y73{bottom:362.466667pt;}
.y60{bottom:372.226667pt;}
.y1b{bottom:373.666667pt;}
.y2f{bottom:383.266667pt;}
.y72{bottom:387.106667pt;}
.y4d{bottom:390.946667pt;}
.y5f{bottom:396.866667pt;}
.y1a{bottom:402.786667pt;}
.y2e{bottom:407.906667pt;}
.y71{bottom:411.906667pt;}
.y4c{bottom:415.586667pt;}
.y5e{bottom:421.506667pt;}
.y2d{bottom:432.546667pt;}
.y70{bottom:436.546667pt;}
.y4b{bottom:440.226667pt;}
.y8f{bottom:442.786667pt;}
.y5d{bottom:446.306667pt;}
.y19{bottom:448.546667pt;}
.y2c{bottom:457.186667pt;}
.y6f{bottom:461.186667pt;}
.y4a{bottom:464.866667pt;}
.y5c{bottom:470.946667pt;}
.y6c{bottom:471.906667pt;}
.y8e{bottom:476.546667pt;}
.y2b{bottom:481.826667pt;}
.y18{bottom:483.906667pt;}
.y49{bottom:489.506667pt;}
.y6e{bottom:493.026667pt;}
.y6b{bottom:496.546667pt;}
.y2a{bottom:506.493333pt;}
.y8d{bottom:510.333333pt;}
.y17{bottom:510.493333pt;}
.y7{bottom:513.053333pt;}
.y48{bottom:514.333333pt;}
.y6a{bottom:521.213333pt;}
.y29{bottom:531.293333pt;}
.y47{bottom:538.973333pt;}
.y8c{bottom:544.253333pt;}
.y69{bottom:545.853333pt;}
.y6d{bottom:546.973333pt;}
.y6{bottom:548.413333pt;}
.y28{bottom:555.933333pt;}
.y16{bottom:558.333333pt;}
.y46{bottom:563.613333pt;}
.y68{bottom:577.693333pt;}
.y8b{bottom:579.613333pt;}
.y27{bottom:580.573333pt;}
.y45{bottom:588.253333pt;}
.y26{bottom:605.213333pt;}
.y15{bottom:606.013333pt;}
.y44{bottom:612.893333pt;}
.y8a{bottom:614.813333pt;}
.y67{bottom:631.613333pt;}
.y43{bottom:637.533333pt;}
.y89{bottom:639.613333pt;}
.y25{bottom:640.573333pt;}
.y14{bottom:653.693333pt;}
.y66{bottom:656.253333pt;}
.y42{bottom:662.333333pt;}
.y24{bottom:672.413333pt;}
.y88{bottom:675.773333pt;}
.y65{bottom:680.893333pt;}
.y41{bottom:686.973333pt;}
.y13{bottom:701.373333pt;}
.y64{bottom:705.533333pt;}
.y87{bottom:710.973333pt;}
.y40{bottom:711.613333pt;}
.y23{bottom:728.253333pt;}
.y63{bottom:730.333333pt;}
.y86{bottom:735.773333pt;}
.y3f{bottom:736.253333pt;}
.y12{bottom:747.133333pt;}
.y62{bottom:755.013333pt;}
.y85{bottom:760.453333pt;}
.y22{bottom:766.053333pt;}
.y11{bottom:778.533333pt;}
.y3e{bottom:779.653333pt;}
.y21{bottom:794.853333pt;}
.y84{bottom:795.813333pt;}
.y3d{bottom:804.293333pt;}
.y10{bottom:809.893333pt;}
.y83{bottom:820.453333pt;}
.y20{bottom:828.293333pt;}
.y3c{bottom:828.933333pt;}
.yf{bottom:841.253333pt;}
.y82{bottom:845.893333pt;}
.y3b{bottom:853.573333pt;}
.y81{bottom:870.533333pt;}
.y1f{bottom:870.693333pt;}
.y5b{bottom:872.293333pt;}
.ye{bottom:872.613333pt;}
.y3a{bottom:878.213333pt;}
.y80{bottom:895.333333pt;}
.y5a{bottom:896.933333pt;}
.y1e{bottom:902.373333pt;}
.y39{bottom:903.013333pt;}
.yd{bottom:903.973333pt;}
.y7f{bottom:920.773333pt;}
.y59{bottom:921.573333pt;}
.y1d{bottom:934.053333pt;}
.y5{bottom:935.653333pt;}
.yc{bottom:939.173333pt;}
.y7e{bottom:945.413333pt;}
.y38{bottom:946.213333pt;}
.yb{bottom:965.733333pt;}
.y1c{bottom:965.893333pt;}
.y7d{bottom:970.213333pt;}
.y4{bottom:971.013333pt;}
.y1{bottom:1057.440000pt;}
.h9{height:54.876160pt;}
.h2{height:69.788160pt;}
.h3{height:76.964840pt;}
.h6{height:89.472000pt;}
.h7{height:91.200000pt;}
.h4{height:97.792000pt;}
.ha{height:98.672872pt;}
.h5{height:99.612160pt;}
.h8{height:99.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:553.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:72.634667pt;}
.x1{left:75.519988pt;}
.xc{left:99.551988pt;}
.x6{left:116.511988pt;}
.x7{left:118.911988pt;}
.x2{left:120.192000pt;}
.xd{left:123.551988pt;}
.x4{left:157.474667pt;}
.x5{left:162.906655pt;}
.xb{left:196.186655pt;}
.xa{left:285.666655pt;}
.x8{left:309.986655pt;}
.x9{left:396.866655pt;}
}




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