
    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_7aca4a8b00c32f5b7673a9ed.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_ab11d89ebeab29394fb070ba.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_e05f35f2b73446ad63043717.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a58ce8fa7bf4c3b080d6bca3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4fe9a493cedbc3bc6805fb1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.360000px;}
.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:-16.560000px;}
.ws2{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.080960px;}
._1{width:1.063440px;}
._7{width:2.476080px;}
._8{width:3.674880px;}
._2{width:5.041920px;}
._10{width:6.048000px;}
._9{width:7.051680px;}
._a{width:8.557920px;}
._b{width:9.632160px;}
._e{width:11.414160px;}
._6{width:12.549600px;}
._f{width:13.724640px;}
._1f{width:15.343680px;}
._12{width:16.435200px;}
._d{width:17.586960px;}
._c{width:18.704880px;}
._1c{width:20.497680px;}
._15{width:22.290480px;}
._14{width:24.262560px;}
._13{width:25.338240px;}
._1d{width:26.366400px;}
._1e{width:27.586080px;}
._16{width:29.581200px;}
._20{width:38.154240px;}
._11{width:40.875840px;}
._21{width:43.122240px;}
._1b{width:59.042880px;}
._1a{width:61.552800px;}
._19{width:74.353680px;}
._18{width:75.476880px;}
._17{width:80.389440px;}
._5{width:85.656000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc4{color:rgb(128,0,128);}
.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:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.240000px;}
.y7e{bottom:11.880000px;}
.y83{bottom:20.340000px;}
.y7f{bottom:20.520000px;}
.ya{bottom:35.100000px;}
.y9{bottom:50.580000px;}
.y40{bottom:111.996000px;}
.yda{bottom:120.996000px;}
.y77{bottom:123.156000px;}
.y94{bottom:125.136000px;}
.y3f{bottom:129.096000px;}
.ya9{bottom:134.676000px;}
.y76{bottom:137.736000px;}
.yd9{bottom:139.896000px;}
.y93{bottom:142.416000px;}
.y3e{bottom:146.376000px;}
.ya8{bottom:153.750000px;}
.y75{bottom:155.010000px;}
.yd8{bottom:158.790000px;}
.y92{bottom:159.690000px;}
.y3d{bottom:163.650000px;}
.y74{bottom:172.290000px;}
.ya7{bottom:172.650000px;}
.y91{bottom:176.970000px;}
.yd7{bottom:177.870000px;}
.y3c{bottom:180.930000px;}
.y73{bottom:189.390000px;}
.ya6{bottom:191.550000px;}
.y90{bottom:194.250000px;}
.yd6{bottom:196.770000px;}
.y3b{bottom:198.210000px;}
.y72{bottom:206.670000px;}
.ya5{bottom:210.630000px;}
.y8f{bottom:211.350000px;}
.y3a{bottom:215.490000px;}
.yd5{bottom:215.850000px;}
.y71{bottom:223.950000px;}
.y8e{bottom:228.630000px;}
.ya4{bottom:229.530000px;}
.y39{bottom:232.590000px;}
.yd4{bottom:234.750000px;}
.y70{bottom:241.230000px;}
.y8d{bottom:245.910000px;}
.ya3{bottom:248.610000px;}
.y38{bottom:249.870000px;}
.yd3{bottom:253.650000px;}
.y6f{bottom:258.510000px;}
.y8c{bottom:263.190000px;}
.y37{bottom:267.150000px;}
.ya2{bottom:267.510000px;}
.yd2{bottom:272.730000px;}
.y6e{bottom:275.790000px;}
.y8b{bottom:280.470000px;}
.y36{bottom:284.430000px;}
.ya1{bottom:286.590000px;}
.yd1{bottom:291.630000px;}
.y6d{bottom:292.890000px;}
.y8a{bottom:297.750000px;}
.y35{bottom:301.710000px;}
.ya0{bottom:305.490000px;}
.y6c{bottom:310.170000px;}
.yd0{bottom:310.710000px;}
.y89{bottom:314.850000px;}
.y34{bottom:318.810000px;}
.y9f{bottom:324.390000px;}
.y6b{bottom:327.450000px;}
.ycf{bottom:329.610000px;}
.y88{bottom:332.130000px;}
.y33{bottom:336.090000px;}
.y9e{bottom:343.515000px;}
.y6a{bottom:344.775000px;}
.yce{bottom:348.555000px;}
.y87{bottom:349.455000px;}
.y32{bottom:353.415000px;}
.y69{bottom:362.055000px;}
.y9d{bottom:362.415000px;}
.y86{bottom:366.735000px;}
.ycd{bottom:367.635000px;}
.y31{bottom:370.695000px;}
.y68{bottom:379.335000px;}
.y85{bottom:381.495000px;}
.ycc{bottom:386.535000px;}
.y30{bottom:387.975000px;}
.y67{bottom:396.435000px;}
.y84{bottom:399.495000px;}
.y9c{bottom:400.395000px;}
.y2f{bottom:405.255000px;}
.ycb{bottom:405.615000px;}
.y66{bottom:413.715000px;}
.y9b{bottom:419.295000px;}
.y2e{bottom:422.355000px;}
.yca{bottom:424.515000px;}
.y65{bottom:430.995000px;}
.y82{bottom:434.775000px;}
.y9a{bottom:438.375000px;}
.y2d{bottom:439.635000px;}
.yc9{bottom:443.595000px;}
.y64{bottom:448.275000px;}
.y99{bottom:457.275000px;}
.y2c{bottom:460.875000px;}
.yc8{bottom:462.495000px;}
.y63{bottom:465.555000px;}
.y81{bottom:469.875000px;}
.y98{bottom:476.355000px;}
.y2b{bottom:478.155000px;}
.yc7{bottom:481.395000px;}
.y62{bottom:482.835000px;}
.y97{bottom:495.255000px;}
.y2a{bottom:495.435000px;}
.y61{bottom:499.935000px;}
.yc6{bottom:500.475000px;}
.y80{bottom:505.155000px;}
.y29{bottom:512.715000px;}
.y96{bottom:514.155000px;}
.y60{bottom:517.215000px;}
.yc5{bottom:519.375000px;}
.y28{bottom:529.995000px;}
.y95{bottom:533.235000px;}
.y5f{bottom:534.495000px;}
.yc4{bottom:538.455000px;}
.y7d{bottom:540.435000px;}
.y27{bottom:547.095000px;}
.y5e{bottom:551.775000px;}
.yc3{bottom:557.355000px;}
.y26{bottom:564.375000px;}
.y5d{bottom:569.055000px;}
.y7b{bottom:575.715000px;}
.yc2{bottom:576.255000px;}
.y25{bottom:581.655000px;}
.y5c{bottom:586.155000px;}
.yc1{bottom:595.335000px;}
.y7a{bottom:596.955000px;}
.y24{bottom:598.935000px;}
.y5b{bottom:603.435000px;}
.y79{bottom:614.265000px;}
.y23{bottom:616.245000px;}
.y5a{bottom:620.745000px;}
.y78{bottom:628.305000px;}
.yc0{bottom:633.345000px;}
.y22{bottom:633.525000px;}
.y59{bottom:638.025000px;}
.y21{bottom:650.625000px;}
.ybf{bottom:652.245000px;}
.ydb{bottom:653.505000px;}
.y58{bottom:655.305000px;}
.y20{bottom:667.905000px;}
.ybe{bottom:671.145000px;}
.y57{bottom:672.585000px;}
.y1f{bottom:685.185000px;}
.y56{bottom:689.685000px;}
.ybd{bottom:690.225000px;}
.y1e{bottom:702.465000px;}
.y55{bottom:706.965000px;}
.ybc{bottom:709.125000px;}
.y1d{bottom:719.745000px;}
.y54{bottom:724.245000px;}
.ybb{bottom:728.205000px;}
.y1c{bottom:736.845000px;}
.y53{bottom:741.525000px;}
.yba{bottom:747.105000px;}
.y1b{bottom:754.125000px;}
.y52{bottom:758.805000px;}
.yb9{bottom:766.005000px;}
.y1a{bottom:771.405000px;}
.y51{bottom:776.085000px;}
.yb8{bottom:785.085000px;}
.y19{bottom:788.685000px;}
.y50{bottom:793.185000px;}
.yb7{bottom:803.985000px;}
.y18{bottom:805.965000px;}
.y4f{bottom:810.465000px;}
.yb6{bottom:823.065000px;}
.y17{bottom:823.245000px;}
.y4e{bottom:827.745000px;}
.y16{bottom:840.345000px;}
.yb5{bottom:841.965000px;}
.y4d{bottom:845.025000px;}
.y15{bottom:858.705000px;}
.yb4{bottom:860.865000px;}
.y4c{bottom:862.305000px;}
.y14{bottom:876.570000px;}
.y4b{bottom:879.450000px;}
.yb3{bottom:879.990000px;}
.y13{bottom:895.470000px;}
.y4a{bottom:896.730000px;}
.yb2{bottom:898.890000px;}
.y49{bottom:914.010000px;}
.y12{bottom:914.550000px;}
.yb1{bottom:917.970000px;}
.y48{bottom:931.290000px;}
.y11{bottom:933.450000px;}
.yb0{bottom:936.870000px;}
.y47{bottom:948.570000px;}
.y10{bottom:952.350000px;}
.yaf{bottom:955.950000px;}
.y46{bottom:965.850000px;}
.yf{bottom:971.430000px;}
.yae{bottom:974.850000px;}
.y45{bottom:982.950000px;}
.ye{bottom:990.330000px;}
.yad{bottom:993.750000px;}
.y44{bottom:1000.230000px;}
.yd{bottom:1009.410000px;}
.yac{bottom:1012.830000px;}
.y43{bottom:1017.510000px;}
.yc{bottom:1028.670000px;}
.yab{bottom:1031.730000px;}
.y42{bottom:1034.790000px;}
.yb{bottom:1049.370000px;}
.yaa{bottom:1050.810000px;}
.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.280000px;}
.hd{height:34.380000px;}
.hc{height:34.560000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.302656px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h9{height:47.980898px;}
.he{height:48.224531px;}
.h4{height:50.800781px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:193.170000px;}
.w3{width:230.250000px;}
.w5{width:267.690000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x15{left:36.540000px;}
.x13{left:61.374000px;}
.x19{left:92.700000px;}
.x17{left:93.960000px;}
.x12{left:100.296000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x1c{left:132.875987px;}
.x8{left:134.135987px;}
.x1d{left:137.375987px;}
.x4{left:157.169987px;}
.xc{left:201.809987px;}
.x1a{left:204.329987px;}
.x9{left:229.709987px;}
.xd{left:241.589987px;}
.x11{left:285.374987px;}
.xb{left:317.054987px;}
.x14{left:331.275000px;}
.x1b{left:346.394987px;}
.xa{left:385.274987px;}
.xe{left:386.534987px;}
.x6{left:396.434987px;}
.xf{left:398.954987px;}
.x5{left:412.274987px;}
.x7{left:446.474987px;}
.x3{left:518.324987px;}
.x16{left:525.165000px;}
.x10{left:629.204987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.320000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-0.960853pt;}
._1{width:0.945280pt;}
._7{width:2.200960pt;}
._8{width:3.266560pt;}
._2{width:4.481707pt;}
._10{width:5.376000pt;}
._9{width:6.268160pt;}
._a{width:7.607040pt;}
._b{width:8.561920pt;}
._e{width:10.145920pt;}
._6{width:11.155200pt;}
._f{width:12.199680pt;}
._1f{width:13.638827pt;}
._12{width:14.609067pt;}
._d{width:15.632853pt;}
._c{width:16.626560pt;}
._1c{width:18.220160pt;}
._15{width:19.813760pt;}
._14{width:21.566720pt;}
._13{width:22.522880pt;}
._1d{width:23.436800pt;}
._1e{width:24.520960pt;}
._16{width:26.294400pt;}
._20{width:33.914880pt;}
._11{width:36.334080pt;}
._21{width:38.330880pt;}
._1b{width:52.482560pt;}
._1a{width:54.713600pt;}
._19{width:66.092160pt;}
._18{width:67.090560pt;}
._17{width:71.457280pt;}
._5{width:76.138667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:2.880000pt;}
.y7e{bottom:10.560000pt;}
.y83{bottom:18.080000pt;}
.y7f{bottom:18.240000pt;}
.ya{bottom:31.200000pt;}
.y9{bottom:44.960000pt;}
.y40{bottom:99.552000pt;}
.yda{bottom:107.552000pt;}
.y77{bottom:109.472000pt;}
.y94{bottom:111.232000pt;}
.y3f{bottom:114.752000pt;}
.ya9{bottom:119.712000pt;}
.y76{bottom:122.432000pt;}
.yd9{bottom:124.352000pt;}
.y93{bottom:126.592000pt;}
.y3e{bottom:130.112000pt;}
.ya8{bottom:136.666667pt;}
.y75{bottom:137.786667pt;}
.yd8{bottom:141.146667pt;}
.y92{bottom:141.946667pt;}
.y3d{bottom:145.466667pt;}
.y74{bottom:153.146667pt;}
.ya7{bottom:153.466667pt;}
.y91{bottom:157.306667pt;}
.yd7{bottom:158.106667pt;}
.y3c{bottom:160.826667pt;}
.y73{bottom:168.346667pt;}
.ya6{bottom:170.266667pt;}
.y90{bottom:172.666667pt;}
.yd6{bottom:174.906667pt;}
.y3b{bottom:176.186667pt;}
.y72{bottom:183.706667pt;}
.ya5{bottom:187.226667pt;}
.y8f{bottom:187.866667pt;}
.y3a{bottom:191.546667pt;}
.yd5{bottom:191.866667pt;}
.y71{bottom:199.066667pt;}
.y8e{bottom:203.226667pt;}
.ya4{bottom:204.026667pt;}
.y39{bottom:206.746667pt;}
.yd4{bottom:208.666667pt;}
.y70{bottom:214.426667pt;}
.y8d{bottom:218.586667pt;}
.ya3{bottom:220.986667pt;}
.y38{bottom:222.106667pt;}
.yd3{bottom:225.466667pt;}
.y6f{bottom:229.786667pt;}
.y8c{bottom:233.946667pt;}
.y37{bottom:237.466667pt;}
.ya2{bottom:237.786667pt;}
.yd2{bottom:242.426667pt;}
.y6e{bottom:245.146667pt;}
.y8b{bottom:249.306667pt;}
.y36{bottom:252.826667pt;}
.ya1{bottom:254.746667pt;}
.yd1{bottom:259.226667pt;}
.y6d{bottom:260.346667pt;}
.y8a{bottom:264.666667pt;}
.y35{bottom:268.186667pt;}
.ya0{bottom:271.546667pt;}
.y6c{bottom:275.706667pt;}
.yd0{bottom:276.186667pt;}
.y89{bottom:279.866667pt;}
.y34{bottom:283.386667pt;}
.y9f{bottom:288.346667pt;}
.y6b{bottom:291.066667pt;}
.ycf{bottom:292.986667pt;}
.y88{bottom:295.226667pt;}
.y33{bottom:298.746667pt;}
.y9e{bottom:305.346667pt;}
.y6a{bottom:306.466667pt;}
.yce{bottom:309.826667pt;}
.y87{bottom:310.626667pt;}
.y32{bottom:314.146667pt;}
.y69{bottom:321.826667pt;}
.y9d{bottom:322.146667pt;}
.y86{bottom:325.986667pt;}
.ycd{bottom:326.786667pt;}
.y31{bottom:329.506667pt;}
.y68{bottom:337.186667pt;}
.y85{bottom:339.106667pt;}
.ycc{bottom:343.586667pt;}
.y30{bottom:344.866667pt;}
.y67{bottom:352.386667pt;}
.y84{bottom:355.106667pt;}
.y9c{bottom:355.906667pt;}
.y2f{bottom:360.226667pt;}
.ycb{bottom:360.546667pt;}
.y66{bottom:367.746667pt;}
.y9b{bottom:372.706667pt;}
.y2e{bottom:375.426667pt;}
.yca{bottom:377.346667pt;}
.y65{bottom:383.106667pt;}
.y82{bottom:386.466667pt;}
.y9a{bottom:389.666667pt;}
.y2d{bottom:390.786667pt;}
.yc9{bottom:394.306667pt;}
.y64{bottom:398.466667pt;}
.y99{bottom:406.466667pt;}
.y2c{bottom:409.666667pt;}
.yc8{bottom:411.106667pt;}
.y63{bottom:413.826667pt;}
.y81{bottom:417.666667pt;}
.y98{bottom:423.426667pt;}
.y2b{bottom:425.026667pt;}
.yc7{bottom:427.906667pt;}
.y62{bottom:429.186667pt;}
.y97{bottom:440.226667pt;}
.y2a{bottom:440.386667pt;}
.y61{bottom:444.386667pt;}
.yc6{bottom:444.866667pt;}
.y80{bottom:449.026667pt;}
.y29{bottom:455.746667pt;}
.y96{bottom:457.026667pt;}
.y60{bottom:459.746667pt;}
.yc5{bottom:461.666667pt;}
.y28{bottom:471.106667pt;}
.y95{bottom:473.986667pt;}
.y5f{bottom:475.106667pt;}
.yc4{bottom:478.626667pt;}
.y7d{bottom:480.386667pt;}
.y27{bottom:486.306667pt;}
.y5e{bottom:490.466667pt;}
.yc3{bottom:495.426667pt;}
.y26{bottom:501.666667pt;}
.y5d{bottom:505.826667pt;}
.y7b{bottom:511.746667pt;}
.yc2{bottom:512.226667pt;}
.y25{bottom:517.026667pt;}
.y5c{bottom:521.026667pt;}
.yc1{bottom:529.186667pt;}
.y7a{bottom:530.626667pt;}
.y24{bottom:532.386667pt;}
.y5b{bottom:536.386667pt;}
.y79{bottom:546.013333pt;}
.y23{bottom:547.773333pt;}
.y5a{bottom:551.773333pt;}
.y78{bottom:558.493333pt;}
.yc0{bottom:562.973333pt;}
.y22{bottom:563.133333pt;}
.y59{bottom:567.133333pt;}
.y21{bottom:578.333333pt;}
.ybf{bottom:579.773333pt;}
.ydb{bottom:580.893333pt;}
.y58{bottom:582.493333pt;}
.y20{bottom:593.693333pt;}
.ybe{bottom:596.573333pt;}
.y57{bottom:597.853333pt;}
.y1f{bottom:609.053333pt;}
.y56{bottom:613.053333pt;}
.ybd{bottom:613.533333pt;}
.y1e{bottom:624.413333pt;}
.y55{bottom:628.413333pt;}
.ybc{bottom:630.333333pt;}
.y1d{bottom:639.773333pt;}
.y54{bottom:643.773333pt;}
.ybb{bottom:647.293333pt;}
.y1c{bottom:654.973333pt;}
.y53{bottom:659.133333pt;}
.yba{bottom:664.093333pt;}
.y1b{bottom:670.333333pt;}
.y52{bottom:674.493333pt;}
.yb9{bottom:680.893333pt;}
.y1a{bottom:685.693333pt;}
.y51{bottom:689.853333pt;}
.yb8{bottom:697.853333pt;}
.y19{bottom:701.053333pt;}
.y50{bottom:705.053333pt;}
.yb7{bottom:714.653333pt;}
.y18{bottom:716.413333pt;}
.y4f{bottom:720.413333pt;}
.yb6{bottom:731.613333pt;}
.y17{bottom:731.773333pt;}
.y4e{bottom:735.773333pt;}
.y16{bottom:746.973333pt;}
.yb5{bottom:748.413333pt;}
.y4d{bottom:751.133333pt;}
.y15{bottom:763.293333pt;}
.yb4{bottom:765.213333pt;}
.y4c{bottom:766.493333pt;}
.y14{bottom:779.173333pt;}
.y4b{bottom:781.733333pt;}
.yb3{bottom:782.213333pt;}
.y13{bottom:795.973333pt;}
.y4a{bottom:797.093333pt;}
.yb2{bottom:799.013333pt;}
.y49{bottom:812.453333pt;}
.y12{bottom:812.933333pt;}
.yb1{bottom:815.973333pt;}
.y48{bottom:827.813333pt;}
.y11{bottom:829.733333pt;}
.yb0{bottom:832.773333pt;}
.y47{bottom:843.173333pt;}
.y10{bottom:846.533333pt;}
.yaf{bottom:849.733333pt;}
.y46{bottom:858.533333pt;}
.yf{bottom:863.493333pt;}
.yae{bottom:866.533333pt;}
.y45{bottom:873.733333pt;}
.ye{bottom:880.293333pt;}
.yad{bottom:883.333333pt;}
.y44{bottom:889.093333pt;}
.yd{bottom:897.253333pt;}
.yac{bottom:900.293333pt;}
.y43{bottom:904.453333pt;}
.yc{bottom:914.373333pt;}
.yab{bottom:917.093333pt;}
.y42{bottom:919.813333pt;}
.yb{bottom:932.773333pt;}
.yaa{bottom:934.053333pt;}
.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.360000pt;}
.hd{height:30.560000pt;}
.hc{height:30.720000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.491250pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h9{height:42.649687pt;}
.he{height:42.866250pt;}
.h4{height:45.156250pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:171.706667pt;}
.w3{width:204.666667pt;}
.w5{width:237.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x15{left:32.480000pt;}
.x13{left:54.554667pt;}
.x19{left:82.400000pt;}
.x17{left:83.520000pt;}
.x12{left:89.152000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x1c{left:118.111988pt;}
.x8{left:119.231988pt;}
.x1d{left:122.111988pt;}
.x4{left:139.706655pt;}
.xc{left:179.386655pt;}
.x1a{left:181.626655pt;}
.x9{left:204.186655pt;}
.xd{left:214.746655pt;}
.x11{left:253.666655pt;}
.xb{left:281.826655pt;}
.x14{left:294.466667pt;}
.x1b{left:307.906655pt;}
.xa{left:342.466655pt;}
.xe{left:343.586655pt;}
.x6{left:352.386655pt;}
.xf{left:354.626655pt;}
.x5{left:366.466655pt;}
.x7{left:396.866655pt;}
.x3{left:460.733322pt;}
.x16{left:466.813333pt;}
.x10{left:559.293322pt;}
}




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