
    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_f7b3df05ff9a0bb22903fe6d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.034180;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_a33b9975d5f5124d981a3070.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5f87ad51b437afd35f245e18.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_9b67c090bc79e4af85040c65.woff')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_29a2f6de902e8bb7cf6f07bb.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_78d30e69fb2743af16941580.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_e391381a13cd8d08a3ab7438.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-95.160000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.369600px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls17{letter-spacing:0.073440px;}
.lsc{letter-spacing:0.205440px;}
.ls14{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.421200px;}
.ls2{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.684000px;}
.lsb{letter-spacing:1.080000px;}
.lse{letter-spacing:1.260000px;}
.lsa{letter-spacing:2.502000px;}
.ls10{letter-spacing:5.040000px;}
.ls12{letter-spacing:7.020000px;}
.ls15{letter-spacing:9.180000px;}
.ls13{letter-spacing:11.340000px;}
.ls8{letter-spacing:13.620000px;}
.lsd{letter-spacing:17.621280px;}
.ls11{letter-spacing:17.820000px;}
.ls1a{letter-spacing:21.941280px;}
.lsf{letter-spacing:28.620000px;}
.ls5{letter-spacing:30.780000px;}
.ls16{letter-spacing:39.540000px;}
.ls18{letter-spacing:39.600000px;}
.ls6{letter-spacing:54.540000px;}
.ls4{letter-spacing:195.072000px;}
.ls3{letter-spacing:508.440000px;}
.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;}
}
.ws5{word-spacing:-22.140000px;}
.ws7{word-spacing:-21.744000px;}
.ws4{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.690400px;}
.ws6{word-spacing:-19.980000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-5.011200px;}
._5{margin-left:-3.847680px;}
._0{margin-left:-2.782080px;}
._3{margin-left:-1.727040px;}
._1{width:1.284000px;}
._4{width:2.856960px;}
._6{width:3.908880px;}
._14{width:4.909440px;}
._9{width:6.193200px;}
._8{width:7.216560px;}
._2f{width:8.718240px;}
._2e{width:10.092720px;}
._30{width:11.364960px;}
._f{width:12.910560px;}
._11{width:14.113920px;}
._10{width:15.610560px;}
._a{width:17.726880px;}
._3b{width:18.813120px;}
._b{width:19.828560px;}
._15{width:22.323840px;}
._2c{width:23.453040px;}
._16{width:24.987840px;}
._25{width:26.220720px;}
._13{width:27.588720px;}
._12{width:28.747680px;}
._31{width:29.880240px;}
._19{width:30.897840px;}
._2d{width:32.181120px;}
._21{width:33.443520px;}
._d{width:34.986960px;}
._e{width:36.297600px;}
._c{width:37.889760px;}
._1f{width:39.003360px;}
._26{width:40.026960px;}
._36{width:41.299440px;}
._37{width:42.431280px;}
._18{width:43.656000px;}
._17{width:45.863040px;}
._20{width:47.568240px;}
._1a{width:48.679920px;}
._3c{width:50.712720px;}
._29{width:52.517040px;}
._1b{width:53.898000px;}
._1c{width:55.088640px;}
._1e{width:56.314080px;}
._1d{width:57.517920px;}
._3a{width:58.803120px;}
._33{width:60.443760px;}
._32{width:61.458960px;}
._23{width:62.530080px;}
._24{width:63.806160px;}
._40{width:65.013360px;}
._3f{width:66.467280px;}
._3d{width:67.688400px;}
._3e{width:69.004560px;}
._2a{width:71.499360px;}
._2b{width:73.580400px;}
._34{width:75.901440px;}
._35{width:77.284560px;}
._28{width:78.471600px;}
._27{width:80.826240px;}
._38{width:86.939280px;}
._39{width:88.915440px;}
._22{width:186.171840px;}
._7{width:195.072000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs2{font-size:60.480000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:120.960000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.860000px;}
.y3{bottom:42.660000px;}
.y4a{bottom:52.956000px;}
.y69{bottom:58.896000px;}
.y2c{bottom:59.976000px;}
.y49{bottom:77.256000px;}
.y2b{bottom:84.276000px;}
.y68{bottom:85.356000px;}
.y2{bottom:85.365000px;}
.y48{bottom:101.556000px;}
.y2a{bottom:108.036000px;}
.y67{bottom:111.276000px;}
.y47{bottom:125.316000px;}
.y29{bottom:132.372000px;}
.y66{bottom:137.232000px;}
.y46{bottom:149.652000px;}
.y28{bottom:156.675000px;}
.y65{bottom:160.995000px;}
.y45{bottom:173.955000px;}
.y88{bottom:176.655000px;}
.y27{bottom:180.975000px;}
.y64{bottom:185.295000px;}
.y44{bottom:197.715000px;}
.y26{bottom:204.735000px;}
.y63{bottom:209.595000px;}
.y87{bottom:215.565000px;}
.y43{bottom:222.045000px;}
.y25{bottom:229.065000px;}
.y62{bottom:233.385000px;}
.y86{bottom:241.485000px;}
.y42{bottom:246.345000px;}
.y24{bottom:253.365000px;}
.y61{bottom:257.685000px;}
.y85{bottom:267.405000px;}
.y41{bottom:270.645000px;}
.y23{bottom:277.665000px;}
.y60{bottom:281.985000px;}
.y84{bottom:293.325000px;}
.y40{bottom:294.405000px;}
.y22{bottom:301.470000px;}
.y5f{bottom:306.330000px;}
.y3f{bottom:318.750000px;}
.y83{bottom:319.830000px;}
.y21{bottom:325.770000px;}
.y5e{bottom:330.090000px;}
.y3e{bottom:343.050000px;}
.y82{bottom:345.750000px;}
.y20{bottom:350.070000px;}
.y5d{bottom:354.390000px;}
.y3d{bottom:366.810000px;}
.y81{bottom:371.670000px;}
.y1f{bottom:373.830000px;}
.y5c{bottom:378.690000px;}
.y3c{bottom:391.140000px;}
.y1e{bottom:398.160000px;}
.y5b{bottom:402.480000px;}
.y3b{bottom:415.440000px;}
.y1d{bottom:422.460000px;}
.y80{bottom:424.080000px;}
.y5a{bottom:426.780000px;}
.y73{bottom:429.480000px;}
.y3a{bottom:439.740000px;}
.y1c{bottom:446.760000px;}
.y7f{bottom:450.000000px;}
.y59{bottom:451.080000px;}
.y72{bottom:455.940000px;}
.y39{bottom:463.500000px;}
.y1b{bottom:470.550000px;}
.y58{bottom:475.410000px;}
.y7e{bottom:475.950000px;}
.y71{bottom:481.890000px;}
.y38{bottom:487.830000px;}
.y1a{bottom:494.850000px;}
.y57{bottom:499.170000px;}
.y7d{bottom:502.410000px;}
.y70{bottom:507.810000px;}
.y37{bottom:512.130000px;}
.y19{bottom:519.150000px;}
.y56{bottom:523.470000px;}
.y7c{bottom:528.330000px;}
.y6f{bottom:533.730000px;}
.y18{bottom:542.910000px;}
.y55{bottom:547.770000px;}
.y36{bottom:550.515000px;}
.y7b{bottom:554.295000px;}
.y6e{bottom:560.235000px;}
.y17{bottom:567.255000px;}
.y54{bottom:571.575000px;}
.y35{bottom:576.435000px;}
.y7a{bottom:580.215000px;}
.y6d{bottom:586.155000px;}
.y16{bottom:591.555000px;}
.y53{bottom:595.875000px;}
.y34{bottom:602.895000px;}
.y79{bottom:606.675000px;}
.y6c{bottom:612.075000px;}
.y15{bottom:615.855000px;}
.y52{bottom:620.175000px;}
.y33{bottom:628.815000px;}
.y78{bottom:632.595000px;}
.y6b{bottom:638.025000px;}
.y14{bottom:639.645000px;}
.y51{bottom:644.505000px;}
.y32{bottom:654.765000px;}
.y77{bottom:658.545000px;}
.y13{bottom:663.945000px;}
.y6a{bottom:664.485000px;}
.y50{bottom:668.265000px;}
.y31{bottom:680.685000px;}
.y76{bottom:684.465000px;}
.y12{bottom:688.245000px;}
.y4f{bottom:692.565000px;}
.y30{bottom:707.145000px;}
.y75{bottom:710.925000px;}
.y11{bottom:712.005000px;}
.y4e{bottom:730.950000px;}
.y2f{bottom:733.110000px;}
.y10{bottom:736.350000px;}
.y74{bottom:736.890000px;}
.y4d{bottom:757.410000px;}
.y2e{bottom:759.030000px;}
.yf{bottom:760.650000px;}
.y4c{bottom:783.330000px;}
.y2d{bottom:784.950000px;}
.ye{bottom:808.740000px;}
.y4b{bottom:809.280000px;}
.yd{bottom:833.040000px;}
.yc{bottom:857.340000px;}
.yb{bottom:881.100000px;}
.ya{bottom:905.430000px;}
.y9{bottom:929.730000px;}
.y8{bottom:954.030000px;}
.y7{bottom:977.835000px;}
.y6{bottom:1002.135000px;}
.y1{bottom:1084.785000px;}
.y5{bottom:1261.980000px;}
.h7{height:59.066719px;}
.h6{height:59.357813px;}
.h4{height:82.676953px;}
.h5{height:84.898125px;}
.h8{height:86.585445px;}
.h3{height:101.941875px;}
.h2{height:115.596000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:277.740000px;}
.w3{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.620000px;}
.x3{left:18.390000px;}
.x4{left:93.480000px;}
.x5{left:118.331987px;}
.x6{left:144.791987px;}
.x10{left:165.884987px;}
.xe{left:171.284987px;}
.xf{left:172.364987px;}
.x11{left:192.884987px;}
.x7{left:245.849987px;}
.xd{left:250.709987px;}
.xb{left:258.809987px;}
.x8{left:302.579987px;}
.xa{left:306.359987px;}
.xc{left:307.979987px;}
.x12{left:329.609987px;}
.x9{left:451.724987px;}
.x1{left:553.290000px;}
@media print{
.v1{vertical-align:-84.586667pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.328533pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls17{letter-spacing:0.065280pt;}
.lsc{letter-spacing:0.182613pt;}
.ls14{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.374400pt;}
.ls2{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.608000pt;}
.lsb{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.120000pt;}
.lsa{letter-spacing:2.224000pt;}
.ls10{letter-spacing:4.480000pt;}
.ls12{letter-spacing:6.240000pt;}
.ls15{letter-spacing:8.160000pt;}
.ls13{letter-spacing:10.080000pt;}
.ls8{letter-spacing:12.106667pt;}
.lsd{letter-spacing:15.663360pt;}
.ls11{letter-spacing:15.840000pt;}
.ls1a{letter-spacing:19.503360pt;}
.lsf{letter-spacing:25.440000pt;}
.ls5{letter-spacing:27.360000pt;}
.ls16{letter-spacing:35.146667pt;}
.ls18{letter-spacing:35.200000pt;}
.ls6{letter-spacing:48.480000pt;}
.ls4{letter-spacing:173.397333pt;}
.ls3{letter-spacing:451.946667pt;}
.ws5{word-spacing:-19.680000pt;}
.ws7{word-spacing:-19.328000pt;}
.ws4{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.391467pt;}
.ws6{word-spacing:-17.760000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-4.454400pt;}
._5{margin-left:-3.420160pt;}
._0{margin-left:-2.472960pt;}
._3{margin-left:-1.535147pt;}
._1{width:1.141333pt;}
._4{width:2.539520pt;}
._6{width:3.474560pt;}
._14{width:4.363947pt;}
._9{width:5.505067pt;}
._8{width:6.414720pt;}
._2f{width:7.749547pt;}
._2e{width:8.971307pt;}
._30{width:10.102187pt;}
._f{width:11.476053pt;}
._11{width:12.545707pt;}
._10{width:13.876053pt;}
._a{width:15.757227pt;}
._3b{width:16.722773pt;}
._b{width:17.625387pt;}
._15{width:19.843413pt;}
._2c{width:20.847147pt;}
._16{width:22.211413pt;}
._25{width:23.307307pt;}
._13{width:24.523307pt;}
._12{width:25.553493pt;}
._31{width:26.560213pt;}
._19{width:27.464747pt;}
._2d{width:28.605440pt;}
._21{width:29.727573pt;}
._d{width:31.099520pt;}
._e{width:32.264533pt;}
._c{width:33.679787pt;}
._1f{width:34.669653pt;}
._26{width:35.579520pt;}
._36{width:36.710613pt;}
._37{width:37.716693pt;}
._18{width:38.805333pt;}
._17{width:40.767147pt;}
._20{width:42.282880pt;}
._1a{width:43.271040pt;}
._3c{width:45.077973pt;}
._29{width:46.681813pt;}
._1b{width:47.909333pt;}
._1c{width:48.967680pt;}
._1e{width:50.056960pt;}
._1d{width:51.127040pt;}
._3a{width:52.269440pt;}
._33{width:53.727787pt;}
._32{width:54.630187pt;}
._23{width:55.582293pt;}
._24{width:56.716587pt;}
._40{width:57.789653pt;}
._3f{width:59.082027pt;}
._3d{width:60.167467pt;}
._3e{width:61.337387pt;}
._2a{width:63.554987pt;}
._2b{width:65.404800pt;}
._34{width:67.467947pt;}
._35{width:68.697387pt;}
._28{width:69.752533pt;}
._27{width:71.845547pt;}
._38{width:77.279360pt;}
._39{width:79.035947pt;}
._22{width:165.486080pt;}
._7{width:173.397333pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:107.520000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.320000pt;}
.y3{bottom:37.920000pt;}
.y4a{bottom:47.072000pt;}
.y69{bottom:52.352000pt;}
.y2c{bottom:53.312000pt;}
.y49{bottom:68.672000pt;}
.y2b{bottom:74.912000pt;}
.y68{bottom:75.872000pt;}
.y2{bottom:75.880000pt;}
.y48{bottom:90.272000pt;}
.y2a{bottom:96.032000pt;}
.y67{bottom:98.912000pt;}
.y47{bottom:111.392000pt;}
.y29{bottom:117.664000pt;}
.y66{bottom:121.984000pt;}
.y46{bottom:133.024000pt;}
.y28{bottom:139.266667pt;}
.y65{bottom:143.106667pt;}
.y45{bottom:154.626667pt;}
.y88{bottom:157.026667pt;}
.y27{bottom:160.866667pt;}
.y64{bottom:164.706667pt;}
.y44{bottom:175.746667pt;}
.y26{bottom:181.986667pt;}
.y63{bottom:186.306667pt;}
.y87{bottom:191.613333pt;}
.y43{bottom:197.373333pt;}
.y25{bottom:203.613333pt;}
.y62{bottom:207.453333pt;}
.y86{bottom:214.653333pt;}
.y42{bottom:218.973333pt;}
.y24{bottom:225.213333pt;}
.y61{bottom:229.053333pt;}
.y85{bottom:237.693333pt;}
.y41{bottom:240.573333pt;}
.y23{bottom:246.813333pt;}
.y60{bottom:250.653333pt;}
.y84{bottom:260.733333pt;}
.y40{bottom:261.693333pt;}
.y22{bottom:267.973333pt;}
.y5f{bottom:272.293333pt;}
.y3f{bottom:283.333333pt;}
.y83{bottom:284.293333pt;}
.y21{bottom:289.573333pt;}
.y5e{bottom:293.413333pt;}
.y3e{bottom:304.933333pt;}
.y82{bottom:307.333333pt;}
.y20{bottom:311.173333pt;}
.y5d{bottom:315.013333pt;}
.y3d{bottom:326.053333pt;}
.y81{bottom:330.373333pt;}
.y1f{bottom:332.293333pt;}
.y5c{bottom:336.613333pt;}
.y3c{bottom:347.680000pt;}
.y1e{bottom:353.920000pt;}
.y5b{bottom:357.760000pt;}
.y3b{bottom:369.280000pt;}
.y1d{bottom:375.520000pt;}
.y80{bottom:376.960000pt;}
.y5a{bottom:379.360000pt;}
.y73{bottom:381.760000pt;}
.y3a{bottom:390.880000pt;}
.y1c{bottom:397.120000pt;}
.y7f{bottom:400.000000pt;}
.y59{bottom:400.960000pt;}
.y72{bottom:405.280000pt;}
.y39{bottom:412.000000pt;}
.y1b{bottom:418.266667pt;}
.y58{bottom:422.586667pt;}
.y7e{bottom:423.066667pt;}
.y71{bottom:428.346667pt;}
.y38{bottom:433.626667pt;}
.y1a{bottom:439.866667pt;}
.y57{bottom:443.706667pt;}
.y7d{bottom:446.586667pt;}
.y70{bottom:451.386667pt;}
.y37{bottom:455.226667pt;}
.y19{bottom:461.466667pt;}
.y56{bottom:465.306667pt;}
.y7c{bottom:469.626667pt;}
.y6f{bottom:474.426667pt;}
.y18{bottom:482.586667pt;}
.y55{bottom:486.906667pt;}
.y36{bottom:489.346667pt;}
.y7b{bottom:492.706667pt;}
.y6e{bottom:497.986667pt;}
.y17{bottom:504.226667pt;}
.y54{bottom:508.066667pt;}
.y35{bottom:512.386667pt;}
.y7a{bottom:515.746667pt;}
.y6d{bottom:521.026667pt;}
.y16{bottom:525.826667pt;}
.y53{bottom:529.666667pt;}
.y34{bottom:535.906667pt;}
.y79{bottom:539.266667pt;}
.y6c{bottom:544.066667pt;}
.y15{bottom:547.426667pt;}
.y52{bottom:551.266667pt;}
.y33{bottom:558.946667pt;}
.y78{bottom:562.306667pt;}
.y6b{bottom:567.133333pt;}
.y14{bottom:568.573333pt;}
.y51{bottom:572.893333pt;}
.y32{bottom:582.013333pt;}
.y77{bottom:585.373333pt;}
.y13{bottom:590.173333pt;}
.y6a{bottom:590.653333pt;}
.y50{bottom:594.013333pt;}
.y31{bottom:605.053333pt;}
.y76{bottom:608.413333pt;}
.y12{bottom:611.773333pt;}
.y4f{bottom:615.613333pt;}
.y30{bottom:628.573333pt;}
.y75{bottom:631.933333pt;}
.y11{bottom:632.893333pt;}
.y4e{bottom:649.733333pt;}
.y2f{bottom:651.653333pt;}
.y10{bottom:654.533333pt;}
.y74{bottom:655.013333pt;}
.y4d{bottom:673.253333pt;}
.y2e{bottom:674.693333pt;}
.yf{bottom:676.133333pt;}
.y4c{bottom:696.293333pt;}
.y2d{bottom:697.733333pt;}
.ye{bottom:718.880000pt;}
.y4b{bottom:719.360000pt;}
.yd{bottom:740.480000pt;}
.yc{bottom:762.080000pt;}
.yb{bottom:783.200000pt;}
.ya{bottom:804.826667pt;}
.y9{bottom:826.426667pt;}
.y8{bottom:848.026667pt;}
.y7{bottom:869.186667pt;}
.y6{bottom:890.786667pt;}
.y1{bottom:964.253333pt;}
.y5{bottom:1121.760000pt;}
.h7{height:52.503750pt;}
.h6{height:52.762500pt;}
.h4{height:73.490625pt;}
.h5{height:75.465000pt;}
.h8{height:76.964840pt;}
.h3{height:90.615000pt;}
.h2{height:102.752000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:246.880000pt;}
.w3{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.440000pt;}
.x3{left:16.346667pt;}
.x4{left:83.093333pt;}
.x5{left:105.183988pt;}
.x6{left:128.703988pt;}
.x10{left:147.453322pt;}
.xe{left:152.253322pt;}
.xf{left:153.213322pt;}
.x11{left:171.453322pt;}
.x7{left:218.533322pt;}
.xd{left:222.853322pt;}
.xb{left:230.053322pt;}
.x8{left:268.959988pt;}
.xa{left:272.319988pt;}
.xc{left:273.759988pt;}
.x12{left:292.986655pt;}
.x9{left:401.533322pt;}
.x1{left:491.813333pt;}
}




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