
    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_e4aa074b6f687626f3c0200a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.072754;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_488d987cef8148b82cd2c216.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_1b63f1f03c4274564cd14203.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_910a3a462b2f349df5625204.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_8bbedda9c309944d7ae3f892.woff2')format("woff");}.ff6{font-family:ff6;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:-30.240000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsb{letter-spacing:-2.376000px;}
.lsf{letter-spacing:-1.926000px;}
.lsc{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.422000px;}
.lsd{letter-spacing:-0.972000px;}
.lse{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.486600px;}
.ls9{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.305280px;}
.ls8{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.610560px;}
.ls7{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.949440px;}
.ls6{letter-spacing:1.134720px;}
.ls0{letter-spacing:1.592640px;}
.ls2{letter-spacing:2.050560px;}
.ls4{letter-spacing:2.160000px;}
.ls13{letter-spacing:10.546560px;}
.ls12{letter-spacing:40.786560px;}
.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;}
}
.ws2{word-spacing:-24.120000px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.680000px;}
.ws3{word-spacing:-11.160000px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-2601.062880px;}
._8{margin-left:-1591.620960px;}
._5{margin-left:-1366.873440px;}
._7{margin-left:-989.241120px;}
._9{margin-left:-577.927680px;}
._a{margin-left:-10.863360px;}
._6{margin-left:-8.942400px;}
._15{margin-left:-7.599840px;}
._b{margin-left:-6.511200px;}
._10{margin-left:-4.874400px;}
._12{margin-left:-3.810240px;}
._1{margin-left:-2.736000px;}
._3{margin-left:-1.177440px;}
._0{width:1.641600px;}
._2{width:2.954880px;}
._11{width:4.466400px;}
._13{width:6.197280px;}
._14{width:7.398240px;}
._16{width:8.830080px;}
._17{width:10.285440px;}
._1c{width:11.629920px;}
._1d{width:12.689280px;}
._1e{width:13.899840px;}
._1b{width:16.220160px;}
._19{width:17.446560px;}
._1a{width:18.663360px;}
._18{width:19.805280px;}
._20{width:21.668160px;}
._1f{width:22.728480px;}
._d{width:56.334240px;}
._c{width:60.997920px;}
._f{width:64.834560px;}
._e{width:65.964960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.480000px;}
.y98{bottom:86.796000px;}
.y6c{bottom:95.796000px;}
.y34{bottom:96.516000px;}
.y8e{bottom:97.596000px;}
.y97{bottom:106.596000px;}
.y6b{bottom:115.596000px;}
.y33{bottom:116.316000px;}
.y8d{bottom:117.396000px;}
.y96{bottom:126.396000px;}
.y6a{bottom:135.396000px;}
.y32{bottom:136.116000px;}
.y8c{bottom:137.196000px;}
.y95{bottom:146.196000px;}
.y69{bottom:155.190000px;}
.y31{bottom:155.910000px;}
.y8b{bottom:156.630000px;}
.y92{bottom:156.990000px;}
.y94{bottom:165.990000px;}
.y68{bottom:174.990000px;}
.y30{bottom:175.710000px;}
.y91{bottom:176.790000px;}
.y8a{bottom:185.790000px;}
.y67{bottom:194.835000px;}
.y2f{bottom:195.555000px;}
.y90{bottom:196.635000px;}
.y89{bottom:205.995000px;}
.y66{bottom:214.995000px;}
.y2e{bottom:215.355000px;}
.y88{bottom:225.795000px;}
.y65{bottom:234.795000px;}
.y2d{bottom:235.155000px;}
.y87{bottom:245.595000px;}
.y64{bottom:254.595000px;}
.y2c{bottom:254.955000px;}
.y86{bottom:265.395000px;}
.y63{bottom:274.035000px;}
.y2b{bottom:274.755000px;}
.y85{bottom:285.195000px;}
.y62{bottom:294.195000px;}
.y2a{bottom:294.915000px;}
.y84{bottom:304.995000px;}
.y61{bottom:313.995000px;}
.y29{bottom:314.715000px;}
.y83{bottom:324.825000px;}
.y60{bottom:333.825000px;}
.y28{bottom:334.545000px;}
.y82{bottom:344.625000px;}
.y5f{bottom:353.625000px;}
.y27{bottom:354.345000px;}
.y81{bottom:364.425000px;}
.y5e{bottom:373.425000px;}
.y26{bottom:374.145000px;}
.y80{bottom:384.225000px;}
.y5d{bottom:393.225000px;}
.y25{bottom:393.945000px;}
.y7f{bottom:404.385000px;}
.y5c{bottom:413.385000px;}
.y24{bottom:413.745000px;}
.y7e{bottom:424.185000px;}
.y5b{bottom:433.185000px;}
.y23{bottom:433.545000px;}
.y7d{bottom:443.985000px;}
.y5a{bottom:453.030000px;}
.y22{bottom:453.390000px;}
.y7c{bottom:463.830000px;}
.y59{bottom:472.830000px;}
.y21{bottom:473.190000px;}
.y7b{bottom:483.630000px;}
.y58{bottom:492.630000px;}
.y20{bottom:493.350000px;}
.y7a{bottom:503.430000px;}
.y57{bottom:512.430000px;}
.y1f{bottom:513.150000px;}
.y79{bottom:523.230000px;}
.y56{bottom:532.230000px;}
.y1e{bottom:532.950000px;}
.yad{bottom:542.670000px;}
.y78{bottom:543.030000px;}
.y55{bottom:552.030000px;}
.y1d{bottom:552.750000px;}
.y77{bottom:562.830000px;}
.y54{bottom:571.830000px;}
.y1c{bottom:572.580000px;}
.y76{bottom:582.660000px;}
.y53{bottom:591.660000px;}
.y1b{bottom:592.020000px;}
.y75{bottom:602.820000px;}
.y52{bottom:611.820000px;}
.y1a{bottom:612.180000px;}
.y74{bottom:622.620000px;}
.y51{bottom:631.620000px;}
.y19{bottom:634.140000px;}
.y8f{bottom:642.060000px;}
.y73{bottom:642.420000px;}
.y50{bottom:651.420000px;}
.y93{bottom:661.860000px;}
.y72{bottom:662.220000px;}
.y18{bottom:663.300000px;}
.y4f{bottom:671.220000px;}
.y71{bottom:682.020000px;}
.y17{bottom:683.100000px;}
.y4e{bottom:691.020000px;}
.y70{bottom:701.850000px;}
.y16{bottom:702.930000px;}
.y4d{bottom:710.850000px;}
.y6f{bottom:721.650000px;}
.y15{bottom:722.730000px;}
.y4c{bottom:730.650000px;}
.y6e{bottom:741.090000px;}
.yac{bottom:741.450000px;}
.y14{bottom:742.530000px;}
.y4b{bottom:750.450000px;}
.yab{bottom:761.250000px;}
.y13{bottom:762.330000px;}
.y4a{bottom:770.250000px;}
.yaa{bottom:781.050000px;}
.y12{bottom:782.130000px;}
.y49{bottom:790.050000px;}
.ya9{bottom:801.210000px;}
.y11{bottom:801.930000px;}
.y48{bottom:810.210000px;}
.ya8{bottom:821.010000px;}
.y10{bottom:821.730000px;}
.y47{bottom:830.055000px;}
.yb0{bottom:840.495000px;}
.ya7{bottom:840.855000px;}
.yf{bottom:844.095000px;}
.y46{bottom:849.855000px;}
.ya6{bottom:860.655000px;}
.ye{bottom:863.895000px;}
.y45{bottom:869.655000px;}
.ya5{bottom:880.455000px;}
.yd{bottom:889.095000px;}
.y44{bottom:889.455000px;}
.ya4{bottom:900.255000px;}
.yc{bottom:903.495000px;}
.y43{bottom:909.255000px;}
.ya3{bottom:920.055000px;}
.yb{bottom:928.695000px;}
.y42{bottom:929.055000px;}
.yaf{bottom:939.495000px;}
.ya2{bottom:939.855000px;}
.ya{bottom:943.455000px;}
.y41{bottom:948.855000px;}
.ya1{bottom:959.685000px;}
.y9{bottom:965.085000px;}
.y40{bottom:968.685000px;}
.ya0{bottom:979.485000px;}
.y3f{bottom:988.125000px;}
.y6d{bottom:988.485000px;}
.y8{bottom:990.285000px;}
.y9f{bottom:999.645000px;}
.y3e{bottom:1008.645000px;}
.y9e{bottom:1019.445000px;}
.y7{bottom:1021.965000px;}
.yae{bottom:1028.085000px;}
.y3d{bottom:1028.445000px;}
.y9d{bottom:1039.245000px;}
.y3c{bottom:1048.245000px;}
.y9c{bottom:1059.045000px;}
.y5{bottom:1060.845000px;}
.y3b{bottom:1068.045000px;}
.y9b{bottom:1078.890000px;}
.y3a{bottom:1087.890000px;}
.y4{bottom:1091.850000px;}
.y9a{bottom:1098.690000px;}
.y39{bottom:1107.690000px;}
.y99{bottom:1118.130000px;}
.y3{bottom:1122.810000px;}
.y38{bottom:1127.490000px;}
.y37{bottom:1147.290000px;}
.y2{bottom:1153.770000px;}
.y36{bottom:1167.090000px;}
.y1{bottom:1184.370000px;}
.y35{bottom:1193.370000px;}
.h6{height:40.563910px;}
.h9{height:50.439375px;}
.h8{height:51.827344px;}
.hb{height:56.763281px;}
.h7{height:62.163910px;}
.ha{height:62.960625px;}
.h3{height:68.084282px;}
.h2{height:68.956875px;}
.h5{height:73.712812px;}
.h4{height:82.676953px;}
.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:54.395987px;}
.x2{left:81.035987px;}
.x3{left:108.035987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsb{letter-spacing:-2.112000pt;}
.lsf{letter-spacing:-1.712000pt;}
.lsc{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.264000pt;}
.lsd{letter-spacing:-0.864000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.432533pt;}
.ls9{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.271360pt;}
.ls8{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.542720pt;}
.ls7{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.843947pt;}
.ls6{letter-spacing:1.008640pt;}
.ls0{letter-spacing:1.415680pt;}
.ls2{letter-spacing:1.822720pt;}
.ls4{letter-spacing:1.920000pt;}
.ls13{letter-spacing:9.374720pt;}
.ls12{letter-spacing:36.254720pt;}
.ws2{word-spacing:-21.440000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-2312.055893pt;}
._8{margin-left:-1414.774187pt;}
._5{margin-left:-1214.998613pt;}
._7{margin-left:-879.325440pt;}
._9{margin-left:-513.713493pt;}
._a{margin-left:-9.656320pt;}
._6{margin-left:-7.948800pt;}
._15{margin-left:-6.755413pt;}
._b{margin-left:-5.787733pt;}
._10{margin-left:-4.332800pt;}
._12{margin-left:-3.386880pt;}
._1{margin-left:-2.432000pt;}
._3{margin-left:-1.046613pt;}
._0{width:1.459200pt;}
._2{width:2.626560pt;}
._11{width:3.970133pt;}
._13{width:5.508693pt;}
._14{width:6.576213pt;}
._16{width:7.848960pt;}
._17{width:9.142613pt;}
._1c{width:10.337707pt;}
._1d{width:11.279360pt;}
._1e{width:12.355413pt;}
._1b{width:14.417920pt;}
._19{width:15.508053pt;}
._1a{width:16.589653pt;}
._18{width:17.604693pt;}
._20{width:19.260587pt;}
._1f{width:20.203093pt;}
._d{width:50.074880pt;}
._c{width:54.220373pt;}
._f{width:57.630720pt;}
._e{width:58.635520pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.760000pt;}
.y98{bottom:77.152000pt;}
.y6c{bottom:85.152000pt;}
.y34{bottom:85.792000pt;}
.y8e{bottom:86.752000pt;}
.y97{bottom:94.752000pt;}
.y6b{bottom:102.752000pt;}
.y33{bottom:103.392000pt;}
.y8d{bottom:104.352000pt;}
.y96{bottom:112.352000pt;}
.y6a{bottom:120.352000pt;}
.y32{bottom:120.992000pt;}
.y8c{bottom:121.952000pt;}
.y95{bottom:129.952000pt;}
.y69{bottom:137.946667pt;}
.y31{bottom:138.586667pt;}
.y8b{bottom:139.226667pt;}
.y92{bottom:139.546667pt;}
.y94{bottom:147.546667pt;}
.y68{bottom:155.546667pt;}
.y30{bottom:156.186667pt;}
.y91{bottom:157.146667pt;}
.y8a{bottom:165.146667pt;}
.y67{bottom:173.186667pt;}
.y2f{bottom:173.826667pt;}
.y90{bottom:174.786667pt;}
.y89{bottom:183.106667pt;}
.y66{bottom:191.106667pt;}
.y2e{bottom:191.426667pt;}
.y88{bottom:200.706667pt;}
.y65{bottom:208.706667pt;}
.y2d{bottom:209.026667pt;}
.y87{bottom:218.306667pt;}
.y64{bottom:226.306667pt;}
.y2c{bottom:226.626667pt;}
.y86{bottom:235.906667pt;}
.y63{bottom:243.586667pt;}
.y2b{bottom:244.226667pt;}
.y85{bottom:253.506667pt;}
.y62{bottom:261.506667pt;}
.y2a{bottom:262.146667pt;}
.y84{bottom:271.106667pt;}
.y61{bottom:279.106667pt;}
.y29{bottom:279.746667pt;}
.y83{bottom:288.733333pt;}
.y60{bottom:296.733333pt;}
.y28{bottom:297.373333pt;}
.y82{bottom:306.333333pt;}
.y5f{bottom:314.333333pt;}
.y27{bottom:314.973333pt;}
.y81{bottom:323.933333pt;}
.y5e{bottom:331.933333pt;}
.y26{bottom:332.573333pt;}
.y80{bottom:341.533333pt;}
.y5d{bottom:349.533333pt;}
.y25{bottom:350.173333pt;}
.y7f{bottom:359.453333pt;}
.y5c{bottom:367.453333pt;}
.y24{bottom:367.773333pt;}
.y7e{bottom:377.053333pt;}
.y5b{bottom:385.053333pt;}
.y23{bottom:385.373333pt;}
.y7d{bottom:394.653333pt;}
.y5a{bottom:402.693333pt;}
.y22{bottom:403.013333pt;}
.y7c{bottom:412.293333pt;}
.y59{bottom:420.293333pt;}
.y21{bottom:420.613333pt;}
.y7b{bottom:429.893333pt;}
.y58{bottom:437.893333pt;}
.y20{bottom:438.533333pt;}
.y7a{bottom:447.493333pt;}
.y57{bottom:455.493333pt;}
.y1f{bottom:456.133333pt;}
.y79{bottom:465.093333pt;}
.y56{bottom:473.093333pt;}
.y1e{bottom:473.733333pt;}
.yad{bottom:482.373333pt;}
.y78{bottom:482.693333pt;}
.y55{bottom:490.693333pt;}
.y1d{bottom:491.333333pt;}
.y77{bottom:500.293333pt;}
.y54{bottom:508.293333pt;}
.y1c{bottom:508.960000pt;}
.y76{bottom:517.920000pt;}
.y53{bottom:525.920000pt;}
.y1b{bottom:526.240000pt;}
.y75{bottom:535.840000pt;}
.y52{bottom:543.840000pt;}
.y1a{bottom:544.160000pt;}
.y74{bottom:553.440000pt;}
.y51{bottom:561.440000pt;}
.y19{bottom:563.680000pt;}
.y8f{bottom:570.720000pt;}
.y73{bottom:571.040000pt;}
.y50{bottom:579.040000pt;}
.y93{bottom:588.320000pt;}
.y72{bottom:588.640000pt;}
.y18{bottom:589.600000pt;}
.y4f{bottom:596.640000pt;}
.y71{bottom:606.240000pt;}
.y17{bottom:607.200000pt;}
.y4e{bottom:614.240000pt;}
.y70{bottom:623.866667pt;}
.y16{bottom:624.826667pt;}
.y4d{bottom:631.866667pt;}
.y6f{bottom:641.466667pt;}
.y15{bottom:642.426667pt;}
.y4c{bottom:649.466667pt;}
.y6e{bottom:658.746667pt;}
.yac{bottom:659.066667pt;}
.y14{bottom:660.026667pt;}
.y4b{bottom:667.066667pt;}
.yab{bottom:676.666667pt;}
.y13{bottom:677.626667pt;}
.y4a{bottom:684.666667pt;}
.yaa{bottom:694.266667pt;}
.y12{bottom:695.226667pt;}
.y49{bottom:702.266667pt;}
.ya9{bottom:712.186667pt;}
.y11{bottom:712.826667pt;}
.y48{bottom:720.186667pt;}
.ya8{bottom:729.786667pt;}
.y10{bottom:730.426667pt;}
.y47{bottom:737.826667pt;}
.yb0{bottom:747.106667pt;}
.ya7{bottom:747.426667pt;}
.yf{bottom:750.306667pt;}
.y46{bottom:755.426667pt;}
.ya6{bottom:765.026667pt;}
.ye{bottom:767.906667pt;}
.y45{bottom:773.026667pt;}
.ya5{bottom:782.626667pt;}
.yd{bottom:790.306667pt;}
.y44{bottom:790.626667pt;}
.ya4{bottom:800.226667pt;}
.yc{bottom:803.106667pt;}
.y43{bottom:808.226667pt;}
.ya3{bottom:817.826667pt;}
.yb{bottom:825.506667pt;}
.y42{bottom:825.826667pt;}
.yaf{bottom:835.106667pt;}
.ya2{bottom:835.426667pt;}
.ya{bottom:838.626667pt;}
.y41{bottom:843.426667pt;}
.ya1{bottom:853.053333pt;}
.y9{bottom:857.853333pt;}
.y40{bottom:861.053333pt;}
.ya0{bottom:870.653333pt;}
.y3f{bottom:878.333333pt;}
.y6d{bottom:878.653333pt;}
.y8{bottom:880.253333pt;}
.y9f{bottom:888.573333pt;}
.y3e{bottom:896.573333pt;}
.y9e{bottom:906.173333pt;}
.y7{bottom:908.413333pt;}
.yae{bottom:913.853333pt;}
.y3d{bottom:914.173333pt;}
.y9d{bottom:923.773333pt;}
.y3c{bottom:931.773333pt;}
.y9c{bottom:941.373333pt;}
.y5{bottom:942.973333pt;}
.y3b{bottom:949.373333pt;}
.y9b{bottom:959.013333pt;}
.y3a{bottom:967.013333pt;}
.y4{bottom:970.533333pt;}
.y9a{bottom:976.613333pt;}
.y39{bottom:984.613333pt;}
.y99{bottom:993.893333pt;}
.y3{bottom:998.053333pt;}
.y38{bottom:1002.213333pt;}
.y37{bottom:1019.813333pt;}
.y2{bottom:1025.573333pt;}
.y36{bottom:1037.413333pt;}
.y1{bottom:1052.773333pt;}
.y35{bottom:1060.773333pt;}
.h6{height:36.056809pt;}
.h9{height:44.835000pt;}
.h8{height:46.068750pt;}
.hb{height:50.456250pt;}
.h7{height:55.256809pt;}
.ha{height:55.965000pt;}
.h3{height:60.519362pt;}
.h2{height:61.295000pt;}
.h5{height:65.522500pt;}
.h4{height:73.490625pt;}
.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:48.351988pt;}
.x2{left:72.031988pt;}
.x3{left:96.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; }
  