
    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_fdb74bca1e61a2afcd0b5b6a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3dd0fe8ea12fd6fd7d885c9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_67ff5c87371fe372aac17374.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1e73b7c73634c14940ec987b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f2b24a9e279b54da16a4006c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cae16dd10c01daa0632b15a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687500;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_e902ea29853b36714f6696f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687500;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_4d92ce696cc383504bfa80b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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);}
.v3{vertical-align:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.880000px;}
.v1{vertical-align:85.680000px;}
.ls11{letter-spacing:-0.486000px;}
.ls9{letter-spacing:-0.342000px;}
.ls7{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.090600px;}
.ls5{letter-spacing:-0.027600px;}
.lsa{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.022200px;}
.lsb{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.139200px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.900000px;}
.ls2{letter-spacing:2.700000px;}
.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;}
}
.ws0{word-spacing:-37.336320px;}
.ws3{word-spacing:-20.430000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.wsd{word-spacing:-16.650000px;}
.ws10{word-spacing:-16.492200px;}
.wsf{word-spacing:-16.470000px;}
.wse{word-spacing:-16.290000px;}
.ws5{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.192400px;}
.ws11{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.482000px;}
.ws8{word-spacing:-13.392000px;}
.ws6{word-spacing:-9.000000px;}
.wsc{word-spacing:-0.360000px;}
.wsb{word-spacing:0.000000px;}
.ws13{word-spacing:58.446000px;}
.ws12{word-spacing:85.464000px;}
._1{margin-left:-3.141018px;}
._0{margin-left:-1.031976px;}
._3{width:1.080606px;}
._9{width:2.970054px;}
._f{width:4.572072px;}
._8{width:6.281928px;}
._7{width:7.344000px;}
._a{width:8.423610px;}
._b{width:9.504780px;}
._e{width:10.800000px;}
._11{width:12.096000px;}
._c{width:14.741394px;}
._d{width:15.813043px;}
._6{width:16.860036px;}
._5{width:18.137988px;}
._4{width:20.070000px;}
._2{width:165.909036px;}
._10{width:1237.506960px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.620000px;}
.y77{bottom:100.380000px;}
.y44{bottom:109.470000px;}
.y76{bottom:115.950000px;}
.y43{bottom:140.340000px;}
.y2a{bottom:140.520000px;}
.y75{bottom:147.090000px;}
.y29{bottom:156.000000px;}
.y74{bottom:162.660000px;}
.y42{bottom:171.840000px;}
.y28{bottom:187.140000px;}
.y41{bottom:187.320000px;}
.y73{bottom:193.890000px;}
.y40{bottom:202.890000px;}
.y72{bottom:209.370000px;}
.y27{bottom:218.100000px;}
.y3f{bottom:218.370000px;}
.y3e{bottom:233.940000px;}
.y71{bottom:240.600000px;}
.y3d{bottom:249.420000px;}
.y26{bottom:249.600000px;}
.y70{bottom:256.080000px;}
.y3c{bottom:264.990000px;}
.y25{bottom:265.080000px;}
.y3b{bottom:280.470000px;}
.y24{bottom:280.650000px;}
.y6f{bottom:287.310000px;}
.y3a{bottom:296.040000px;}
.y23{bottom:296.130000px;}
.y6e{bottom:302.790000px;}
.y39{bottom:311.520000px;}
.y22{bottom:311.700000px;}
.y21{bottom:327.180000px;}
.y6d{bottom:334.020000px;}
.y38{bottom:342.480000px;}
.y20{bottom:342.750000px;}
.y6c{bottom:349.500000px;}
.y1f{bottom:358.230000px;}
.y37{bottom:373.620000px;}
.y1e{bottom:373.800000px;}
.y6b{bottom:380.730000px;}
.y1d{bottom:389.280000px;}
.y6a{bottom:396.210000px;}
.y1c{bottom:404.850000px;}
.y36{bottom:405.120000px;}
.y1b{bottom:420.330000px;}
.y35{bottom:420.690000px;}
.y69{bottom:427.170000px;}
.y1a{bottom:435.900000px;}
.y34{bottom:436.170000px;}
.y19{bottom:451.380000px;}
.y68{bottom:458.670000px;}
.y18{bottom:466.950000px;}
.y33{bottom:467.400000px;}
.y67{bottom:474.150000px;}
.y32{bottom:482.910000px;}
.y66{bottom:489.750000px;}
.y17{bottom:497.850000px;}
.y31{bottom:498.480000px;}
.y65{bottom:505.230000px;}
.y30{bottom:529.620000px;}
.y64{bottom:536.460000px;}
.y16{bottom:544.110000px;}
.y63{bottom:551.940000px;}
.y62{bottom:567.510000px;}
.y15{bottom:578.670000px;}
.y14{bottom:594.240000px;}
.y61{bottom:598.740000px;}
.y13{bottom:609.720000px;}
.y60{bottom:614.220000px;}
.y12{bottom:625.290000px;}
.y5f{bottom:629.700000px;}
.y11{bottom:640.770000px;}
.y10{bottom:656.340000px;}
.y5e{bottom:660.930000px;}
.yf{bottom:671.910000px;}
.y5d{bottom:676.500000px;}
.y5c{bottom:691.980000px;}
.ye{bottom:694.140000px;}
.yd{bottom:720.870000px;}
.y5b{bottom:723.210000px;}
.yc{bottom:736.350000px;}
.y5a{bottom:738.690000px;}
.yb{bottom:751.920000px;}
.y59{bottom:769.650000px;}
.ya{bottom:786.570000px;}
.y58{bottom:800.790000px;}
.y2f{bottom:819.690000px;}
.y9{bottom:827.250000px;}
.y89{bottom:831.570000px;}
.y57{bottom:832.290000px;}
.y2e{bottom:835.170000px;}
.y88{bottom:847.140000px;}
.y56{bottom:847.860000px;}
.y2d{bottom:850.740000px;}
.y8{bottom:858.210000px;}
.y87{bottom:862.710000px;}
.y55{bottom:863.340000px;}
.y86{bottom:878.370000px;}
.y54{bottom:878.910000px;}
.y2c{bottom:881.880000px;}
.y85{bottom:893.940000px;}
.y53{bottom:894.390000px;}
.y7{bottom:896.640000px;}
.y84{bottom:909.510000px;}
.y52{bottom:909.870000px;}
.y83{bottom:925.170000px;}
.y6{bottom:935.700000px;}
.y82{bottom:940.740000px;}
.y51{bottom:941.100000px;}
.y81{bottom:956.310000px;}
.y50{bottom:956.670000px;}
.y80{bottom:971.970000px;}
.y4f{bottom:972.150000px;}
.y4e{bottom:987.720000px;}
.y7f{bottom:1002.840000px;}
.y4d{bottom:1003.200000px;}
.y4{bottom:1034.100000px;}
.y7e{bottom:1034.370000px;}
.y4c{bottom:1034.460000px;}
.y5{bottom:1039.140000px;}
.y7d{bottom:1049.850000px;}
.y4b{bottom:1049.940000px;}
.y3{bottom:1057.320000px;}
.y7c{bottom:1065.420000px;}
.y4a{bottom:1065.510000px;}
.y7b{bottom:1080.900000px;}
.y49{bottom:1080.990000px;}
.y7a{bottom:1096.470000px;}
.y48{bottom:1096.560000px;}
.y79{bottom:1111.950000px;}
.y47{bottom:1127.700000px;}
.y78{bottom:1142.910000px;}
.y46{bottom:1143.270000px;}
.y2{bottom:1157.940000px;}
.y45{bottom:1158.750000px;}
.y2b{bottom:1193.670000px;}
.ha{height:35.314453px;}
.he{height:44.520469px;}
.h9{height:52.971680px;}
.hd{height:52.998047px;}
.hb{height:54.421875px;}
.h6{height:55.796836px;}
.hc{height:61.800293px;}
.h2{height:64.657617px;}
.h8{height:72.329063px;}
.h3{height:72.562500px;}
.h4{height:81.632812px;}
.h7{height:84.535312px;}
.h5{height:143.004375px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.xc{left:29.970000px;}
.x9{left:46.620000px;}
.x8{left:50.179500px;}
.x6{left:103.950000px;}
.x4{left:244.020000px;}
.x2{left:270.210000px;}
.x3{left:290.460000px;}
.xd{left:367.440000px;}
.xe{left:373.650000px;}
.x7{left:392.910000px;}
.xb{left:394.980000px;}
.x10{left:403.260000px;}
.xf{left:407.760000px;}
.xa{left:412.170000px;}
.x1{left:440.610000px;}
.x5{left:506.490000px;}
@media print{
.v3{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.560000pt;}
.v1{vertical-align:76.160000pt;}
.ls11{letter-spacing:-0.432000pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.080533pt;}
.ls5{letter-spacing:-0.024533pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.019733pt;}
.lsb{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.123733pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls2{letter-spacing:2.400000pt;}
.ws0{word-spacing:-33.187840pt;}
.ws3{word-spacing:-18.160000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.wsd{word-spacing:-14.800000pt;}
.ws10{word-spacing:-14.659733pt;}
.wsf{word-spacing:-14.640000pt;}
.wse{word-spacing:-14.480000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.615467pt;}
.ws11{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.984000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsc{word-spacing:-0.320000pt;}
.wsb{word-spacing:0.000000pt;}
.ws13{word-spacing:51.952000pt;}
.ws12{word-spacing:75.968000pt;}
._1{margin-left:-2.792016pt;}
._0{margin-left:-0.917312pt;}
._3{width:0.960539pt;}
._9{width:2.640048pt;}
._f{width:4.064064pt;}
._8{width:5.583936pt;}
._7{width:6.528000pt;}
._a{width:7.487653pt;}
._b{width:8.448694pt;}
._e{width:9.600000pt;}
._11{width:10.752000pt;}
._c{width:13.103461pt;}
._d{width:14.056038pt;}
._6{width:14.986699pt;}
._5{width:16.122656pt;}
._4{width:17.840000pt;}
._2{width:147.474699pt;}
._10{width:1100.006187pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:68.106667pt;}
.y77{bottom:89.226667pt;}
.y44{bottom:97.306667pt;}
.y76{bottom:103.066667pt;}
.y43{bottom:124.746667pt;}
.y2a{bottom:124.906667pt;}
.y75{bottom:130.746667pt;}
.y29{bottom:138.666667pt;}
.y74{bottom:144.586667pt;}
.y42{bottom:152.746667pt;}
.y28{bottom:166.346667pt;}
.y41{bottom:166.506667pt;}
.y73{bottom:172.346667pt;}
.y40{bottom:180.346667pt;}
.y72{bottom:186.106667pt;}
.y27{bottom:193.866667pt;}
.y3f{bottom:194.106667pt;}
.y3e{bottom:207.946667pt;}
.y71{bottom:213.866667pt;}
.y3d{bottom:221.706667pt;}
.y26{bottom:221.866667pt;}
.y70{bottom:227.626667pt;}
.y3c{bottom:235.546667pt;}
.y25{bottom:235.626667pt;}
.y3b{bottom:249.306667pt;}
.y24{bottom:249.466667pt;}
.y6f{bottom:255.386667pt;}
.y3a{bottom:263.146667pt;}
.y23{bottom:263.226667pt;}
.y6e{bottom:269.146667pt;}
.y39{bottom:276.906667pt;}
.y22{bottom:277.066667pt;}
.y21{bottom:290.826667pt;}
.y6d{bottom:296.906667pt;}
.y38{bottom:304.426667pt;}
.y20{bottom:304.666667pt;}
.y6c{bottom:310.666667pt;}
.y1f{bottom:318.426667pt;}
.y37{bottom:332.106667pt;}
.y1e{bottom:332.266667pt;}
.y6b{bottom:338.426667pt;}
.y1d{bottom:346.026667pt;}
.y6a{bottom:352.186667pt;}
.y1c{bottom:359.866667pt;}
.y36{bottom:360.106667pt;}
.y1b{bottom:373.626667pt;}
.y35{bottom:373.946667pt;}
.y69{bottom:379.706667pt;}
.y1a{bottom:387.466667pt;}
.y34{bottom:387.706667pt;}
.y19{bottom:401.226667pt;}
.y68{bottom:407.706667pt;}
.y18{bottom:415.066667pt;}
.y33{bottom:415.466667pt;}
.y67{bottom:421.466667pt;}
.y32{bottom:429.253333pt;}
.y66{bottom:435.333333pt;}
.y17{bottom:442.533333pt;}
.y31{bottom:443.093333pt;}
.y65{bottom:449.093333pt;}
.y30{bottom:470.773333pt;}
.y64{bottom:476.853333pt;}
.y16{bottom:483.653333pt;}
.y63{bottom:490.613333pt;}
.y62{bottom:504.453333pt;}
.y15{bottom:514.373333pt;}
.y14{bottom:528.213333pt;}
.y61{bottom:532.213333pt;}
.y13{bottom:541.973333pt;}
.y60{bottom:545.973333pt;}
.y12{bottom:555.813333pt;}
.y5f{bottom:559.733333pt;}
.y11{bottom:569.573333pt;}
.y10{bottom:583.413333pt;}
.y5e{bottom:587.493333pt;}
.yf{bottom:597.253333pt;}
.y5d{bottom:601.333333pt;}
.y5c{bottom:615.093333pt;}
.ye{bottom:617.013333pt;}
.yd{bottom:640.773333pt;}
.y5b{bottom:642.853333pt;}
.yc{bottom:654.533333pt;}
.y5a{bottom:656.613333pt;}
.yb{bottom:668.373333pt;}
.y59{bottom:684.133333pt;}
.ya{bottom:699.173333pt;}
.y58{bottom:711.813333pt;}
.y2f{bottom:728.613333pt;}
.y9{bottom:735.333333pt;}
.y89{bottom:739.173333pt;}
.y57{bottom:739.813333pt;}
.y2e{bottom:742.373333pt;}
.y88{bottom:753.013333pt;}
.y56{bottom:753.653333pt;}
.y2d{bottom:756.213333pt;}
.y8{bottom:762.853333pt;}
.y87{bottom:766.853333pt;}
.y55{bottom:767.413333pt;}
.y86{bottom:780.773333pt;}
.y54{bottom:781.253333pt;}
.y2c{bottom:783.893333pt;}
.y85{bottom:794.613333pt;}
.y53{bottom:795.013333pt;}
.y7{bottom:797.013333pt;}
.y84{bottom:808.453333pt;}
.y52{bottom:808.773333pt;}
.y83{bottom:822.373333pt;}
.y6{bottom:831.733333pt;}
.y82{bottom:836.213333pt;}
.y51{bottom:836.533333pt;}
.y81{bottom:850.053333pt;}
.y50{bottom:850.373333pt;}
.y80{bottom:863.973333pt;}
.y4f{bottom:864.133333pt;}
.y4e{bottom:877.973333pt;}
.y7f{bottom:891.413333pt;}
.y4d{bottom:891.733333pt;}
.y4{bottom:919.200000pt;}
.y7e{bottom:919.440000pt;}
.y4c{bottom:919.520000pt;}
.y5{bottom:923.680000pt;}
.y7d{bottom:933.200000pt;}
.y4b{bottom:933.280000pt;}
.y3{bottom:939.840000pt;}
.y7c{bottom:947.040000pt;}
.y4a{bottom:947.120000pt;}
.y7b{bottom:960.800000pt;}
.y49{bottom:960.880000pt;}
.y7a{bottom:974.640000pt;}
.y48{bottom:974.720000pt;}
.y79{bottom:988.400000pt;}
.y47{bottom:1002.400000pt;}
.y78{bottom:1015.920000pt;}
.y46{bottom:1016.240000pt;}
.y2{bottom:1029.280000pt;}
.y45{bottom:1030.000000pt;}
.y2b{bottom:1061.040000pt;}
.ha{height:31.390625pt;}
.he{height:39.573750pt;}
.h9{height:47.085938pt;}
.hd{height:47.109375pt;}
.hb{height:48.375000pt;}
.h6{height:49.597187pt;}
.hc{height:54.933594pt;}
.h2{height:57.473437pt;}
.h8{height:64.292500pt;}
.h3{height:64.500000pt;}
.h4{height:72.562500pt;}
.h7{height:75.142500pt;}
.h5{height:127.115000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.xc{left:26.640000pt;}
.x9{left:41.440000pt;}
.x8{left:44.604000pt;}
.x6{left:92.400000pt;}
.x4{left:216.906667pt;}
.x2{left:240.186667pt;}
.x3{left:258.186667pt;}
.xd{left:326.613333pt;}
.xe{left:332.133333pt;}
.x7{left:349.253333pt;}
.xb{left:351.093333pt;}
.x10{left:358.453333pt;}
.xf{left:362.453333pt;}
.xa{left:366.373333pt;}
.x1{left:391.653333pt;}
.x5{left:450.213333pt;}
}




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