
    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_15e7bc3aa9be99083eec240e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_3efa62bb019fe9c5301b3fe4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_08cde26b0d465bcf6a620639.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_de1a2ac7cd987d9144b5944f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_aae4611ebbb4961b51f7131b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_3251ea7af18ef543f4c9dd8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_797b088dc54db32befccb3d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_8e3dbc2aab88125406d002c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.618000px;}
.lsc{letter-spacing:-0.597600px;}
.ls15{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.247800px;}
.lsb{letter-spacing:-0.172800px;}
.ls9{letter-spacing:-0.094800px;}
.ls5{letter-spacing:-0.083400px;}
.lse{letter-spacing:-0.063600px;}
.ls6{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.048960px;}
.ls1{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.100800px;}
.ls7{letter-spacing:0.187200px;}
.ls11{letter-spacing:0.305280px;}
.ls13{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.328320px;}
.ls4{letter-spacing:0.357000px;}
.ls12{letter-spacing:0.425280px;}
.ls0{letter-spacing:0.478080px;}
.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;}
}
.wsc{word-spacing:-14.878200px;}
.wsa{word-spacing:-14.621760px;}
.ws9{word-spacing:-14.595840px;}
.ws4{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.509200px;}
.wsd{word-spacing:-14.158200px;}
.ws2{word-spacing:-13.504200px;}
.ws3{word-spacing:-13.147200px;}
.ws0{word-spacing:-10.612800px;}
.ws1{word-spacing:-9.187200px;}
.ws8{word-spacing:-9.092400px;}
.ws6{word-spacing:-7.920000px;}
.ws5{word-spacing:-7.884000px;}
.ws7{word-spacing:0.000000px;}
._25{margin-left:-5.096640px;}
._24{margin-left:-3.514560px;}
._c{margin-left:-2.447040px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.419680px;}
._a{width:3.543120px;}
._1a{width:4.608000px;}
._15{width:5.623440px;}
._7{width:6.693120px;}
._8{width:7.850880px;}
._1f{width:8.910240px;}
._b{width:10.218960px;}
._9{width:12.019200px;}
._17{width:13.257120px;}
._14{width:14.422080px;}
._12{width:16.015680px;}
._13{width:17.098800px;}
._f{width:18.286560px;}
._26{width:19.408320px;}
._27{width:20.468160px;}
._21{width:21.528000px;}
._22{width:22.716480px;}
._23{width:24.508800px;}
._2d{width:25.529760px;}
._19{width:26.534880px;}
._18{width:27.622080px;}
._20{width:28.701360px;}
._1e{width:29.757360px;}
._1d{width:30.867840px;}
._2b{width:31.927680px;}
._2e{width:32.937840px;}
._5{width:34.170480px;}
._29{width:35.637120px;}
._e{width:36.931680px;}
._11{width:39.441600px;}
._10{width:40.756320px;}
._28{width:42.573600px;}
._2c{width:43.690320px;}
._d{width:44.700480px;}
._2f{width:45.963360px;}
._1b{width:47.287920px;}
._2a{width:49.547520px;}
._16{width:56.436480px;}
._34{width:59.395680px;}
._33{width:60.405120px;}
._0{width:75.000000px;}
._30{width:104.990400px;}
._31{width:106.135920px;}
._3{width:181.620000px;}
._6{width:202.972800px;}
._32{width:423.207360px;}
._1c{width:1056.007200px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc5{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y56{bottom:-33.120000px;}
.y55{bottom:-12.420000px;}
.y0{bottom:0.000000px;}
.y54{bottom:6.300000px;}
.y53{bottom:16.920000px;}
.y52{bottom:27.390000px;}
.y51{bottom:38.010000px;}
.y50{bottom:55.650000px;}
.y8{bottom:56.520000px;}
.y7{bottom:70.596000px;}
.y6{bottom:84.636000px;}
.y4f{bottom:108.570000px;}
.y87{bottom:115.596000px;}
.y4e{bottom:122.610000px;}
.y3d{bottom:123.516000px;}
.y4d{bottom:136.650000px;}
.y86{bottom:137.916000px;}
.y3c{bottom:145.656000px;}
.y4c{bottom:150.690000px;}
.y85{bottom:160.050000px;}
.y4b{bottom:164.910000px;}
.y3b{bottom:167.970000px;}
.y4a{bottom:178.950000px;}
.y84{bottom:182.370000px;}
.y3a{bottom:190.110000px;}
.y49{bottom:192.990000px;}
.y83{bottom:204.510000px;}
.y48{bottom:207.030000px;}
.y39{bottom:212.430000px;}
.y47{bottom:221.070000px;}
.y82{bottom:226.830000px;}
.y38{bottom:234.570000px;}
.y46{bottom:235.110000px;}
.y81{bottom:249.150000px;}
.y45{bottom:250.410000px;}
.y37{bottom:256.890000px;}
.y44{bottom:269.850000px;}
.y80{bottom:271.290000px;}
.y36{bottom:279.210000px;}
.y43{bottom:284.070000px;}
.y7f{bottom:293.610000px;}
.y42{bottom:298.155000px;}
.y35{bottom:301.350000px;}
.y41{bottom:312.195000px;}
.y88{bottom:314.490000px;}
.y7e{bottom:315.750000px;}
.y34{bottom:323.670000px;}
.y40{bottom:326.235000px;}
.y7d{bottom:338.115000px;}
.y3f{bottom:340.635000px;}
.y33{bottom:345.855000px;}
.y7c{bottom:360.255000px;}
.y32{bottom:368.175000px;}
.y7b{bottom:382.575000px;}
.y31{bottom:387.435000px;}
.y7a{bottom:404.895000px;}
.y30{bottom:405.075000px;}
.y2f{bottom:422.535000px;}
.y79{bottom:427.035000px;}
.y2e{bottom:440.175000px;}
.y78{bottom:449.355000px;}
.y2d{bottom:457.815000px;}
.y77{bottom:471.495000px;}
.y2c{bottom:475.275000px;}
.y2b{bottom:492.915000px;}
.y76{bottom:493.815000px;}
.y2a{bottom:510.555000px;}
.y75{bottom:516.135000px;}
.y29{bottom:528.195000px;}
.y74{bottom:538.275000px;}
.y28{bottom:545.655000px;}
.y73{bottom:560.595000px;}
.y27{bottom:563.295000px;}
.y3e{bottom:576.435000px;}
.y26{bottom:580.935000px;}
.y72{bottom:582.735000px;}
.y25{bottom:598.395000px;}
.y71{bottom:605.085000px;}
.y24{bottom:618.225000px;}
.y70{bottom:627.405000px;}
.y23{bottom:635.865000px;}
.y6f{bottom:649.545000px;}
.y22{bottom:653.505000px;}
.y21{bottom:671.145000px;}
.y6e{bottom:671.865000px;}
.y20{bottom:688.605000px;}
.y6d{bottom:694.005000px;}
.y1f{bottom:706.245000px;}
.y6c{bottom:716.325000px;}
.y1e{bottom:723.885000px;}
.y6b{bottom:738.465000px;}
.y1d{bottom:741.345000px;}
.y1c{bottom:758.985000px;}
.y6a{bottom:760.785000px;}
.y1b{bottom:776.625000px;}
.y69{bottom:783.105000px;}
.y1a{bottom:794.265000px;}
.y68{bottom:805.245000px;}
.y19{bottom:811.725000px;}
.y67{bottom:827.565000px;}
.y18{bottom:829.365000px;}
.y17{bottom:847.005000px;}
.y66{bottom:849.705000px;}
.y16{bottom:864.465000px;}
.y65{bottom:872.070000px;}
.y15{bottom:882.150000px;}
.y64{bottom:894.390000px;}
.y14{bottom:899.790000px;}
.y63{bottom:916.530000px;}
.y13{bottom:917.250000px;}
.y12{bottom:935.250000px;}
.y62{bottom:938.850000px;}
.y11{bottom:954.330000px;}
.y61{bottom:960.990000px;}
.y10{bottom:975.570000px;}
.y60{bottom:983.310000px;}
.yf{bottom:989.610000px;}
.y5f{bottom:1005.450000px;}
.ye{bottom:1009.050000px;}
.y5e{bottom:1027.770000px;}
.yd{bottom:1028.130000px;}
.yc{bottom:1045.950000px;}
.y5d{bottom:1050.090000px;}
.yb{bottom:1065.390000px;}
.y5c{bottom:1072.230000px;}
.ya{bottom:1085.370000px;}
.y5b{bottom:1094.550000px;}
.y9{bottom:1108.230000px;}
.y5a{bottom:1116.690000px;}
.y5{bottom:1133.250000px;}
.y59{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y58{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y57{bottom:1197.540000px;}
.hb{height:30.480469px;}
.h8{height:35.477578px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h7{height:50.597578px;}
.h6{height:56.084062px;}
.hc{height:58.819922px;}
.hd{height:60.960938px;}
.h5{height:65.837812px;}
.h9{height:353.415000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.xe{left:112.536000px;}
.x2{left:116.135987px;}
.x8{left:118.115987px;}
.x3{left:133.235987px;}
.xf{left:134.994000px;}
.x5{left:140.255987px;}
.x11{left:144.035987px;}
.xd{left:162.029987px;}
.x4{left:304.094987px;}
.xc{left:335.414987px;}
.x9{left:353.774987px;}
.xa{left:391.394987px;}
.x6{left:398.954987px;}
.x7{left:446.474987px;}
.x10{left:541.544987px;}
.xb{left:560.444987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.549333pt;}
.lsc{letter-spacing:-0.531200pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.220267pt;}
.lsb{letter-spacing:-0.153600pt;}
.ls9{letter-spacing:-0.084267pt;}
.ls5{letter-spacing:-0.074133pt;}
.lse{letter-spacing:-0.056533pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.043520pt;}
.ls1{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.089600pt;}
.ls7{letter-spacing:0.166400pt;}
.ls11{letter-spacing:0.271360pt;}
.ls13{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.291840pt;}
.ls4{letter-spacing:0.317333pt;}
.ls12{letter-spacing:0.378027pt;}
.ls0{letter-spacing:0.424960pt;}
.wsc{word-spacing:-13.225067pt;}
.wsa{word-spacing:-12.997120pt;}
.ws9{word-spacing:-12.974080pt;}
.ws4{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.897067pt;}
.wsd{word-spacing:-12.585067pt;}
.ws2{word-spacing:-12.003733pt;}
.ws3{word-spacing:-11.686400pt;}
.ws0{word-spacing:-9.433600pt;}
.ws1{word-spacing:-8.166400pt;}
.ws8{word-spacing:-8.082133pt;}
.ws6{word-spacing:-7.040000pt;}
.ws5{word-spacing:-7.008000pt;}
.ws7{word-spacing:0.000000pt;}
._25{margin-left:-4.530347pt;}
._24{margin-left:-3.124053pt;}
._c{margin-left:-2.175147pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:2.150827pt;}
._a{width:3.149440pt;}
._1a{width:4.096000pt;}
._15{width:4.998613pt;}
._7{width:5.949440pt;}
._8{width:6.978560pt;}
._1f{width:7.920213pt;}
._b{width:9.083520pt;}
._9{width:10.683733pt;}
._17{width:11.784107pt;}
._14{width:12.819627pt;}
._12{width:14.236160pt;}
._13{width:15.198933pt;}
._f{width:16.254720pt;}
._26{width:17.251840pt;}
._27{width:18.193920pt;}
._21{width:19.136000pt;}
._22{width:20.192427pt;}
._23{width:21.785600pt;}
._2d{width:22.693120pt;}
._19{width:23.586560pt;}
._18{width:24.552960pt;}
._20{width:25.512320pt;}
._1e{width:26.450987pt;}
._1d{width:27.438080pt;}
._2b{width:28.380160pt;}
._2e{width:29.278080pt;}
._5{width:30.373760pt;}
._29{width:31.677440pt;}
._e{width:32.828160pt;}
._11{width:35.059200pt;}
._10{width:36.227840pt;}
._28{width:37.843200pt;}
._2c{width:38.835840pt;}
._d{width:39.733760pt;}
._2f{width:40.856320pt;}
._1b{width:42.033707pt;}
._2a{width:44.042240pt;}
._16{width:50.165760pt;}
._34{width:52.796160pt;}
._33{width:53.693440pt;}
._0{width:66.666667pt;}
._30{width:93.324800pt;}
._31{width:94.343040pt;}
._3{width:161.440000pt;}
._6{width:180.420267pt;}
._32{width:376.184320pt;}
._1c{width:938.673067pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y56{bottom:-29.440000pt;}
.y55{bottom:-11.040000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:5.600000pt;}
.y53{bottom:15.040000pt;}
.y52{bottom:24.346667pt;}
.y51{bottom:33.786667pt;}
.y50{bottom:49.466667pt;}
.y8{bottom:50.240000pt;}
.y7{bottom:62.752000pt;}
.y6{bottom:75.232000pt;}
.y4f{bottom:96.506667pt;}
.y87{bottom:102.752000pt;}
.y4e{bottom:108.986667pt;}
.y3d{bottom:109.792000pt;}
.y4d{bottom:121.466667pt;}
.y86{bottom:122.592000pt;}
.y3c{bottom:129.472000pt;}
.y4c{bottom:133.946667pt;}
.y85{bottom:142.266667pt;}
.y4b{bottom:146.586667pt;}
.y3b{bottom:149.306667pt;}
.y4a{bottom:159.066667pt;}
.y84{bottom:162.106667pt;}
.y3a{bottom:168.986667pt;}
.y49{bottom:171.546667pt;}
.y83{bottom:181.786667pt;}
.y48{bottom:184.026667pt;}
.y39{bottom:188.826667pt;}
.y47{bottom:196.506667pt;}
.y82{bottom:201.626667pt;}
.y38{bottom:208.506667pt;}
.y46{bottom:208.986667pt;}
.y81{bottom:221.466667pt;}
.y45{bottom:222.586667pt;}
.y37{bottom:228.346667pt;}
.y44{bottom:239.866667pt;}
.y80{bottom:241.146667pt;}
.y36{bottom:248.186667pt;}
.y43{bottom:252.506667pt;}
.y7f{bottom:260.986667pt;}
.y42{bottom:265.026667pt;}
.y35{bottom:267.866667pt;}
.y41{bottom:277.506667pt;}
.y88{bottom:279.546667pt;}
.y7e{bottom:280.666667pt;}
.y34{bottom:287.706667pt;}
.y40{bottom:289.986667pt;}
.y7d{bottom:300.546667pt;}
.y3f{bottom:302.786667pt;}
.y33{bottom:307.426667pt;}
.y7c{bottom:320.226667pt;}
.y32{bottom:327.266667pt;}
.y7b{bottom:340.066667pt;}
.y31{bottom:344.386667pt;}
.y7a{bottom:359.906667pt;}
.y30{bottom:360.066667pt;}
.y2f{bottom:375.586667pt;}
.y79{bottom:379.586667pt;}
.y2e{bottom:391.266667pt;}
.y78{bottom:399.426667pt;}
.y2d{bottom:406.946667pt;}
.y77{bottom:419.106667pt;}
.y2c{bottom:422.466667pt;}
.y2b{bottom:438.146667pt;}
.y76{bottom:438.946667pt;}
.y2a{bottom:453.826667pt;}
.y75{bottom:458.786667pt;}
.y29{bottom:469.506667pt;}
.y74{bottom:478.466667pt;}
.y28{bottom:485.026667pt;}
.y73{bottom:498.306667pt;}
.y27{bottom:500.706667pt;}
.y3e{bottom:512.386667pt;}
.y26{bottom:516.386667pt;}
.y72{bottom:517.986667pt;}
.y25{bottom:531.906667pt;}
.y71{bottom:537.853333pt;}
.y24{bottom:549.533333pt;}
.y70{bottom:557.693333pt;}
.y23{bottom:565.213333pt;}
.y6f{bottom:577.373333pt;}
.y22{bottom:580.893333pt;}
.y21{bottom:596.573333pt;}
.y6e{bottom:597.213333pt;}
.y20{bottom:612.093333pt;}
.y6d{bottom:616.893333pt;}
.y1f{bottom:627.773333pt;}
.y6c{bottom:636.733333pt;}
.y1e{bottom:643.453333pt;}
.y6b{bottom:656.413333pt;}
.y1d{bottom:658.973333pt;}
.y1c{bottom:674.653333pt;}
.y6a{bottom:676.253333pt;}
.y1b{bottom:690.333333pt;}
.y69{bottom:696.093333pt;}
.y1a{bottom:706.013333pt;}
.y68{bottom:715.773333pt;}
.y19{bottom:721.533333pt;}
.y67{bottom:735.613333pt;}
.y18{bottom:737.213333pt;}
.y17{bottom:752.893333pt;}
.y66{bottom:755.293333pt;}
.y16{bottom:768.413333pt;}
.y65{bottom:775.173333pt;}
.y15{bottom:784.133333pt;}
.y64{bottom:795.013333pt;}
.y14{bottom:799.813333pt;}
.y63{bottom:814.693333pt;}
.y13{bottom:815.333333pt;}
.y12{bottom:831.333333pt;}
.y62{bottom:834.533333pt;}
.y11{bottom:848.293333pt;}
.y61{bottom:854.213333pt;}
.y10{bottom:867.173333pt;}
.y60{bottom:874.053333pt;}
.yf{bottom:879.653333pt;}
.y5f{bottom:893.733333pt;}
.ye{bottom:896.933333pt;}
.y5e{bottom:913.573333pt;}
.yd{bottom:913.893333pt;}
.yc{bottom:929.733333pt;}
.y5d{bottom:933.413333pt;}
.yb{bottom:947.013333pt;}
.y5c{bottom:953.093333pt;}
.ya{bottom:964.773333pt;}
.y5b{bottom:972.933333pt;}
.y9{bottom:985.093333pt;}
.y5a{bottom:992.613333pt;}
.y5{bottom:1007.333333pt;}
.y59{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y58{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y57{bottom:1064.480000pt;}
.hb{height:27.093750pt;}
.h8{height:31.535625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h7{height:44.975625pt;}
.h6{height:49.852500pt;}
.hc{height:52.284375pt;}
.hd{height:54.187500pt;}
.h5{height:58.522500pt;}
.h9{height:314.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xe{left:100.032000pt;}
.x2{left:103.231988pt;}
.x8{left:104.991988pt;}
.x3{left:118.431988pt;}
.xf{left:119.994667pt;}
.x5{left:124.671988pt;}
.x11{left:128.031988pt;}
.xd{left:144.026655pt;}
.x4{left:270.306655pt;}
.xc{left:298.146655pt;}
.x9{left:314.466655pt;}
.xa{left:347.906655pt;}
.x6{left:354.626655pt;}
.x7{left:396.866655pt;}
.x10{left:481.373322pt;}
.xb{left:498.173322pt;}
}




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