
    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_981b3d37899eef000d270e12.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_17248e87d21aef8495a2a677.woff2')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_400dd9c7bbca49b7a168a1a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_98862dc12d7ed5980ffb2119.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1ccbe697a5ce11fe5425699f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9a966915c8e489f3f0eba84b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_f9906f00175cca47a887721e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_00c5c2a4ff249b241574b439.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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_e55de0beb1cb9e3d662abc31.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);}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.428000px;}
.lse{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.486600px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.020160px;}
.ls15{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.466800px;}
.ls7{letter-spacing:0.507000px;}
.ls2{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.800000px;}
.ls9{letter-spacing:4.680000px;}
.ls6{letter-spacing:5.040000px;}
.ls4{letter-spacing:9.360000px;}
.ls14{letter-spacing:10.440000px;}
.ls12{letter-spacing:13.320000px;}
.ls17{letter-spacing:16.306560px;}
.ls5{letter-spacing:16.571520px;}
.ls13{letter-spacing:23.400000px;}
.ls16{letter-spacing:46.558560px;}
.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;}
}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.633400px;}
.ws9{word-spacing:-9.732960px;}
.ws7{word-spacing:-9.720000px;}
.ws2{word-spacing:-8.786880px;}
.ws8{word-spacing:-8.292000px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-6.690240px;}
._7{margin-left:-4.761120px;}
._5{margin-left:-3.619200px;}
._0{margin-left:-2.016000px;}
._4{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.016000px;}
._3{width:3.144000px;}
._a{width:4.556160px;}
._b{width:5.576640px;}
._f{width:7.291920px;}
._11{width:8.420640px;}
._9{width:9.473280px;}
._8{width:10.633440px;}
._15{width:11.674560px;}
._14{width:12.766560px;}
._13{width:14.097120px;}
._c{width:15.344640px;}
._18{width:16.367040px;}
._d{width:17.424960px;}
._e{width:18.708720px;}
._10{width:20.165040px;}
._12{width:21.772800px;}
._16{width:22.977120px;}
._17{width:24.333120px;}
.fc6{color:rgb(0,29,53);}
.fc4{color:rgb(255,0,0);}
.fc5{color:rgb(14,16,26);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.240000px;}
.y4{bottom:77.436000px;}
.y2b{bottom:124.236000px;}
.y59{bottom:124.956000px;}
.y2a{bottom:150.150000px;}
.y58{bottom:150.870000px;}
.y77{bottom:157.710000px;}
.y29{bottom:176.070000px;}
.y57{bottom:182.190000px;}
.y76{bottom:183.270000px;}
.y50{bottom:199.515000px;}
.y28{bottom:202.755000px;}
.y75{bottom:209.235000px;}
.y56{bottom:212.115000px;}
.y4f{bottom:225.435000px;}
.y27{bottom:230.475000px;}
.y74{bottom:235.155000px;}
.y55{bottom:248.835000px;}
.y4e{bottom:251.355000px;}
.y26{bottom:256.035000px;}
.y73{bottom:261.075000px;}
.y4d{bottom:277.275000px;}
.y25{bottom:281.955000px;}
.y54{bottom:285.195000px;}
.y72{bottom:286.995000px;}
.y4c{bottom:303.195000px;}
.y24{bottom:307.875000px;}
.y71{bottom:312.915000px;}
.y53{bottom:316.875000px;}
.y4b{bottom:329.145000px;}
.y23{bottom:333.825000px;}
.y70{bottom:338.865000px;}
.y4a{bottom:354.705000px;}
.y22{bottom:359.745000px;}
.y6f{bottom:364.425000px;}
.y49{bottom:380.625000px;}
.y21{bottom:385.665000px;}
.y6e{bottom:390.345000px;}
.y48{bottom:406.545000px;}
.y20{bottom:411.585000px;}
.y6d{bottom:416.265000px;}
.y47{bottom:432.465000px;}
.y1f{bottom:437.505000px;}
.y6c{bottom:442.185000px;}
.y46{bottom:458.430000px;}
.y1e{bottom:463.110000px;}
.y6b{bottom:468.150000px;}
.y45{bottom:484.350000px;}
.y6a{bottom:494.070000px;}
.y1d{bottom:494.430000px;}
.y44{bottom:510.270000px;}
.y1c{bottom:515.670000px;}
.y69{bottom:519.990000px;}
.y43{bottom:535.830000px;}
.y1b{bottom:543.390000px;}
.y68{bottom:545.910000px;}
.y42{bottom:561.750000px;}
.y1a{bottom:569.310000px;}
.y67{bottom:571.470000px;}
.y41{bottom:587.700000px;}
.y19{bottom:595.260000px;}
.y66{bottom:597.420000px;}
.y40{bottom:613.620000px;}
.y18{bottom:621.180000px;}
.y65{bottom:623.340000px;}
.y3f{bottom:639.540000px;}
.y17{bottom:647.100000px;}
.y64{bottom:649.260000px;}
.y3e{bottom:665.460000px;}
.y52{bottom:671.580000px;}
.y16{bottom:673.020000px;}
.y63{bottom:675.180000px;}
.y3d{bottom:691.380000px;}
.y15{bottom:698.580000px;}
.y62{bottom:701.130000px;}
.y51{bottom:703.290000px;}
.y3c{bottom:717.330000px;}
.y14{bottom:724.530000px;}
.y61{bottom:736.410000px;}
.y3b{bottom:742.890000px;}
.y13{bottom:751.170000px;}
.y60{bottom:763.770000px;}
.y3a{bottom:768.810000px;}
.y12{bottom:779.610000px;}
.y5f{bottom:789.690000px;}
.y39{bottom:794.730000px;}
.y11{bottom:811.290000px;}
.y5e{bottom:815.610000px;}
.y38{bottom:820.650000px;}
.y10{bottom:837.255000px;}
.y5d{bottom:841.575000px;}
.y37{bottom:846.615000px;}
.yf{bottom:862.815000px;}
.y5c{bottom:867.135000px;}
.y36{bottom:872.535000px;}
.y5b{bottom:893.775000px;}
.ye{bottom:895.215000px;}
.y35{bottom:898.455000px;}
.yd{bottom:916.455000px;}
.y5a{bottom:922.575000px;}
.y34{bottom:924.375000px;}
.yc{bottom:942.015000px;}
.y33{bottom:949.935000px;}
.yb{bottom:967.965000px;}
.y32{bottom:975.885000px;}
.ya{bottom:993.885000px;}
.y31{bottom:1001.805000px;}
.y9{bottom:1014.765000px;}
.y30{bottom:1027.725000px;}
.y8{bottom:1049.325000px;}
.y2f{bottom:1053.645000px;}
.y2e{bottom:1079.610000px;}
.y7{bottom:1085.010000px;}
.y2d{bottom:1105.530000px;}
.y6{bottom:1114.890000px;}
.y2c{bottom:1131.090000px;}
.y3{bottom:1149.090000px;}
.y2{bottom:1170.690000px;}
.y1{bottom:1193.370000px;}
.hd{height:27.147656px;}
.ha{height:37.757813px;}
.hb{height:42.229688px;}
.hc{height:42.672656px;}
.he{height:48.747656px;}
.h3{height:53.302500px;}
.h4{height:54.864844px;}
.h9{height:59.328281px;}
.h7{height:59.357813px;}
.hf{height:59.878594px;}
.h8{height:60.952500px;}
.h10{height:62.163910px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h5{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x6{left:135.035987px;}
.x3{left:144.431987px;}
.x2{left:153.434987px;}
.x7{left:162.074987px;}
.x5{left:639.974987px;}
.x4{left:737.204987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.269333pt;}
.lse{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.432533pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.017920pt;}
.ls15{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.414933pt;}
.ls7{letter-spacing:0.450667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.600000pt;}
.ls9{letter-spacing:4.160000pt;}
.ls6{letter-spacing:4.480000pt;}
.ls4{letter-spacing:8.320000pt;}
.ls14{letter-spacing:9.280000pt;}
.ls12{letter-spacing:11.840000pt;}
.ls17{letter-spacing:14.494720pt;}
.ls5{letter-spacing:14.730240pt;}
.ls13{letter-spacing:20.800000pt;}
.ls16{letter-spacing:41.385387pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.176000pt;}
.ws5{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.007467pt;}
.ws9{word-spacing:-8.651520pt;}
.ws7{word-spacing:-8.640000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws8{word-spacing:-7.370667pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-5.946880pt;}
._7{margin-left:-4.232107pt;}
._5{margin-left:-3.217067pt;}
._0{margin-left:-1.792000pt;}
._4{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.792000pt;}
._3{width:2.794667pt;}
._a{width:4.049920pt;}
._b{width:4.957013pt;}
._f{width:6.481707pt;}
._11{width:7.485013pt;}
._9{width:8.420693pt;}
._8{width:9.451947pt;}
._15{width:10.377387pt;}
._14{width:11.348053pt;}
._13{width:12.530773pt;}
._c{width:13.639680pt;}
._18{width:14.548480pt;}
._d{width:15.488853pt;}
._e{width:16.629973pt;}
._10{width:17.924480pt;}
._12{width:19.353600pt;}
._16{width:20.424107pt;}
._17{width:21.629440pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.880000pt;}
.y4{bottom:68.832000pt;}
.y2b{bottom:110.432000pt;}
.y59{bottom:111.072000pt;}
.y2a{bottom:133.466667pt;}
.y58{bottom:134.106667pt;}
.y77{bottom:140.186667pt;}
.y29{bottom:156.506667pt;}
.y57{bottom:161.946667pt;}
.y76{bottom:162.906667pt;}
.y50{bottom:177.346667pt;}
.y28{bottom:180.226667pt;}
.y75{bottom:185.986667pt;}
.y56{bottom:188.546667pt;}
.y4f{bottom:200.386667pt;}
.y27{bottom:204.866667pt;}
.y74{bottom:209.026667pt;}
.y55{bottom:221.186667pt;}
.y4e{bottom:223.426667pt;}
.y26{bottom:227.586667pt;}
.y73{bottom:232.066667pt;}
.y4d{bottom:246.466667pt;}
.y25{bottom:250.626667pt;}
.y54{bottom:253.506667pt;}
.y72{bottom:255.106667pt;}
.y4c{bottom:269.506667pt;}
.y24{bottom:273.666667pt;}
.y71{bottom:278.146667pt;}
.y53{bottom:281.666667pt;}
.y4b{bottom:292.573333pt;}
.y23{bottom:296.733333pt;}
.y70{bottom:301.213333pt;}
.y4a{bottom:315.293333pt;}
.y22{bottom:319.773333pt;}
.y6f{bottom:323.933333pt;}
.y49{bottom:338.333333pt;}
.y21{bottom:342.813333pt;}
.y6e{bottom:346.973333pt;}
.y48{bottom:361.373333pt;}
.y20{bottom:365.853333pt;}
.y6d{bottom:370.013333pt;}
.y47{bottom:384.413333pt;}
.y1f{bottom:388.893333pt;}
.y6c{bottom:393.053333pt;}
.y46{bottom:407.493333pt;}
.y1e{bottom:411.653333pt;}
.y6b{bottom:416.133333pt;}
.y45{bottom:430.533333pt;}
.y6a{bottom:439.173333pt;}
.y1d{bottom:439.493333pt;}
.y44{bottom:453.573333pt;}
.y1c{bottom:458.373333pt;}
.y69{bottom:462.213333pt;}
.y43{bottom:476.293333pt;}
.y1b{bottom:483.013333pt;}
.y68{bottom:485.253333pt;}
.y42{bottom:499.333333pt;}
.y1a{bottom:506.053333pt;}
.y67{bottom:507.973333pt;}
.y41{bottom:522.400000pt;}
.y19{bottom:529.120000pt;}
.y66{bottom:531.040000pt;}
.y40{bottom:545.440000pt;}
.y18{bottom:552.160000pt;}
.y65{bottom:554.080000pt;}
.y3f{bottom:568.480000pt;}
.y17{bottom:575.200000pt;}
.y64{bottom:577.120000pt;}
.y3e{bottom:591.520000pt;}
.y52{bottom:596.960000pt;}
.y16{bottom:598.240000pt;}
.y63{bottom:600.160000pt;}
.y3d{bottom:614.560000pt;}
.y15{bottom:620.960000pt;}
.y62{bottom:623.226667pt;}
.y51{bottom:625.146667pt;}
.y3c{bottom:637.626667pt;}
.y14{bottom:644.026667pt;}
.y61{bottom:654.586667pt;}
.y3b{bottom:660.346667pt;}
.y13{bottom:667.706667pt;}
.y60{bottom:678.906667pt;}
.y3a{bottom:683.386667pt;}
.y12{bottom:692.986667pt;}
.y5f{bottom:701.946667pt;}
.y39{bottom:706.426667pt;}
.y11{bottom:721.146667pt;}
.y5e{bottom:724.986667pt;}
.y38{bottom:729.466667pt;}
.y10{bottom:744.226667pt;}
.y5d{bottom:748.066667pt;}
.y37{bottom:752.546667pt;}
.yf{bottom:766.946667pt;}
.y5c{bottom:770.786667pt;}
.y36{bottom:775.586667pt;}
.y5b{bottom:794.466667pt;}
.ye{bottom:795.746667pt;}
.y35{bottom:798.626667pt;}
.yd{bottom:814.626667pt;}
.y5a{bottom:820.066667pt;}
.y34{bottom:821.666667pt;}
.yc{bottom:837.346667pt;}
.y33{bottom:844.386667pt;}
.yb{bottom:860.413333pt;}
.y32{bottom:867.453333pt;}
.ya{bottom:883.453333pt;}
.y31{bottom:890.493333pt;}
.y9{bottom:902.013333pt;}
.y30{bottom:913.533333pt;}
.y8{bottom:932.733333pt;}
.y2f{bottom:936.573333pt;}
.y2e{bottom:959.653333pt;}
.y7{bottom:964.453333pt;}
.y2d{bottom:982.693333pt;}
.y6{bottom:991.013333pt;}
.y2c{bottom:1005.413333pt;}
.y3{bottom:1021.413333pt;}
.y2{bottom:1040.613333pt;}
.y1{bottom:1060.773333pt;}
.hd{height:24.131250pt;}
.ha{height:33.562500pt;}
.hb{height:37.537500pt;}
.hc{height:37.931250pt;}
.he{height:43.331250pt;}
.h3{height:47.380000pt;}
.h4{height:48.768750pt;}
.h9{height:52.736250pt;}
.h7{height:52.762500pt;}
.hf{height:53.225417pt;}
.h8{height:54.180000pt;}
.h10{height:55.256809pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h5{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x6{left:120.031988pt;}
.x3{left:128.383988pt;}
.x2{left:136.386655pt;}
.x7{left:144.066655pt;}
.x5{left:568.866655pt;}
.x4{left:655.293322pt;}
}




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