
    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_341981ff32ed1da61c466579.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3e91dbe201b3a4dd4e05fa94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_427af7fae0959ef8106d00da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.055176;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_98fc1cbfb3f8f29c5c17cf5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_65bbf8afa6c1d8d21f8b573a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a3490040a74c0f92abf23e2d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.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;}
.ls6{letter-spacing:-0.240600px;}
.ls5{letter-spacing:-0.087600px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.993600px;}
.ls7{letter-spacing:33.960000px;}
.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;}
}
.ws6{word-spacing:-36.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-11.158800px;}
.ws2{word-spacing:-11.005800px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-10.413360px;}
._8{margin-left:-9.400320px;}
._6{margin-left:-7.714080px;}
._7{margin-left:-6.606000px;}
._0{margin-left:-5.365440px;}
._5{margin-left:-4.104000px;}
._2{margin-left:-3.006000px;}
._1{margin-left:-1.059840px;}
._3{width:1.377360px;}
._d{width:3.580560px;}
._b{width:4.992720px;}
._9{width:7.220640px;}
._a{width:8.691360px;}
._11{width:11.828640px;}
._12{width:12.919440px;}
._10{width:15.193200px;}
._e{width:19.028640px;}
._f{width:20.248800px;}
._14{width:25.632000px;}
._13{width:27.288000px;}
._15{width:28.368000px;}
._4{width:191.496000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs8{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fs9{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y2b{bottom:-3.060000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:7.920000px;}
.y5d{bottom:116.856000px;}
.ya5{bottom:123.696000px;}
.y8a{bottom:130.716000px;}
.y29{bottom:136.836000px;}
.y5c{bottom:137.556000px;}
.ya4{bottom:144.396000px;}
.y89{bottom:151.410000px;}
.y28{bottom:157.530000px;}
.y5b{bottom:158.250000px;}
.ya3{bottom:165.090000px;}
.y88{bottom:172.110000px;}
.y27{bottom:178.770000px;}
.y5a{bottom:178.950000px;}
.ya2{bottom:185.790000px;}
.y87{bottom:192.810000px;}
.y59{bottom:199.650000px;}
.y26{bottom:206.130000px;}
.ya1{bottom:206.490000px;}
.y86{bottom:214.050000px;}
.y58{bottom:220.350000px;}
.ya0{bottom:227.190000px;}
.y85{bottom:237.630000px;}
.y57{bottom:241.590000px;}
.y25{bottom:243.750000px;}
.y9f{bottom:247.890000px;}
.y84{bottom:258.330000px;}
.y24{bottom:264.450000px;}
.y56{bottom:265.170000px;}
.y9e{bottom:268.590000px;}
.y83{bottom:279.030000px;}
.y23{bottom:285.150000px;}
.y55{bottom:285.870000px;}
.y9d{bottom:289.290000px;}
.y82{bottom:300.270000px;}
.y22{bottom:305.850000px;}
.y54{bottom:306.570000px;}
.y9c{bottom:309.990000px;}
.y81{bottom:323.850000px;}
.y21{bottom:326.550000px;}
.y53{bottom:327.810000px;}
.y9b{bottom:330.690000px;}
.y80{bottom:344.595000px;}
.y20{bottom:347.295000px;}
.y52{bottom:351.435000px;}
.y7f{bottom:365.295000px;}
.y1f{bottom:367.995000px;}
.y51{bottom:372.135000px;}
.y7e{bottom:386.535000px;}
.y1e{bottom:388.695000px;}
.y50{bottom:392.835000px;}
.y1d{bottom:409.395000px;}
.y9a{bottom:413.535000px;}
.y7d{bottom:413.895000px;}
.y4f{bottom:414.255000px;}
.y1c{bottom:430.095000px;}
.y99{bottom:434.235000px;}
.y4e{bottom:437.835000px;}
.y1b{bottom:450.795000px;}
.y7c{bottom:451.515000px;}
.y98{bottom:454.935000px;}
.y4d{bottom:458.355000px;}
.y1a{bottom:471.495000px;}
.y7b{bottom:472.215000px;}
.y97{bottom:475.635000px;}
.y4c{bottom:479.055000px;}
.y19{bottom:492.195000px;}
.y7a{bottom:492.915000px;}
.y96{bottom:496.335000px;}
.y4b{bottom:500.475000px;}
.y18{bottom:512.895000px;}
.y79{bottom:514.155000px;}
.y95{bottom:517.035000px;}
.y4a{bottom:525.855000px;}
.y17{bottom:533.595000px;}
.y78{bottom:537.735000px;}
.y16{bottom:554.295000px;}
.y49{bottom:555.015000px;}
.y77{bottom:558.435000px;}
.y15{bottom:574.995000px;}
.y48{bottom:575.715000px;}
.y76{bottom:579.135000px;}
.ybe{bottom:594.435000px;}
.y14{bottom:595.695000px;}
.y47{bottom:596.415000px;}
.y94{bottom:599.835000px;}
.y75{bottom:600.375000px;}
.y13{bottom:616.425000px;}
.y46{bottom:617.145000px;}
.y93{bottom:620.565000px;}
.y74{bottom:623.985000px;}
.ybd{bottom:625.245000px;}
.y12{bottom:637.125000px;}
.y45{bottom:638.385000px;}
.y92{bottom:641.265000px;}
.y73{bottom:644.685000px;}
.ybc{bottom:646.665000px;}
.y11{bottom:657.825000px;}
.y44{bottom:661.965000px;}
.y72{bottom:665.385000px;}
.ybb{bottom:668.265000px;}
.y10{bottom:678.525000px;}
.y43{bottom:682.665000px;}
.y71{bottom:686.805000px;}
.yba{bottom:689.865000px;}
.yf{bottom:699.225000px;}
.y42{bottom:703.365000px;}
.yb9{bottom:711.465000px;}
.y70{bottom:714.165000px;}
.ye{bottom:719.925000px;}
.y41{bottom:724.605000px;}
.y91{bottom:726.045000px;}
.yb8{bottom:733.065000px;}
.yd{bottom:740.625000px;}
.y40{bottom:748.185000px;}
.y6f{bottom:751.785000px;}
.yb7{bottom:754.485000px;}
.y90{bottom:757.005000px;}
.yc{bottom:761.325000px;}
.y3f{bottom:768.885000px;}
.y6e{bottom:772.485000px;}
.yb6{bottom:775.185000px;}
.yb{bottom:782.565000px;}
.y8f{bottom:788.145000px;}
.y3e{bottom:789.585000px;}
.y6d{bottom:793.185000px;}
.yb5{bottom:795.885000px;}
.ya{bottom:806.685000px;}
.y3d{bottom:810.825000px;}
.y6c{bottom:813.705000px;}
.yb4{bottom:816.585000px;}
.y8e{bottom:817.305000px;}
.y9{bottom:830.805000px;}
.y3c{bottom:834.405000px;}
.y6b{bottom:835.125000px;}
.yb3{bottom:837.285000px;}
.y8d{bottom:838.005000px;}
.y3b{bottom:855.105000px;}
.yb2{bottom:857.985000px;}
.y6a{bottom:858.705000px;}
.y8{bottom:859.605000px;}
.y3a{bottom:875.850000px;}
.yb1{bottom:878.730000px;}
.y69{bottom:879.450000px;}
.y39{bottom:897.270000px;}
.yb0{bottom:899.430000px;}
.y68{bottom:900.150000px;}
.y7{bottom:907.890000px;}
.yaf{bottom:920.130000px;}
.y67{bottom:921.390000px;}
.y38{bottom:924.630000px;}
.yae{bottom:940.830000px;}
.y66{bottom:944.970000px;}
.y6{bottom:956.130000px;}
.y37{bottom:962.250000px;}
.y65{bottom:965.670000px;}
.yad{bottom:971.610000px;}
.y36{bottom:982.950000px;}
.y64{bottom:986.370000px;}
.yac{bottom:993.210000px;}
.y35{bottom:1003.650000px;}
.y63{bottom:1007.610000px;}
.yab{bottom:1013.910000px;}
.y34{bottom:1024.350000px;}
.y5{bottom:1029.390000px;}
.y62{bottom:1031.190000px;}
.yaa{bottom:1034.610000px;}
.y33{bottom:1045.590000px;}
.y61{bottom:1051.890000px;}
.ya9{bottom:1055.310000px;}
.y4{bottom:1057.470000px;}
.y32{bottom:1069.710000px;}
.y60{bottom:1072.590000px;}
.ya8{bottom:1076.010000px;}
.y31{bottom:1093.290000px;}
.y3{bottom:1093.650000px;}
.y5f{bottom:1093.830000px;}
.ya7{bottom:1096.710000px;}
.y30{bottom:1113.990000px;}
.y8c{bottom:1114.530000px;}
.ya6{bottom:1117.410000px;}
.y5e{bottom:1121.190000px;}
.y2{bottom:1126.230000px;}
.y2f{bottom:1135.230000px;}
.y8b{bottom:1138.140000px;}
.y2e{bottom:1162.800000px;}
.y2c{bottom:1180.080000px;}
.y1{bottom:1193.580000px;}
.y2a{bottom:1217.700000px;}
.hc{height:10.980000px;}
.hd{height:21.960000px;}
.h6{height:41.726953px;}
.h4{height:43.282266px;}
.h2{height:46.251562px;}
.h9{height:50.273438px;}
.h5{height:50.597578px;}
.ha{height:50.800781px;}
.hf{height:52.417969px;}
.h10{height:59.343750px;}
.h8{height:59.436914px;}
.he{height:76.201172px;}
.hb{height:101.601562px;}
.h3{height:101.804766px;}
.h7{height:118.365820px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:2.340150px;}
.w4{width:4.860150px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.035987px;}
.x7{left:112.175987px;}
.xd{left:128.915987px;}
.xb{left:135.035987px;}
.x6{left:149.975987px;}
.xc{left:162.029987px;}
.x2{left:192.089987px;}
.x1{left:305.534987px;}
.x8{left:347.294987px;}
.x9{left:348.734987px;}
.x3{left:364.934987px;}
.x4{left:594.104987px;}
.xa{left:804.570000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.213867pt;}
.ls5{letter-spacing:-0.077867pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.883200pt;}
.ls7{letter-spacing:30.186667pt;}
.ws6{word-spacing:-32.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-9.918933pt;}
.ws2{word-spacing:-9.782933pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-9.256320pt;}
._8{margin-left:-8.355840pt;}
._6{margin-left:-6.856960pt;}
._7{margin-left:-5.872000pt;}
._0{margin-left:-4.769280pt;}
._5{margin-left:-3.648000pt;}
._2{margin-left:-2.672000pt;}
._1{margin-left:-0.942080pt;}
._3{width:1.224320pt;}
._d{width:3.182720pt;}
._b{width:4.437973pt;}
._9{width:6.418347pt;}
._a{width:7.725653pt;}
._11{width:10.514347pt;}
._12{width:11.483947pt;}
._10{width:13.505067pt;}
._e{width:16.914347pt;}
._f{width:17.998933pt;}
._14{width:22.784000pt;}
._13{width:24.256000pt;}
._15{width:25.216000pt;}
._4{width:170.218667pt;}
.fsa{font-size:26.880000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs8{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fs9{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y2b{bottom:-2.720000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:7.040000pt;}
.y5d{bottom:103.872000pt;}
.ya5{bottom:109.952000pt;}
.y8a{bottom:116.192000pt;}
.y29{bottom:121.632000pt;}
.y5c{bottom:122.272000pt;}
.ya4{bottom:128.352000pt;}
.y89{bottom:134.586667pt;}
.y28{bottom:140.026667pt;}
.y5b{bottom:140.666667pt;}
.ya3{bottom:146.746667pt;}
.y88{bottom:152.986667pt;}
.y27{bottom:158.906667pt;}
.y5a{bottom:159.066667pt;}
.ya2{bottom:165.146667pt;}
.y87{bottom:171.386667pt;}
.y59{bottom:177.466667pt;}
.y26{bottom:183.226667pt;}
.ya1{bottom:183.546667pt;}
.y86{bottom:190.266667pt;}
.y58{bottom:195.866667pt;}
.ya0{bottom:201.946667pt;}
.y85{bottom:211.226667pt;}
.y57{bottom:214.746667pt;}
.y25{bottom:216.666667pt;}
.y9f{bottom:220.346667pt;}
.y84{bottom:229.626667pt;}
.y24{bottom:235.066667pt;}
.y56{bottom:235.706667pt;}
.y9e{bottom:238.746667pt;}
.y83{bottom:248.026667pt;}
.y23{bottom:253.466667pt;}
.y55{bottom:254.106667pt;}
.y9d{bottom:257.146667pt;}
.y82{bottom:266.906667pt;}
.y22{bottom:271.866667pt;}
.y54{bottom:272.506667pt;}
.y9c{bottom:275.546667pt;}
.y81{bottom:287.866667pt;}
.y21{bottom:290.266667pt;}
.y53{bottom:291.386667pt;}
.y9b{bottom:293.946667pt;}
.y80{bottom:306.306667pt;}
.y20{bottom:308.706667pt;}
.y52{bottom:312.386667pt;}
.y7f{bottom:324.706667pt;}
.y1f{bottom:327.106667pt;}
.y51{bottom:330.786667pt;}
.y7e{bottom:343.586667pt;}
.y1e{bottom:345.506667pt;}
.y50{bottom:349.186667pt;}
.y1d{bottom:363.906667pt;}
.y9a{bottom:367.586667pt;}
.y7d{bottom:367.906667pt;}
.y4f{bottom:368.226667pt;}
.y1c{bottom:382.306667pt;}
.y99{bottom:385.986667pt;}
.y4e{bottom:389.186667pt;}
.y1b{bottom:400.706667pt;}
.y7c{bottom:401.346667pt;}
.y98{bottom:404.386667pt;}
.y4d{bottom:407.426667pt;}
.y1a{bottom:419.106667pt;}
.y7b{bottom:419.746667pt;}
.y97{bottom:422.786667pt;}
.y4c{bottom:425.826667pt;}
.y19{bottom:437.506667pt;}
.y7a{bottom:438.146667pt;}
.y96{bottom:441.186667pt;}
.y4b{bottom:444.866667pt;}
.y18{bottom:455.906667pt;}
.y79{bottom:457.026667pt;}
.y95{bottom:459.586667pt;}
.y4a{bottom:467.426667pt;}
.y17{bottom:474.306667pt;}
.y78{bottom:477.986667pt;}
.y16{bottom:492.706667pt;}
.y49{bottom:493.346667pt;}
.y77{bottom:496.386667pt;}
.y15{bottom:511.106667pt;}
.y48{bottom:511.746667pt;}
.y76{bottom:514.786667pt;}
.ybe{bottom:528.386667pt;}
.y14{bottom:529.506667pt;}
.y47{bottom:530.146667pt;}
.y94{bottom:533.186667pt;}
.y75{bottom:533.666667pt;}
.y13{bottom:547.933333pt;}
.y46{bottom:548.573333pt;}
.y93{bottom:551.613333pt;}
.y74{bottom:554.653333pt;}
.ybd{bottom:555.773333pt;}
.y12{bottom:566.333333pt;}
.y45{bottom:567.453333pt;}
.y92{bottom:570.013333pt;}
.y73{bottom:573.053333pt;}
.ybc{bottom:574.813333pt;}
.y11{bottom:584.733333pt;}
.y44{bottom:588.413333pt;}
.y72{bottom:591.453333pt;}
.ybb{bottom:594.013333pt;}
.y10{bottom:603.133333pt;}
.y43{bottom:606.813333pt;}
.y71{bottom:610.493333pt;}
.yba{bottom:613.213333pt;}
.yf{bottom:621.533333pt;}
.y42{bottom:625.213333pt;}
.yb9{bottom:632.413333pt;}
.y70{bottom:634.813333pt;}
.ye{bottom:639.933333pt;}
.y41{bottom:644.093333pt;}
.y91{bottom:645.373333pt;}
.yb8{bottom:651.613333pt;}
.yd{bottom:658.333333pt;}
.y40{bottom:665.053333pt;}
.y6f{bottom:668.253333pt;}
.yb7{bottom:670.653333pt;}
.y90{bottom:672.893333pt;}
.yc{bottom:676.733333pt;}
.y3f{bottom:683.453333pt;}
.y6e{bottom:686.653333pt;}
.yb6{bottom:689.053333pt;}
.yb{bottom:695.613333pt;}
.y8f{bottom:700.573333pt;}
.y3e{bottom:701.853333pt;}
.y6d{bottom:705.053333pt;}
.yb5{bottom:707.453333pt;}
.ya{bottom:717.053333pt;}
.y3d{bottom:720.733333pt;}
.y6c{bottom:723.293333pt;}
.yb4{bottom:725.853333pt;}
.y8e{bottom:726.493333pt;}
.y9{bottom:738.493333pt;}
.y3c{bottom:741.693333pt;}
.y6b{bottom:742.333333pt;}
.yb3{bottom:744.253333pt;}
.y8d{bottom:744.893333pt;}
.y3b{bottom:760.093333pt;}
.yb2{bottom:762.653333pt;}
.y6a{bottom:763.293333pt;}
.y8{bottom:764.093333pt;}
.y3a{bottom:778.533333pt;}
.yb1{bottom:781.093333pt;}
.y69{bottom:781.733333pt;}
.y39{bottom:797.573333pt;}
.yb0{bottom:799.493333pt;}
.y68{bottom:800.133333pt;}
.y7{bottom:807.013333pt;}
.yaf{bottom:817.893333pt;}
.y67{bottom:819.013333pt;}
.y38{bottom:821.893333pt;}
.yae{bottom:836.293333pt;}
.y66{bottom:839.973333pt;}
.y6{bottom:849.893333pt;}
.y37{bottom:855.333333pt;}
.y65{bottom:858.373333pt;}
.yad{bottom:863.653333pt;}
.y36{bottom:873.733333pt;}
.y64{bottom:876.773333pt;}
.yac{bottom:882.853333pt;}
.y35{bottom:892.133333pt;}
.y63{bottom:895.653333pt;}
.yab{bottom:901.253333pt;}
.y34{bottom:910.533333pt;}
.y5{bottom:915.013333pt;}
.y62{bottom:916.613333pt;}
.yaa{bottom:919.653333pt;}
.y33{bottom:929.413333pt;}
.y61{bottom:935.013333pt;}
.ya9{bottom:938.053333pt;}
.y4{bottom:939.973333pt;}
.y32{bottom:950.853333pt;}
.y60{bottom:953.413333pt;}
.ya8{bottom:956.453333pt;}
.y31{bottom:971.813333pt;}
.y3{bottom:972.133333pt;}
.y5f{bottom:972.293333pt;}
.ya7{bottom:974.853333pt;}
.y30{bottom:990.213333pt;}
.y8c{bottom:990.693333pt;}
.ya6{bottom:993.253333pt;}
.y5e{bottom:996.613333pt;}
.y2{bottom:1001.093333pt;}
.y2f{bottom:1009.093333pt;}
.y8b{bottom:1011.680000pt;}
.y2e{bottom:1033.600000pt;}
.y2c{bottom:1048.960000pt;}
.y1{bottom:1060.960000pt;}
.y2a{bottom:1082.400000pt;}
.hc{height:9.760000pt;}
.hd{height:19.520000pt;}
.h6{height:37.090625pt;}
.h4{height:38.473125pt;}
.h2{height:41.112500pt;}
.h9{height:44.687500pt;}
.h5{height:44.975625pt;}
.ha{height:45.156250pt;}
.hf{height:46.593750pt;}
.h10{height:52.750000pt;}
.h8{height:52.832812pt;}
.he{height:67.734375pt;}
.hb{height:90.312500pt;}
.h3{height:90.493125pt;}
.h7{height:105.214062pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:2.080133pt;}
.w4{width:4.320133pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.031988pt;}
.x7{left:99.711988pt;}
.xd{left:114.591988pt;}
.xb{left:120.031988pt;}
.x6{left:133.311988pt;}
.xc{left:144.026655pt;}
.x2{left:170.746655pt;}
.x1{left:271.586655pt;}
.x8{left:308.706655pt;}
.x9{left:309.986655pt;}
.x3{left:324.386655pt;}
.x4{left:528.093322pt;}
.xa{left:715.173333pt;}
}




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