
    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_e74ebed7cd367f8616f2adfa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_53cbe170a254575e44a34d82.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_94720c571634da400e740c3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_a3d3cdd3e7b3a7564b2f616a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2b235458d08810d149c20bdf.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:23.760000px;}
.ls4{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:11.466720px;}
.ls9{letter-spacing:41.682720px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._a{width:2.333280px;}
._2{width:4.245600px;}
._13{width:6.064080px;}
._8{width:7.163520px;}
._9{width:8.188800px;}
._6{width:9.434400px;}
._7{width:10.525440px;}
._17{width:11.976240px;}
._18{width:13.043760px;}
._12{width:15.948240px;}
._11{width:17.151120px;}
._f{width:18.219120px;}
._c{width:19.780560px;}
._b{width:20.796480px;}
._10{width:21.797760px;}
._e{width:22.999920px;}
._d{width:24.322320px;}
._27{width:26.294400px;}
._14{width:27.541680px;}
._15{width:28.572480px;}
._1e{width:30.597120px;}
._1f{width:31.844400px;}
._1b{width:35.915760px;}
._21{width:38.970720px;}
._20{width:39.979440px;}
._29{width:41.047440px;}
._2a{width:43.519680px;}
._25{width:44.678400px;}
._2c{width:51.624960px;}
._2b{width:55.815840px;}
._2d{width:58.146480px;}
._22{width:59.692560px;}
._1a{width:61.903680px;}
._23{width:74.094720px;}
._24{width:75.476880px;}
._5{width:85.656000px;}
._19{width:89.333520px;}
._2e{width:99.440640px;}
._1d{width:101.890800px;}
._1c{width:103.265280px;}
._28{width:115.329120px;}
._26{width:141.212880px;}
._16{width:201.036000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y99{bottom:-39.090000px;}
.y98{bottom:-8.460000px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.240000px;}
.y97{bottom:8.820000px;}
.y8e{bottom:12.060000px;}
.y8a{bottom:12.240000px;}
.y8c{bottom:14.220000px;}
.y85{bottom:20.340000px;}
.y7f{bottom:20.520000px;}
.y88{bottom:20.700000px;}
.y9c{bottom:24.480000px;}
.y96{bottom:26.100000px;}
.yb{bottom:36.720000px;}
.y84{bottom:37.614000px;}
.ya1{bottom:37.620000px;}
.y7e{bottom:37.800000px;}
.y87{bottom:37.980000px;}
.y9b{bottom:41.760000px;}
.y95{bottom:43.380000px;}
.y83{bottom:54.894000px;}
.y81{bottom:54.900000px;}
.y7d{bottom:55.080000px;}
.ya{bottom:55.260000px;}
.y94{bottom:60.660000px;}
.y9{bottom:70.776000px;}
.ya0{bottom:72.180000px;}
.ya5{bottom:72.225000px;}
.y7c{bottom:72.360000px;}
.y93{bottom:77.940000px;}
.y9f{bottom:89.460000px;}
.ya4{bottom:89.505000px;}
.y7b{bottom:89.685000px;}
.y92{bottom:95.220000px;}
.ya3{bottom:106.785000px;}
.y91{bottom:112.320000px;}
.y82{bottom:114.336000px;}
.yaf{bottom:116.676000px;}
.y77{bottom:120.456000px;}
.y40{bottom:133.956000px;}
.y76{bottom:137.736000px;}
.y3f{bottom:151.230000px;}
.y75{bottom:155.010000px;}
.y3e{bottom:168.510000px;}
.y74{bottom:172.290000px;}
.y80{bottom:183.990000px;}
.y3d{bottom:185.790000px;}
.y73{bottom:189.570000px;}
.y3c{bottom:202.890000px;}
.y72{bottom:206.670000px;}
.y3b{bottom:220.170000px;}
.y71{bottom:223.950000px;}
.y3a{bottom:237.450000px;}
.y70{bottom:241.230000px;}
.y7a{bottom:253.650000px;}
.y39{bottom:254.730000px;}
.y6f{bottom:258.510000px;}
.y38{bottom:272.010000px;}
.y6e{bottom:275.790000px;}
.y37{bottom:289.290000px;}
.y6d{bottom:292.890000px;}
.y36{bottom:306.390000px;}
.y6c{bottom:310.170000px;}
.y35{bottom:323.670000px;}
.y6b{bottom:327.450000px;}
.y34{bottom:340.995000px;}
.y6a{bottom:344.775000px;}
.y78{bottom:358.095000px;}
.y33{bottom:358.275000px;}
.y69{bottom:362.055000px;}
.y32{bottom:375.555000px;}
.y68{bottom:379.335000px;}
.y31{bottom:392.835000px;}
.y67{bottom:396.435000px;}
.y30{bottom:409.935000px;}
.y66{bottom:413.715000px;}
.y2f{bottom:427.215000px;}
.y65{bottom:430.995000px;}
.y2e{bottom:444.495000px;}
.y64{bottom:448.275000px;}
.y2d{bottom:461.775000px;}
.y63{bottom:465.555000px;}
.y2c{bottom:479.055000px;}
.y62{bottom:482.835000px;}
.y2b{bottom:496.335000px;}
.y61{bottom:499.935000px;}
.y2a{bottom:513.435000px;}
.y60{bottom:517.215000px;}
.y29{bottom:530.715000px;}
.y5f{bottom:534.495000px;}
.y28{bottom:547.995000px;}
.y5e{bottom:551.775000px;}
.y27{bottom:565.275000px;}
.y5d{bottom:569.055000px;}
.yae{bottom:582.555000px;}
.y26{bottom:585.075000px;}
.y5c{bottom:586.155000px;}
.yad{bottom:599.655000px;}
.y25{bottom:602.355000px;}
.y5b{bottom:603.435000px;}
.y9a{bottom:612.285000px;}
.yac{bottom:616.965000px;}
.y24{bottom:619.665000px;}
.y5a{bottom:620.745000px;}
.yab{bottom:634.245000px;}
.y90{bottom:635.325000px;}
.y23{bottom:636.945000px;}
.y59{bottom:638.025000px;}
.yaa{bottom:651.525000px;}
.y22{bottom:654.225000px;}
.y58{bottom:655.305000px;}
.ya9{bottom:668.805000px;}
.y21{bottom:671.325000px;}
.y57{bottom:672.585000px;}
.ya8{bottom:686.085000px;}
.y20{bottom:688.605000px;}
.y56{bottom:689.685000px;}
.ya7{bottom:703.185000px;}
.y1f{bottom:705.885000px;}
.y55{bottom:706.965000px;}
.ya6{bottom:717.945000px;}
.y1e{bottom:723.165000px;}
.y54{bottom:724.245000px;}
.y8f{bottom:731.265000px;}
.y1d{bottom:740.445000px;}
.y53{bottom:741.525000px;}
.y1c{bottom:757.545000px;}
.y52{bottom:758.805000px;}
.y1b{bottom:774.825000px;}
.y51{bottom:776.085000px;}
.y1a{bottom:792.105000px;}
.y50{bottom:793.185000px;}
.ya2{bottom:805.065000px;}
.y19{bottom:809.385000px;}
.y4f{bottom:810.465000px;}
.y8b{bottom:825.945000px;}
.y18{bottom:826.665000px;}
.y4e{bottom:827.745000px;}
.y8d{bottom:828.105000px;}
.y17{bottom:843.945000px;}
.y4d{bottom:845.025000px;}
.y16{bottom:861.045000px;}
.y4c{bottom:862.305000px;}
.y15{bottom:879.450000px;}
.y4b{bottom:879.630000px;}
.y4a{bottom:896.730000px;}
.y14{bottom:897.270000px;}
.y89{bottom:912.570000px;}
.y49{bottom:914.010000px;}
.y13{bottom:916.170000px;}
.y9e{bottom:926.610000px;}
.y48{bottom:931.290000px;}
.y12{bottom:935.250000px;}
.y47{bottom:948.570000px;}
.y11{bottom:954.150000px;}
.y46{bottom:965.850000px;}
.y10{bottom:973.050000px;}
.y45{bottom:982.950000px;}
.yf{bottom:992.130000px;}
.y44{bottom:1000.230000px;}
.y86{bottom:1001.850000px;}
.ye{bottom:1010.670000px;}
.y43{bottom:1017.510000px;}
.yd{bottom:1028.670000px;}
.y9d{bottom:1030.830000px;}
.y42{bottom:1034.790000px;}
.yc{bottom:1049.370000px;}
.y41{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hb{height:17.100000px;}
.h11{height:26.100000px;}
.hf{height:26.280000px;}
.h10{height:28.260000px;}
.h14{height:34.380000px;}
.h6{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.ha{height:43.302656px;}
.h18{height:43.506914px;}
.h9{height:46.736719px;}
.h3{height:47.901094px;}
.h19{height:49.255313px;}
.h4{height:50.800781px;}
.he{height:51.840000px;}
.h8{height:53.224453px;}
.h13{height:55.800000px;}
.h7{height:65.884219px;}
.hd{height:68.940000px;}
.h17{height:86.400000px;}
.h15{height:103.500000px;}
.hc{height:103.536000px;}
.h16{height:120.636000px;}
.h12{height:126.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:66.636000px;}
.w7{width:93.600000px;}
.w6{width:107.136000px;}
.w5{width:120.600000px;}
.w3{width:122.040000px;}
.wb{width:173.910000px;}
.wc{width:174.090000px;}
.w8{width:178.050000px;}
.wa{width:280.515000px;}
.w9{width:280.695000px;}
.wd{width:285.915000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x22{left:21.780000px;}
.x1e{left:24.300000px;}
.x28{left:27.900000px;}
.x1b{left:32.220000px;}
.x25{left:38.340000px;}
.x2b{left:40.860000px;}
.x23{left:50.580000px;}
.x29{left:53.100000px;}
.x26{left:59.940000px;}
.x20{left:72.225000px;}
.x27{left:86.940000px;}
.x1c{left:92.385000px;}
.x14{left:100.296000px;}
.x2c{left:101.925000px;}
.x1{left:108.035987px;}
.x7{left:113.975987px;}
.x2{left:123.155987px;}
.x2e{left:135.035987px;}
.xe{left:141.695987px;}
.x8{left:145.835987px;}
.x4{left:157.169987px;}
.x10{left:162.029987px;}
.x12{left:205.229987px;}
.x2a{left:206.850000px;}
.x1f{left:212.070000px;}
.x1d{left:214.230000px;}
.x1a{left:216.570000px;}
.x16{left:223.230000px;}
.xc{left:283.574987px;}
.x17{left:290.775000px;}
.xb{left:326.594987px;}
.x13{left:346.394987px;}
.x2d{left:362.414987px;}
.xd{left:375.554987px;}
.xa{left:384.914987px;}
.xf{left:386.534987px;}
.x6{left:396.434987px;}
.x11{left:398.954987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
.x18{left:520.305000px;}
.x24{left:566.205000px;}
.x21{left:568.365000px;}
.x19{left:614.805000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:10.192640pt;}
.ls9{letter-spacing:37.051307pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws4{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._a{width:2.074027pt;}
._2{width:3.773867pt;}
._13{width:5.390293pt;}
._8{width:6.367573pt;}
._9{width:7.278933pt;}
._6{width:8.386133pt;}
._7{width:9.355947pt;}
._17{width:10.645547pt;}
._18{width:11.594453pt;}
._12{width:14.176213pt;}
._11{width:15.245440pt;}
._f{width:16.194773pt;}
._c{width:17.582720pt;}
._b{width:18.485760pt;}
._10{width:19.375787pt;}
._e{width:20.444373pt;}
._d{width:21.619840pt;}
._27{width:23.372800pt;}
._14{width:24.481493pt;}
._15{width:25.397760pt;}
._1e{width:27.197440pt;}
._1f{width:28.306133pt;}
._1b{width:31.925120pt;}
._21{width:34.640640pt;}
._20{width:35.537280pt;}
._29{width:36.486613pt;}
._2a{width:38.684160pt;}
._25{width:39.714133pt;}
._2c{width:45.888853pt;}
._2b{width:49.614080pt;}
._2d{width:51.685760pt;}
._22{width:53.060053pt;}
._1a{width:55.025493pt;}
._23{width:65.861973pt;}
._24{width:67.090560pt;}
._5{width:76.138667pt;}
._19{width:79.407573pt;}
._2e{width:88.391680pt;}
._1d{width:90.569600pt;}
._1c{width:91.791360pt;}
._28{width:102.514773pt;}
._26{width:125.522560pt;}
._16{width:178.698667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y99{bottom:-34.746667pt;}
.y98{bottom:-7.520000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.880000pt;}
.y97{bottom:7.840000pt;}
.y8e{bottom:10.720000pt;}
.y8a{bottom:10.880000pt;}
.y8c{bottom:12.640000pt;}
.y85{bottom:18.080000pt;}
.y7f{bottom:18.240000pt;}
.y88{bottom:18.400000pt;}
.y9c{bottom:21.760000pt;}
.y96{bottom:23.200000pt;}
.yb{bottom:32.640000pt;}
.y84{bottom:33.434667pt;}
.ya1{bottom:33.440000pt;}
.y7e{bottom:33.600000pt;}
.y87{bottom:33.760000pt;}
.y9b{bottom:37.120000pt;}
.y95{bottom:38.560000pt;}
.y83{bottom:48.794667pt;}
.y81{bottom:48.800000pt;}
.y7d{bottom:48.960000pt;}
.ya{bottom:49.120000pt;}
.y94{bottom:53.920000pt;}
.y9{bottom:62.912000pt;}
.ya0{bottom:64.160000pt;}
.ya5{bottom:64.200000pt;}
.y7c{bottom:64.320000pt;}
.y93{bottom:69.280000pt;}
.y9f{bottom:79.520000pt;}
.ya4{bottom:79.560000pt;}
.y7b{bottom:79.720000pt;}
.y92{bottom:84.640000pt;}
.ya3{bottom:94.920000pt;}
.y91{bottom:99.840000pt;}
.y82{bottom:101.632000pt;}
.yaf{bottom:103.712000pt;}
.y77{bottom:107.072000pt;}
.y40{bottom:119.072000pt;}
.y76{bottom:122.432000pt;}
.y3f{bottom:134.426667pt;}
.y75{bottom:137.786667pt;}
.y3e{bottom:149.786667pt;}
.y74{bottom:153.146667pt;}
.y80{bottom:163.546667pt;}
.y3d{bottom:165.146667pt;}
.y73{bottom:168.506667pt;}
.y3c{bottom:180.346667pt;}
.y72{bottom:183.706667pt;}
.y3b{bottom:195.706667pt;}
.y71{bottom:199.066667pt;}
.y3a{bottom:211.066667pt;}
.y70{bottom:214.426667pt;}
.y7a{bottom:225.466667pt;}
.y39{bottom:226.426667pt;}
.y6f{bottom:229.786667pt;}
.y38{bottom:241.786667pt;}
.y6e{bottom:245.146667pt;}
.y37{bottom:257.146667pt;}
.y6d{bottom:260.346667pt;}
.y36{bottom:272.346667pt;}
.y6c{bottom:275.706667pt;}
.y35{bottom:287.706667pt;}
.y6b{bottom:291.066667pt;}
.y34{bottom:303.106667pt;}
.y6a{bottom:306.466667pt;}
.y78{bottom:318.306667pt;}
.y33{bottom:318.466667pt;}
.y69{bottom:321.826667pt;}
.y32{bottom:333.826667pt;}
.y68{bottom:337.186667pt;}
.y31{bottom:349.186667pt;}
.y67{bottom:352.386667pt;}
.y30{bottom:364.386667pt;}
.y66{bottom:367.746667pt;}
.y2f{bottom:379.746667pt;}
.y65{bottom:383.106667pt;}
.y2e{bottom:395.106667pt;}
.y64{bottom:398.466667pt;}
.y2d{bottom:410.466667pt;}
.y63{bottom:413.826667pt;}
.y2c{bottom:425.826667pt;}
.y62{bottom:429.186667pt;}
.y2b{bottom:441.186667pt;}
.y61{bottom:444.386667pt;}
.y2a{bottom:456.386667pt;}
.y60{bottom:459.746667pt;}
.y29{bottom:471.746667pt;}
.y5f{bottom:475.106667pt;}
.y28{bottom:487.106667pt;}
.y5e{bottom:490.466667pt;}
.y27{bottom:502.466667pt;}
.y5d{bottom:505.826667pt;}
.yae{bottom:517.826667pt;}
.y26{bottom:520.066667pt;}
.y5c{bottom:521.026667pt;}
.yad{bottom:533.026667pt;}
.y25{bottom:535.426667pt;}
.y5b{bottom:536.386667pt;}
.y9a{bottom:544.253333pt;}
.yac{bottom:548.413333pt;}
.y24{bottom:550.813333pt;}
.y5a{bottom:551.773333pt;}
.yab{bottom:563.773333pt;}
.y90{bottom:564.733333pt;}
.y23{bottom:566.173333pt;}
.y59{bottom:567.133333pt;}
.yaa{bottom:579.133333pt;}
.y22{bottom:581.533333pt;}
.y58{bottom:582.493333pt;}
.ya9{bottom:594.493333pt;}
.y21{bottom:596.733333pt;}
.y57{bottom:597.853333pt;}
.ya8{bottom:609.853333pt;}
.y20{bottom:612.093333pt;}
.y56{bottom:613.053333pt;}
.ya7{bottom:625.053333pt;}
.y1f{bottom:627.453333pt;}
.y55{bottom:628.413333pt;}
.ya6{bottom:638.173333pt;}
.y1e{bottom:642.813333pt;}
.y54{bottom:643.773333pt;}
.y8f{bottom:650.013333pt;}
.y1d{bottom:658.173333pt;}
.y53{bottom:659.133333pt;}
.y1c{bottom:673.373333pt;}
.y52{bottom:674.493333pt;}
.y1b{bottom:688.733333pt;}
.y51{bottom:689.853333pt;}
.y1a{bottom:704.093333pt;}
.y50{bottom:705.053333pt;}
.ya2{bottom:715.613333pt;}
.y19{bottom:719.453333pt;}
.y4f{bottom:720.413333pt;}
.y8b{bottom:734.173333pt;}
.y18{bottom:734.813333pt;}
.y4e{bottom:735.773333pt;}
.y8d{bottom:736.093333pt;}
.y17{bottom:750.173333pt;}
.y4d{bottom:751.133333pt;}
.y16{bottom:765.373333pt;}
.y4c{bottom:766.493333pt;}
.y15{bottom:781.733333pt;}
.y4b{bottom:781.893333pt;}
.y4a{bottom:797.093333pt;}
.y14{bottom:797.573333pt;}
.y89{bottom:811.173333pt;}
.y49{bottom:812.453333pt;}
.y13{bottom:814.373333pt;}
.y9e{bottom:823.653333pt;}
.y48{bottom:827.813333pt;}
.y12{bottom:831.333333pt;}
.y47{bottom:843.173333pt;}
.y11{bottom:848.133333pt;}
.y46{bottom:858.533333pt;}
.y10{bottom:864.933333pt;}
.y45{bottom:873.733333pt;}
.yf{bottom:881.893333pt;}
.y44{bottom:889.093333pt;}
.y86{bottom:890.533333pt;}
.ye{bottom:898.373333pt;}
.y43{bottom:904.453333pt;}
.yd{bottom:914.373333pt;}
.y9d{bottom:916.293333pt;}
.y42{bottom:919.813333pt;}
.yc{bottom:932.773333pt;}
.y41{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hb{height:15.200000pt;}
.h11{height:23.200000pt;}
.hf{height:23.360000pt;}
.h10{height:25.120000pt;}
.h14{height:30.560000pt;}
.h6{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.ha{height:38.491250pt;}
.h18{height:38.672812pt;}
.h9{height:41.543750pt;}
.h3{height:42.578750pt;}
.h19{height:43.782500pt;}
.h4{height:45.156250pt;}
.he{height:46.080000pt;}
.h8{height:47.310625pt;}
.h13{height:49.600000pt;}
.h7{height:58.563750pt;}
.hd{height:61.280000pt;}
.h17{height:76.800000pt;}
.h15{height:92.000000pt;}
.hc{height:92.032000pt;}
.h16{height:107.232000pt;}
.h12{height:112.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:59.232000pt;}
.w7{width:83.200000pt;}
.w6{width:95.232000pt;}
.w5{width:107.200000pt;}
.w3{width:108.480000pt;}
.wb{width:154.586667pt;}
.wc{width:154.746667pt;}
.w8{width:158.266667pt;}
.wa{width:249.346667pt;}
.w9{width:249.506667pt;}
.wd{width:254.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x22{left:19.360000pt;}
.x1e{left:21.600000pt;}
.x28{left:24.800000pt;}
.x1b{left:28.640000pt;}
.x25{left:34.080000pt;}
.x2b{left:36.320000pt;}
.x23{left:44.960000pt;}
.x29{left:47.200000pt;}
.x26{left:53.280000pt;}
.x20{left:64.200000pt;}
.x27{left:77.280000pt;}
.x1c{left:82.120000pt;}
.x14{left:89.152000pt;}
.x2c{left:90.600000pt;}
.x1{left:96.031988pt;}
.x7{left:101.311988pt;}
.x2{left:109.471988pt;}
.x2e{left:120.031988pt;}
.xe{left:125.951988pt;}
.x8{left:129.631988pt;}
.x4{left:139.706655pt;}
.x10{left:144.026655pt;}
.x12{left:182.426655pt;}
.x2a{left:183.866667pt;}
.x1f{left:188.506667pt;}
.x1d{left:190.426667pt;}
.x1a{left:192.506667pt;}
.x16{left:198.426667pt;}
.xc{left:252.066655pt;}
.x17{left:258.466667pt;}
.xb{left:290.306655pt;}
.x13{left:307.906655pt;}
.x2d{left:322.146655pt;}
.xd{left:333.826655pt;}
.xa{left:342.146655pt;}
.xf{left:343.586655pt;}
.x6{left:352.386655pt;}
.x11{left:354.626655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
.x18{left:462.493333pt;}
.x24{left:503.293333pt;}
.x21{left:505.213333pt;}
.x19{left:546.493333pt;}
}




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