
    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_1df721d419ac881144942065.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_2db7855c9b8e8d63f8ee5a78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_fe2a53004b4ea589113a7b66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_474bf006cc1801d826da4576.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_2fd1000d6aa72467eb1a0a1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls22{letter-spacing:-0.960000px;}
.ls19{letter-spacing:-0.948000px;}
.ls1e{letter-spacing:-0.786000px;}
.ls12{letter-spacing:-0.660000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.533400px;}
.ls5{letter-spacing:-0.463800px;}
.ls14{letter-spacing:-0.414000px;}
.ls23{letter-spacing:-0.326400px;}
.ls10{letter-spacing:-0.248400px;}
.ls2a{letter-spacing:-0.240600px;}
.ls29{letter-spacing:-0.228000px;}
.ls17{letter-spacing:-0.214800px;}
.ls28{letter-spacing:-0.208800px;}
.lsc{letter-spacing:-0.115800px;}
.ls11{letter-spacing:-0.107400px;}
.ls13{letter-spacing:-0.064800px;}
.ls20{letter-spacing:-0.058320px;}
.ls1f{letter-spacing:-0.041040px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.066000px;}
.ls25{letter-spacing:0.067200px;}
.lsa{letter-spacing:0.140400px;}
.ls2c{letter-spacing:0.174240px;}
.lse{letter-spacing:0.175200px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.289200px;}
.lsd{letter-spacing:0.306000px;}
.ls1d{letter-spacing:0.314400px;}
.ls1a{letter-spacing:0.393600px;}
.ls18{letter-spacing:0.479400px;}
.ls2e{letter-spacing:0.479520px;}
.ls27{letter-spacing:0.666720px;}
.ls6{letter-spacing:0.702000px;}
.ls8{letter-spacing:0.930000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls15{letter-spacing:4.266720px;}
.ls2d{letter-spacing:12.330720px;}
.ls26{letter-spacing:37.386720px;}
.ls16{letter-spacing:38.826720px;}
.ls1b{letter-spacing:41.706720px;}
.ls2b{letter-spacing:42.570720px;}
.ls21{letter-spacing:43.866720px;}
.ls1c{letter-spacing:46.026720px;}
.ls3{letter-spacing:99.306720px;}
.lsf{letter-spacing:151.290720px;}
.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:-41.040000px;}
.ws3{word-spacing:-21.930960px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wse{word-spacing:-13.899360px;}
.wsf{word-spacing:-13.820160px;}
.ws6{word-spacing:-13.811760px;}
.ws7{word-spacing:-13.680960px;}
.wsb{word-spacing:-13.646160px;}
.ws12{word-spacing:-13.572960px;}
.ws4{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.464720px;}
.ws11{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.440960px;}
.wsa{word-spacing:-13.398360px;}
.ws5{word-spacing:-13.389960px;}
.ws13{word-spacing:-13.296960px;}
.wsd{word-spacing:-13.290960px;}
.ws14{word-spacing:-13.277760px;}
.ws15{word-spacing:-13.265160px;}
.ws9{word-spacing:-13.257360px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1447.868880px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1005.647520px;}
._5{margin-left:-578.465760px;}
._19{margin-left:-11.837040px;}
._7{margin-left:-4.469760px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._a{width:3.002400px;}
._f{width:4.601520px;}
._d{width:5.617440px;}
._e{width:7.171200px;}
._10{width:8.713440px;}
._c{width:9.903600px;}
._b{width:11.023200px;}
._11{width:12.084000px;}
._12{width:14.581440px;}
._14{width:16.613280px;}
._16{width:18.430560px;}
._13{width:19.500480px;}
._17{width:20.736720px;}
._18{width:28.270080px;}
._15{width:29.325840px;}
._9{width:30.680400px;}
._8{width:31.696560px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:38.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:59.796000px;}
.y65{bottom:92.196000px;}
.y30{bottom:110.736000px;}
.y64{bottom:113.256000px;}
.y2f{bottom:131.796000px;}
.y63{bottom:134.316000px;}
.y2e{bottom:152.850000px;}
.y62{bottom:155.370000px;}
.y2d{bottom:173.910000px;}
.y61{bottom:176.430000px;}
.y2c{bottom:194.970000px;}
.y60{bottom:197.490000px;}
.y75{bottom:199.830000px;}
.y2b{bottom:216.030000px;}
.y5f{bottom:218.550000px;}
.y74{bottom:222.150000px;}
.y2a{bottom:237.090000px;}
.y5e{bottom:239.610000px;}
.y73{bottom:243.210000px;}
.y29{bottom:258.150000px;}
.y5d{bottom:260.670000px;}
.y72{bottom:264.270000px;}
.y28{bottom:279.255000px;}
.y5c{bottom:281.775000px;}
.y71{bottom:285.375000px;}
.y27{bottom:300.315000px;}
.y5b{bottom:302.835000px;}
.y70{bottom:306.435000px;}
.y26{bottom:321.375000px;}
.y5a{bottom:323.895000px;}
.y6f{bottom:327.495000px;}
.y25{bottom:342.435000px;}
.y59{bottom:344.955000px;}
.y6e{bottom:348.555000px;}
.y24{bottom:363.495000px;}
.y58{bottom:366.015000px;}
.y6d{bottom:366.915000px;}
.y23{bottom:384.555000px;}
.y6c{bottom:385.275000px;}
.y57{bottom:387.075000px;}
.y6b{bottom:403.635000px;}
.y22{bottom:405.615000px;}
.y56{bottom:408.135000px;}
.y6a{bottom:421.815000px;}
.y21{bottom:426.675000px;}
.y55{bottom:429.195000px;}
.y69{bottom:440.175000px;}
.y20{bottom:447.735000px;}
.y54{bottom:450.255000px;}
.y68{bottom:458.535000px;}
.y1f{bottom:468.795000px;}
.y53{bottom:471.315000px;}
.y67{bottom:476.895000px;}
.y1e{bottom:489.675000px;}
.y52{bottom:492.375000px;}
.y66{bottom:495.075000px;}
.y1d{bottom:510.735000px;}
.y51{bottom:513.435000px;}
.y1c{bottom:531.795000px;}
.y50{bottom:534.495000px;}
.y1b{bottom:552.855000px;}
.y4f{bottom:555.555000px;}
.y1a{bottom:573.945000px;}
.y4e{bottom:576.645000px;}
.y19{bottom:595.005000px;}
.y4d{bottom:597.705000px;}
.y4c{bottom:618.765000px;}
.y18{bottom:639.645000px;}
.y4b{bottom:639.825000px;}
.y4a{bottom:660.885000px;}
.y17{bottom:669.525000px;}
.y49{bottom:681.945000px;}
.y16{bottom:690.585000px;}
.y48{bottom:703.005000px;}
.y15{bottom:711.645000px;}
.y47{bottom:724.065000px;}
.y14{bottom:732.705000px;}
.y46{bottom:745.125000px;}
.y13{bottom:753.765000px;}
.y45{bottom:766.005000px;}
.y12{bottom:774.825000px;}
.y44{bottom:787.065000px;}
.y11{bottom:795.885000px;}
.y43{bottom:808.125000px;}
.y10{bottom:816.945000px;}
.y42{bottom:829.185000px;}
.yf{bottom:838.005000px;}
.y41{bottom:850.290000px;}
.ye{bottom:859.110000px;}
.y40{bottom:871.350000px;}
.yd{bottom:880.170000px;}
.y3f{bottom:892.410000px;}
.yc{bottom:903.390000px;}
.y3e{bottom:913.470000px;}
.yb{bottom:924.450000px;}
.y3d{bottom:934.530000px;}
.ya{bottom:946.410000px;}
.y3c{bottom:955.590000px;}
.y9{bottom:968.730000px;}
.y3b{bottom:976.650000px;}
.y8{bottom:993.930000px;}
.y3a{bottom:997.710000px;}
.y39{bottom:1018.770000px;}
.y7{bottom:1027.590000px;}
.y38{bottom:1039.830000px;}
.y37{bottom:1060.890000px;}
.y5{bottom:1066.290000px;}
.y36{bottom:1081.950000px;}
.y4{bottom:1097.070000px;}
.y35{bottom:1103.010000px;}
.y34{bottom:1124.100000px;}
.y3{bottom:1127.880000px;}
.y33{bottom:1145.160000px;}
.y2{bottom:1158.480000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1191.240000px;}
.y31{bottom:1193.220000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h7{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.999987px;}
.x9{left:73.799987px;}
.x3{left:80.999987px;}
.x5{left:84.959987px;}
.x8{left:86.759987px;}
.x7{left:92.519987px;}
.x6{left:98.099987px;}
.xa{left:100.835987px;}
.x2{left:108.035987px;}
.x4{left:135.035987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls22{letter-spacing:-0.853333pt;}
.ls19{letter-spacing:-0.842667pt;}
.ls1e{letter-spacing:-0.698667pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.474133pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls14{letter-spacing:-0.368000pt;}
.ls23{letter-spacing:-0.290133pt;}
.ls10{letter-spacing:-0.220800pt;}
.ls2a{letter-spacing:-0.213867pt;}
.ls29{letter-spacing:-0.202667pt;}
.ls17{letter-spacing:-0.190933pt;}
.ls28{letter-spacing:-0.185600pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls11{letter-spacing:-0.095467pt;}
.ls13{letter-spacing:-0.057600pt;}
.ls20{letter-spacing:-0.051840pt;}
.ls1f{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.058667pt;}
.ls25{letter-spacing:0.059733pt;}
.lsa{letter-spacing:0.124800pt;}
.ls2c{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.155733pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.257067pt;}
.lsd{letter-spacing:0.272000pt;}
.ls1d{letter-spacing:0.279467pt;}
.ls1a{letter-spacing:0.349867pt;}
.ls18{letter-spacing:0.426133pt;}
.ls2e{letter-spacing:0.426240pt;}
.ls27{letter-spacing:0.592640pt;}
.ls6{letter-spacing:0.624000pt;}
.ls8{letter-spacing:0.826667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls15{letter-spacing:3.792640pt;}
.ls2d{letter-spacing:10.960640pt;}
.ls26{letter-spacing:33.232640pt;}
.ls16{letter-spacing:34.512640pt;}
.ls1b{letter-spacing:37.072640pt;}
.ls2b{letter-spacing:37.840640pt;}
.ls21{letter-spacing:38.992640pt;}
.ls1c{letter-spacing:40.912640pt;}
.ls3{letter-spacing:88.272640pt;}
.lsf{letter-spacing:134.480640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.494187pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.354987pt;}
.wsf{word-spacing:-12.284587pt;}
.ws6{word-spacing:-12.277120pt;}
.ws7{word-spacing:-12.160853pt;}
.wsb{word-spacing:-12.129920pt;}
.ws12{word-spacing:-12.064853pt;}
.ws4{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.968640pt;}
.ws11{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.947520pt;}
.wsa{word-spacing:-11.909653pt;}
.ws5{word-spacing:-11.902187pt;}
.ws13{word-spacing:-11.819520pt;}
.wsd{word-spacing:-11.814187pt;}
.ws14{word-spacing:-11.802453pt;}
.ws15{word-spacing:-11.791253pt;}
.ws9{word-spacing:-11.784320pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1286.994560pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-893.908907pt;}
._5{margin-left:-514.191787pt;}
._19{margin-left:-10.521813pt;}
._7{margin-left:-3.973120pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._a{width:2.668800pt;}
._f{width:4.090240pt;}
._d{width:4.993280pt;}
._e{width:6.374400pt;}
._10{width:7.745280pt;}
._c{width:8.803200pt;}
._b{width:9.798400pt;}
._11{width:10.741333pt;}
._12{width:12.961280pt;}
._14{width:14.767360pt;}
._16{width:16.382720pt;}
._13{width:17.333760pt;}
._17{width:18.432640pt;}
._18{width:25.128960pt;}
._15{width:26.067413pt;}
._9{width:27.271467pt;}
._8{width:28.174720pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.152000pt;}
.y65{bottom:81.952000pt;}
.y30{bottom:98.432000pt;}
.y64{bottom:100.672000pt;}
.y2f{bottom:117.152000pt;}
.y63{bottom:119.392000pt;}
.y2e{bottom:135.866667pt;}
.y62{bottom:138.106667pt;}
.y2d{bottom:154.586667pt;}
.y61{bottom:156.826667pt;}
.y2c{bottom:173.306667pt;}
.y60{bottom:175.546667pt;}
.y75{bottom:177.626667pt;}
.y2b{bottom:192.026667pt;}
.y5f{bottom:194.266667pt;}
.y74{bottom:197.466667pt;}
.y2a{bottom:210.746667pt;}
.y5e{bottom:212.986667pt;}
.y73{bottom:216.186667pt;}
.y29{bottom:229.466667pt;}
.y5d{bottom:231.706667pt;}
.y72{bottom:234.906667pt;}
.y28{bottom:248.226667pt;}
.y5c{bottom:250.466667pt;}
.y71{bottom:253.666667pt;}
.y27{bottom:266.946667pt;}
.y5b{bottom:269.186667pt;}
.y70{bottom:272.386667pt;}
.y26{bottom:285.666667pt;}
.y5a{bottom:287.906667pt;}
.y6f{bottom:291.106667pt;}
.y25{bottom:304.386667pt;}
.y59{bottom:306.626667pt;}
.y6e{bottom:309.826667pt;}
.y24{bottom:323.106667pt;}
.y58{bottom:325.346667pt;}
.y6d{bottom:326.146667pt;}
.y23{bottom:341.826667pt;}
.y6c{bottom:342.466667pt;}
.y57{bottom:344.066667pt;}
.y6b{bottom:358.786667pt;}
.y22{bottom:360.546667pt;}
.y56{bottom:362.786667pt;}
.y6a{bottom:374.946667pt;}
.y21{bottom:379.266667pt;}
.y55{bottom:381.506667pt;}
.y69{bottom:391.266667pt;}
.y20{bottom:397.986667pt;}
.y54{bottom:400.226667pt;}
.y68{bottom:407.586667pt;}
.y1f{bottom:416.706667pt;}
.y53{bottom:418.946667pt;}
.y67{bottom:423.906667pt;}
.y1e{bottom:435.266667pt;}
.y52{bottom:437.666667pt;}
.y66{bottom:440.066667pt;}
.y1d{bottom:453.986667pt;}
.y51{bottom:456.386667pt;}
.y1c{bottom:472.706667pt;}
.y50{bottom:475.106667pt;}
.y1b{bottom:491.426667pt;}
.y4f{bottom:493.826667pt;}
.y1a{bottom:510.173333pt;}
.y4e{bottom:512.573333pt;}
.y19{bottom:528.893333pt;}
.y4d{bottom:531.293333pt;}
.y4c{bottom:550.013333pt;}
.y18{bottom:568.573333pt;}
.y4b{bottom:568.733333pt;}
.y4a{bottom:587.453333pt;}
.y17{bottom:595.133333pt;}
.y49{bottom:606.173333pt;}
.y16{bottom:613.853333pt;}
.y48{bottom:624.893333pt;}
.y15{bottom:632.573333pt;}
.y47{bottom:643.613333pt;}
.y14{bottom:651.293333pt;}
.y46{bottom:662.333333pt;}
.y13{bottom:670.013333pt;}
.y45{bottom:680.893333pt;}
.y12{bottom:688.733333pt;}
.y44{bottom:699.613333pt;}
.y11{bottom:707.453333pt;}
.y43{bottom:718.333333pt;}
.y10{bottom:726.173333pt;}
.y42{bottom:737.053333pt;}
.yf{bottom:744.893333pt;}
.y41{bottom:755.813333pt;}
.ye{bottom:763.653333pt;}
.y40{bottom:774.533333pt;}
.yd{bottom:782.373333pt;}
.y3f{bottom:793.253333pt;}
.yc{bottom:803.013333pt;}
.y3e{bottom:811.973333pt;}
.yb{bottom:821.733333pt;}
.y3d{bottom:830.693333pt;}
.ya{bottom:841.253333pt;}
.y3c{bottom:849.413333pt;}
.y9{bottom:861.093333pt;}
.y3b{bottom:868.133333pt;}
.y8{bottom:883.493333pt;}
.y3a{bottom:886.853333pt;}
.y39{bottom:905.573333pt;}
.y7{bottom:913.413333pt;}
.y38{bottom:924.293333pt;}
.y37{bottom:943.013333pt;}
.y5{bottom:947.813333pt;}
.y36{bottom:961.733333pt;}
.y4{bottom:975.173333pt;}
.y35{bottom:980.453333pt;}
.y34{bottom:999.200000pt;}
.y3{bottom:1002.560000pt;}
.y33{bottom:1017.920000pt;}
.y2{bottom:1029.760000pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1058.880000pt;}
.y31{bottom:1060.640000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h7{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.999988pt;}
.x9{left:65.599988pt;}
.x3{left:71.999988pt;}
.x5{left:75.519988pt;}
.x8{left:77.119988pt;}
.x7{left:82.239988pt;}
.x6{left:87.199988pt;}
.xa{left:89.631988pt;}
.x2{left:96.031988pt;}
.x4{left:120.031988pt;}
}




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