
    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_863ece62c34f1bdbc1c13dac.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_637ac78b147a7df55223c214.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_4a59eb3364064b0a57fc8f89.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_42eadcb13e6c7f58804677ba.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a90739369ba0794b1a45723f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7825ba7f7ab78de5b909c0be.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_d1d122a0ffb80d87eccca791.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_67671816688d2e6c18452cb2.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.752000px;}
.lsd{letter-spacing:-1.200000px;}
.ls14{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.552000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.600000px;}
.ls8{letter-spacing:0.828000px;}
.ls1{letter-spacing:1.200000px;}
.ls9{letter-spacing:5.400000px;}
.ls6{letter-spacing:10.200000px;}
.ls11{letter-spacing:16.200000px;}
.lse{letter-spacing:21.000000px;}
.ls12{letter-spacing:35.340000px;}
.lsa{letter-spacing:35.400000px;}
.ls5{letter-spacing:39.120000px;}
.ls2{letter-spacing:79.860000px;}
.lsf{letter-spacing:185.448000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-84.000000px;}
.ws6{word-spacing:-22.200000px;}
.ws2{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws3{word-spacing:-20.448000px;}
.ws7{word-spacing:-20.400000px;}
.ws4{word-spacing:-19.800000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-2.286000px;}
._0{margin-left:-1.200000px;}
._1{width:1.110000px;}
._f{width:2.190000px;}
._7{width:3.624000px;}
._b{width:5.376000px;}
._2d{width:6.498000px;}
._c{width:7.500000px;}
._1a{width:9.306000px;}
._9{width:10.524000px;}
._a{width:11.586000px;}
._2{width:13.842000px;}
._2a{width:14.976000px;}
._e{width:16.980000px;}
._d{width:18.006000px;}
._23{width:19.914000px;}
._26{width:22.248000px;}
._1b{width:23.544000px;}
._3{width:24.642000px;}
._25{width:26.400000px;}
._20{width:27.450000px;}
._15{width:29.532000px;}
._11{width:30.600000px;}
._24{width:31.692000px;}
._10{width:32.700000px;}
._1f{width:33.738000px;}
._1e{width:35.520000px;}
._2b{width:36.582000px;}
._1d{width:37.584000px;}
._16{width:38.838000px;}
._17{width:39.870000px;}
._35{width:40.908000px;}
._18{width:41.922000px;}
._19{width:43.038000px;}
._29{width:44.184000px;}
._28{width:45.672000px;}
._32{width:48.780000px;}
._31{width:50.400000px;}
._1c{width:53.346000px;}
._2c{width:54.534000px;}
._2e{width:55.566000px;}
._2f{width:56.634000px;}
._27{width:57.666000px;}
._5{width:58.698000px;}
._4{width:59.748000px;}
._6{width:61.272000px;}
._22{width:63.306000px;}
._8{width:70.836000px;}
._21{width:72.258000px;}
._30{width:76.326000px;}
._14{width:77.550000px;}
._13{width:78.816000px;}
._36{width:85.680000px;}
._34{width:92.154000px;}
._33{width:93.270000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:81.600000px;}
.fs0{font-size:84.000000px;}
.y6{bottom:-1.462500px;}
.y0{bottom:0.000000px;}
.y3c{bottom:16.500000px;}
.y4d{bottom:17.107500px;}
.y44{bottom:17.385000px;}
.y48{bottom:17.400000px;}
.y50{bottom:17.415000px;}
.y40{bottom:17.445000px;}
.y5{bottom:22.537500px;}
.y3b{bottom:52.800000px;}
.y4b{bottom:53.400000px;}
.y3f{bottom:53.445000px;}
.y43{bottom:53.685000px;}
.y4f{bottom:53.715000px;}
.y47{bottom:53.730000px;}
.y4{bottom:59.700000px;}
.y3{bottom:87.637500px;}
.y42{bottom:89.685000px;}
.y4a{bottom:89.700000px;}
.y3e{bottom:89.745000px;}
.y46{bottom:90.045000px;}
.y29{bottom:125.737500px;}
.y4c{bottom:140.137500px;}
.y6a{bottom:154.245000px;}
.y22{bottom:161.730000px;}
.y49{bottom:177.075000px;}
.y69{bottom:190.575000px;}
.y39{bottom:192.075000px;}
.y21{bottom:198.075000px;}
.y68{bottom:226.275000px;}
.y38{bottom:228.375000px;}
.y20{bottom:234.375000px;}
.y67{bottom:262.875000px;}
.y37{bottom:264.375000px;}
.y1f{bottom:270.375000px;}
.y45{bottom:286.275000px;}
.y66{bottom:299.175000px;}
.y36{bottom:300.675000px;}
.y1e{bottom:306.675000px;}
.y65{bottom:335.475000px;}
.y35{bottom:336.975000px;}
.y1d{bottom:343.005000px;}
.y64{bottom:371.805000px;}
.y34{bottom:373.320000px;}
.y1c{bottom:379.320000px;}
.y41{bottom:395.820000px;}
.y63{bottom:407.820000px;}
.y33{bottom:409.320000px;}
.y1b{bottom:415.320000px;}
.y62{bottom:444.105000px;}
.y32{bottom:445.605000px;}
.y1a{bottom:451.620000px;}
.y61{bottom:480.405000px;}
.y31{bottom:481.905000px;}
.y28{bottom:487.320000px;}
.y19{bottom:487.905000px;}
.y3d{bottom:505.305000px;}
.y60{bottom:516.750000px;}
.y30{bottom:518.250000px;}
.y18{bottom:524.250000px;}
.y5f{bottom:552.750000px;}
.y2f{bottom:555.750000px;}
.y17{bottom:560.250000px;}
.y5e{bottom:589.050000px;}
.y2e{bottom:592.050000px;}
.y16{bottom:596.550000px;}
.y3a{bottom:614.850000px;}
.y5d{bottom:625.350000px;}
.y2d{bottom:629.850000px;}
.y15{bottom:632.850000px;}
.y5c{bottom:661.650000px;}
.y2c{bottom:666.150000px;}
.y14{bottom:669.150000px;}
.y5b{bottom:697.680000px;}
.y2b{bottom:703.695000px;}
.y13{bottom:705.195000px;}
.y5a{bottom:735.495000px;}
.y2a{bottom:739.980000px;}
.y12{bottom:741.480000px;}
.y59{bottom:771.795000px;}
.y11{bottom:777.795000px;}
.y58{bottom:809.580000px;}
.y10{bottom:814.080000px;}
.y57{bottom:847.125000px;}
.yf{bottom:850.125000px;}
.y56{bottom:884.925000px;}
.ye{bottom:886.425000px;}
.y55{bottom:921.225000px;}
.yd{bottom:922.725000px;}
.y54{bottom:957.525000px;}
.yc{bottom:959.025000px;}
.y53{bottom:993.525000px;}
.yb{bottom:994.425000px;}
.y27{bottom:995.025000px;}
.y52{bottom:1029.855000px;}
.ya{bottom:1030.755000px;}
.y26{bottom:1031.370000px;}
.y51{bottom:1066.170000px;}
.y9{bottom:1067.070000px;}
.y25{bottom:1067.670000px;}
.y4e{bottom:1085.655000px;}
.y8{bottom:1103.355000px;}
.y24{bottom:1103.955000px;}
.y7{bottom:1139.370000px;}
.y23{bottom:1139.955000px;}
.y2{bottom:1187.100000px;}
.y1{bottom:1211.100000px;}
.hf{height:36.037500px;}
.h4{height:45.600000px;}
.h8{height:58.898438px;}
.h7{height:59.267578px;}
.h5{height:68.947266px;}
.ha{height:72.337500px;}
.h10{height:72.600000px;}
.h3{height:79.980469px;}
.h6{height:82.441406px;}
.h2{height:84.656250px;}
.h9{height:86.338763px;}
.hc{height:108.585000px;}
.he{height:108.600000px;}
.hb{height:108.637500px;}
.hd{height:108.937500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:45.300000px;}
.w3{width:113.737500px;}
.w5{width:254.505000px;}
.w4{width:297.075000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:9.600000px;}
.x18{left:12.900000px;}
.x2c{left:15.300000px;}
.x24{left:18.600000px;}
.x12{left:20.700000px;}
.x1a{left:24.600000px;}
.x23{left:33.892500px;}
.x21{left:39.345000px;}
.x1c{left:42.330000px;}
.x22{left:47.430000px;}
.x20{left:50.700000px;}
.x11{left:52.807500px;}
.x14{left:57.000000px;}
.x1e{left:59.700000px;}
.x16{left:60.930000px;}
.x2b{left:62.145000px;}
.x25{left:63.345000px;}
.x19{left:64.845000px;}
.x28{left:68.130000px;}
.x17{left:69.937500px;}
.x2a{left:72.030000px;}
.x29{left:74.745000px;}
.x1d{left:81.030000px;}
.x27{left:86.145000px;}
.x1b{left:98.730000px;}
.x26{left:110.445000px;}
.x1{left:117.637500px;}
.x10{left:120.037500px;}
.xe{left:127.537500px;}
.x6{left:144.637500px;}
.xd{left:170.130000px;}
.x3{left:180.675000px;}
.xb{left:200.475000px;}
.x5{left:221.775000px;}
.x13{left:234.375000px;}
.x7{left:259.575000px;}
.xa{left:266.775000px;}
.x2d{left:324.120000px;}
.x9{left:362.205000px;}
.x2{left:421.350000px;}
.xc{left:435.150000px;}
.x8{left:499.650000px;}
.x15{left:532.050000px;}
.xf{left:760.425000px;}
.x4{left:788.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.557333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls14{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.490667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls8{letter-spacing:0.736000pt;}
.ls1{letter-spacing:1.066667pt;}
.ls9{letter-spacing:4.800000pt;}
.ls6{letter-spacing:9.066667pt;}
.ls11{letter-spacing:14.400000pt;}
.lse{letter-spacing:18.666667pt;}
.ls12{letter-spacing:31.413333pt;}
.lsa{letter-spacing:31.466667pt;}
.ls5{letter-spacing:34.773333pt;}
.ls2{letter-spacing:70.986667pt;}
.lsf{letter-spacing:164.842667pt;}
.ws5{word-spacing:-74.666667pt;}
.ws6{word-spacing:-19.733333pt;}
.ws2{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws3{word-spacing:-18.176000pt;}
.ws7{word-spacing:-18.133333pt;}
.ws4{word-spacing:-17.600000pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-2.032000pt;}
._0{margin-left:-1.066667pt;}
._1{width:0.986667pt;}
._f{width:1.946667pt;}
._7{width:3.221333pt;}
._b{width:4.778667pt;}
._2d{width:5.776000pt;}
._c{width:6.666667pt;}
._1a{width:8.272000pt;}
._9{width:9.354667pt;}
._a{width:10.298667pt;}
._2{width:12.304000pt;}
._2a{width:13.312000pt;}
._e{width:15.093333pt;}
._d{width:16.005333pt;}
._23{width:17.701333pt;}
._26{width:19.776000pt;}
._1b{width:20.928000pt;}
._3{width:21.904000pt;}
._25{width:23.466667pt;}
._20{width:24.400000pt;}
._15{width:26.250667pt;}
._11{width:27.200000pt;}
._24{width:28.170667pt;}
._10{width:29.066667pt;}
._1f{width:29.989333pt;}
._1e{width:31.573333pt;}
._2b{width:32.517333pt;}
._1d{width:33.408000pt;}
._16{width:34.522667pt;}
._17{width:35.440000pt;}
._35{width:36.362667pt;}
._18{width:37.264000pt;}
._19{width:38.256000pt;}
._29{width:39.274667pt;}
._28{width:40.597333pt;}
._32{width:43.360000pt;}
._31{width:44.800000pt;}
._1c{width:47.418667pt;}
._2c{width:48.474667pt;}
._2e{width:49.392000pt;}
._2f{width:50.341333pt;}
._27{width:51.258667pt;}
._5{width:52.176000pt;}
._4{width:53.109333pt;}
._6{width:54.464000pt;}
._22{width:56.272000pt;}
._8{width:62.965333pt;}
._21{width:64.229333pt;}
._30{width:67.845333pt;}
._14{width:68.933333pt;}
._13{width:70.058667pt;}
._36{width:76.160000pt;}
._34{width:81.914667pt;}
._33{width:82.906667pt;}
.fs1{font-size:72.533333pt;}
.fs0{font-size:74.666667pt;}
.y6{bottom:-1.300000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:14.666667pt;}
.y4d{bottom:15.206667pt;}
.y44{bottom:15.453333pt;}
.y48{bottom:15.466667pt;}
.y50{bottom:15.480000pt;}
.y40{bottom:15.506667pt;}
.y5{bottom:20.033333pt;}
.y3b{bottom:46.933333pt;}
.y4b{bottom:47.466667pt;}
.y3f{bottom:47.506667pt;}
.y43{bottom:47.720000pt;}
.y4f{bottom:47.746667pt;}
.y47{bottom:47.760000pt;}
.y4{bottom:53.066667pt;}
.y3{bottom:77.900000pt;}
.y42{bottom:79.720000pt;}
.y4a{bottom:79.733333pt;}
.y3e{bottom:79.773333pt;}
.y46{bottom:80.040000pt;}
.y29{bottom:111.766667pt;}
.y4c{bottom:124.566667pt;}
.y6a{bottom:137.106667pt;}
.y22{bottom:143.760000pt;}
.y49{bottom:157.400000pt;}
.y69{bottom:169.400000pt;}
.y39{bottom:170.733333pt;}
.y21{bottom:176.066667pt;}
.y68{bottom:201.133333pt;}
.y38{bottom:203.000000pt;}
.y20{bottom:208.333333pt;}
.y67{bottom:233.666667pt;}
.y37{bottom:235.000000pt;}
.y1f{bottom:240.333333pt;}
.y45{bottom:254.466667pt;}
.y66{bottom:265.933333pt;}
.y36{bottom:267.266667pt;}
.y1e{bottom:272.600000pt;}
.y65{bottom:298.200000pt;}
.y35{bottom:299.533333pt;}
.y1d{bottom:304.893333pt;}
.y64{bottom:330.493333pt;}
.y34{bottom:331.840000pt;}
.y1c{bottom:337.173333pt;}
.y41{bottom:351.840000pt;}
.y63{bottom:362.506667pt;}
.y33{bottom:363.840000pt;}
.y1b{bottom:369.173333pt;}
.y62{bottom:394.760000pt;}
.y32{bottom:396.093333pt;}
.y1a{bottom:401.440000pt;}
.y61{bottom:427.026667pt;}
.y31{bottom:428.360000pt;}
.y28{bottom:433.173333pt;}
.y19{bottom:433.693333pt;}
.y3d{bottom:449.160000pt;}
.y60{bottom:459.333333pt;}
.y30{bottom:460.666667pt;}
.y18{bottom:466.000000pt;}
.y5f{bottom:491.333333pt;}
.y2f{bottom:494.000000pt;}
.y17{bottom:498.000000pt;}
.y5e{bottom:523.600000pt;}
.y2e{bottom:526.266667pt;}
.y16{bottom:530.266667pt;}
.y3a{bottom:546.533333pt;}
.y5d{bottom:555.866667pt;}
.y2d{bottom:559.866667pt;}
.y15{bottom:562.533333pt;}
.y5c{bottom:588.133333pt;}
.y2c{bottom:592.133333pt;}
.y14{bottom:594.800000pt;}
.y5b{bottom:620.160000pt;}
.y2b{bottom:625.506667pt;}
.y13{bottom:626.840000pt;}
.y5a{bottom:653.773333pt;}
.y2a{bottom:657.760000pt;}
.y12{bottom:659.093333pt;}
.y59{bottom:686.040000pt;}
.y11{bottom:691.373333pt;}
.y58{bottom:719.626667pt;}
.y10{bottom:723.626667pt;}
.y57{bottom:753.000000pt;}
.yf{bottom:755.666667pt;}
.y56{bottom:786.600000pt;}
.ye{bottom:787.933333pt;}
.y55{bottom:818.866667pt;}
.yd{bottom:820.200000pt;}
.y54{bottom:851.133333pt;}
.yc{bottom:852.466667pt;}
.y53{bottom:883.133333pt;}
.yb{bottom:883.933333pt;}
.y27{bottom:884.466667pt;}
.y52{bottom:915.426667pt;}
.ya{bottom:916.226667pt;}
.y26{bottom:916.773333pt;}
.y51{bottom:947.706667pt;}
.y9{bottom:948.506667pt;}
.y25{bottom:949.040000pt;}
.y4e{bottom:965.026667pt;}
.y8{bottom:980.760000pt;}
.y24{bottom:981.293333pt;}
.y7{bottom:1012.773333pt;}
.y23{bottom:1013.293333pt;}
.y2{bottom:1055.200000pt;}
.y1{bottom:1076.533333pt;}
.hf{height:32.033333pt;}
.h4{height:40.533333pt;}
.h8{height:52.354167pt;}
.h7{height:52.682292pt;}
.h5{height:61.286458pt;}
.ha{height:64.300000pt;}
.h10{height:64.533333pt;}
.h3{height:71.093750pt;}
.h6{height:73.281250pt;}
.h2{height:75.250000pt;}
.h9{height:76.745567pt;}
.hc{height:96.520000pt;}
.he{height:96.533333pt;}
.hb{height:96.566667pt;}
.hd{height:96.833333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.266667pt;}
.w3{width:101.100000pt;}
.w5{width:226.226667pt;}
.w4{width:264.066667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:8.533333pt;}
.x18{left:11.466667pt;}
.x2c{left:13.600000pt;}
.x24{left:16.533333pt;}
.x12{left:18.400000pt;}
.x1a{left:21.866667pt;}
.x23{left:30.126667pt;}
.x21{left:34.973333pt;}
.x1c{left:37.626667pt;}
.x22{left:42.160000pt;}
.x20{left:45.066667pt;}
.x11{left:46.940000pt;}
.x14{left:50.666667pt;}
.x1e{left:53.066667pt;}
.x16{left:54.160000pt;}
.x2b{left:55.240000pt;}
.x25{left:56.306667pt;}
.x19{left:57.640000pt;}
.x28{left:60.560000pt;}
.x17{left:62.166667pt;}
.x2a{left:64.026667pt;}
.x29{left:66.440000pt;}
.x1d{left:72.026667pt;}
.x27{left:76.573333pt;}
.x1b{left:87.760000pt;}
.x26{left:98.173333pt;}
.x1{left:104.566667pt;}
.x10{left:106.700000pt;}
.xe{left:113.366667pt;}
.x6{left:128.566667pt;}
.xd{left:151.226667pt;}
.x3{left:160.600000pt;}
.xb{left:178.200000pt;}
.x5{left:197.133333pt;}
.x13{left:208.333333pt;}
.x7{left:230.733333pt;}
.xa{left:237.133333pt;}
.x2d{left:288.106667pt;}
.x9{left:321.960000pt;}
.x2{left:374.533333pt;}
.xc{left:386.800000pt;}
.x8{left:444.133333pt;}
.x15{left:472.933333pt;}
.xf{left:675.933333pt;}
.x4{left:701.066667pt;}
}




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