
    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_193ddb3a8b15e51f87a94bb5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0bd13893812fc6b29e6bc7fa.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_a0f16896675f38f28e310d91.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b152b4b36298f1c2c6428dff.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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.924000px;}
.ls7{letter-spacing:-0.774000px;}
.ls2{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.lsb{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.900000px;}
.lsd{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.lsc{letter-spacing:46.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1f{margin-left:-3153.568320px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._5{margin-left:-1233.336960px;}
._20{margin-left:-1231.919520px;}
._4{margin-left:-1171.774080px;}
._2e{margin-left:-3.690000px;}
._f{margin-left:-2.428320px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._6{width:2.564880px;}
._7{width:3.589920px;}
._c{width:4.698240px;}
._d{width:5.736960px;}
._9{width:7.028400px;}
._8{width:8.031120px;}
._2d{width:9.074400px;}
._a{width:10.076640px;}
._b{width:11.414160px;}
._2c{width:12.504000px;}
._1e{width:13.781760px;}
._11{width:15.948480px;}
._e{width:17.488320px;}
._12{width:18.966720px;}
._23{width:20.437920px;}
._1d{width:21.453840px;}
._2b{width:22.686000px;}
._27{width:23.867040px;}
._1c{width:24.956880px;}
._10{width:26.749680px;}
._35{width:27.765600px;}
._1a{width:29.080320px;}
._1b{width:30.178800px;}
._26{width:31.239600px;}
._2a{width:32.262480px;}
._22{width:33.704640px;}
._28{width:35.033520px;}
._19{width:36.191760px;}
._42{width:37.219200px;}
._16{width:38.283360px;}
._3e{width:39.359040px;}
._36{width:40.554240px;}
._37{width:41.749440px;}
._24{width:43.086960px;}
._3c{width:44.176800px;}
._21{width:45.739200px;}
._14{width:47.546160px;}
._13{width:48.823920px;}
._15{width:50.064960px;}
._33{width:51.274080px;}
._3b{width:55.745760px;}
._3a{width:57.167520px;}
._32{width:59.557920px;}
._43{width:61.074720px;}
._29{width:63.166320px;}
._3d{width:67.087680px;}
._38{width:69.836640px;}
._39{width:70.898160px;}
._25{width:73.362480px;}
._34{width:75.095520px;}
._2f{width:77.904240px;}
._3f{width:91.589280px;}
._40{width:92.627760px;}
._18{width:94.600080px;}
._17{width:96.034320px;}
._31{width:137.268720px;}
._30{width:159.177840px;}
._41{width:250.610640px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.y9{bottom:10.980000px;}
.y8{bottom:11.700000px;}
.y7e{bottom:25.560000px;}
.ya{bottom:36.180000px;}
.y80{bottom:45.540000px;}
.y6{bottom:52.920000px;}
.y87{bottom:80.640000px;}
.y39{bottom:86.760000px;}
.y91{bottom:89.820000px;}
.y6c{bottom:93.780000px;}
.yb2{bottom:96.480000px;}
.y86{bottom:100.440000px;}
.y38{bottom:106.560000px;}
.ya1{bottom:107.460000px;}
.y90{bottom:109.800000px;}
.y6b{bottom:113.580000px;}
.yb1{bottom:116.280000px;}
.y85{bottom:120.240000px;}
.y37{bottom:126.540000px;}
.ya0{bottom:127.260000px;}
.y8f{bottom:129.600000px;}
.y6a{bottom:130.140000px;}
.yb0{bottom:136.080000px;}
.y36{bottom:146.340000px;}
.y9f{bottom:147.240000px;}
.y8e{bottom:149.400000px;}
.y84{bottom:155.730000px;}
.yaf{bottom:155.910000px;}
.y35{bottom:166.170000px;}
.y9e{bottom:167.070000px;}
.y8d{bottom:169.230000px;}
.yae{bottom:175.890000px;}
.y83{bottom:176.430000px;}
.y34{bottom:185.970000px;}
.y9d{bottom:186.870000px;}
.y8c{bottom:189.030000px;}
.yad{bottom:195.690000px;}
.y33{bottom:205.770000px;}
.y9c{bottom:206.670000px;}
.y8b{bottom:209.010000px;}
.yac{bottom:215.490000px;}
.y82{bottom:216.750000px;}
.y32{bottom:225.750000px;}
.y9b{bottom:226.470000px;}
.y8a{bottom:228.810000px;}
.yab{bottom:235.290000px;}
.y81{bottom:237.450000px;}
.y31{bottom:245.550000px;}
.y9a{bottom:246.450000px;}
.y89{bottom:248.610000px;}
.yaa{bottom:255.090000px;}
.y7f{bottom:257.970000px;}
.y30{bottom:265.350000px;}
.y99{bottom:266.250000px;}
.y88{bottom:268.410000px;}
.ya9{bottom:275.070000px;}
.y2f{bottom:285.150000px;}
.y98{bottom:286.050000px;}
.ya8{bottom:294.870000px;}
.y2e{bottom:304.950000px;}
.y97{bottom:305.850000px;}
.ya7{bottom:314.670000px;}
.y7d{bottom:318.270000px;}
.y2d{bottom:324.930000px;}
.y96{bottom:325.650000px;}
.ya6{bottom:334.470000px;}
.y2c{bottom:344.730000px;}
.y95{bottom:345.630000px;}
.ya5{bottom:354.270000px;}
.y7c{bottom:358.590000px;}
.y2b{bottom:364.530000px;}
.y94{bottom:365.430000px;}
.ya4{bottom:374.250000px;}
.y2a{bottom:384.330000px;}
.y7b{bottom:385.050000px;}
.y93{bottom:385.230000px;}
.ya3{bottom:394.050000px;}
.y92{bottom:401.835000px;}
.y29{bottom:404.175000px;}
.y7a{bottom:404.895000px;}
.ya2{bottom:413.895000px;}
.y28{bottom:424.155000px;}
.y73{bottom:424.695000px;}
.y79{bottom:433.695000px;}
.y72{bottom:444.495000px;}
.y27{bottom:446.115000px;}
.y78{bottom:453.495000px;}
.y71{bottom:464.475000px;}
.y26{bottom:465.915000px;}
.y77{bottom:473.475000px;}
.y70{bottom:484.275000px;}
.y25{bottom:485.895000px;}
.y76{bottom:493.275000px;}
.y6f{bottom:504.075000px;}
.y24{bottom:505.695000px;}
.y75{bottom:513.075000px;}
.y6e{bottom:523.875000px;}
.y23{bottom:525.495000px;}
.y74{bottom:532.875000px;}
.y22{bottom:545.295000px;}
.y6d{bottom:552.675000px;}
.y21{bottom:565.095000px;}
.y69{bottom:572.655000px;}
.y58{bottom:583.455000px;}
.y20{bottom:585.075000px;}
.y68{bottom:592.455000px;}
.y57{bottom:603.255000px;}
.y1f{bottom:604.875000px;}
.y67{bottom:612.255000px;}
.y56{bottom:623.055000px;}
.y1e{bottom:624.675000px;}
.y66{bottom:632.055000px;}
.y55{bottom:642.855000px;}
.y1d{bottom:644.475000px;}
.y65{bottom:651.885000px;}
.y54{bottom:662.865000px;}
.y1c{bottom:664.305000px;}
.y64{bottom:671.865000px;}
.y53{bottom:682.665000px;}
.y1b{bottom:684.285000px;}
.y63{bottom:691.665000px;}
.y52{bottom:702.465000px;}
.y1a{bottom:704.085000px;}
.y62{bottom:711.465000px;}
.y51{bottom:722.265000px;}
.y19{bottom:723.885000px;}
.y61{bottom:731.265000px;}
.y50{bottom:742.065000px;}
.y18{bottom:743.685000px;}
.y60{bottom:751.065000px;}
.y4f{bottom:762.045000px;}
.y17{bottom:763.485000px;}
.y5f{bottom:771.045000px;}
.y4e{bottom:781.845000px;}
.y16{bottom:783.465000px;}
.y5e{bottom:790.845000px;}
.y4d{bottom:801.645000px;}
.y15{bottom:803.085000px;}
.y5d{bottom:810.645000px;}
.y4c{bottom:821.445000px;}
.y14{bottom:825.405000px;}
.y5c{bottom:830.445000px;}
.y4b{bottom:841.245000px;}
.y5b{bottom:850.245000px;}
.y13{bottom:850.425000px;}
.y4a{bottom:861.225000px;}
.y12{bottom:870.225000px;}
.y49{bottom:881.025000px;}
.y11{bottom:890.025000px;}
.y48{bottom:900.870000px;}
.y10{bottom:909.870000px;}
.y47{bottom:920.670000px;}
.yf{bottom:925.170000px;}
.y5a{bottom:929.670000px;}
.y46{bottom:940.470000px;}
.ye{bottom:946.950000px;}
.y59{bottom:949.470000px;}
.yd{bottom:968.190000px;}
.y45{bottom:969.450000px;}
.y44{bottom:989.250000px;}
.yc{bottom:991.590000px;}
.y43{bottom:1009.050000px;}
.yb{bottom:1023.450000px;}
.y42{bottom:1028.850000px;}
.y41{bottom:1048.650000px;}
.y5{bottom:1051.530000px;}
.y40{bottom:1068.630000px;}
.y4{bottom:1082.850000px;}
.y3f{bottom:1088.430000px;}
.y3e{bottom:1108.230000px;}
.y3{bottom:1113.630000px;}
.y3d{bottom:1128.030000px;}
.y2{bottom:1144.590000px;}
.y3c{bottom:1147.860000px;}
.y3b{bottom:1167.840000px;}
.y1{bottom:1178.460000px;}
.y3a{bottom:1194.300000px;}
.hd{height:19.800000px;}
.h5{height:21.240000px;}
.h8{height:27.432422px;}
.hb{height:28.115859px;}
.h7{height:29.464453px;}
.he{height:39.600000px;}
.hc{height:42.164648px;}
.h4{height:43.215117px;}
.h10{height:43.506914px;}
.h3{height:46.736719px;}
.h6{height:47.901094px;}
.h9{height:52.066406px;}
.ha{height:53.224453px;}
.hf{height:59.580000px;}
.h2{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.816000px;}
.wc{width:88.056000px;}
.w8{width:88.776000px;}
.wd{width:131.616000px;}
.w9{width:131.976000px;}
.wb{width:132.480000px;}
.w6{width:132.696000px;}
.w7{width:133.200000px;}
.wa{width:277.995000px;}
.w5{width:278.355000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x13{left:55.979987px;}
.x2{left:62.100000px;}
.x18{left:64.080000px;}
.x24{left:66.779987px;}
.x20{left:67.859987px;}
.xb{left:68.939987px;}
.x16{left:77.939987px;}
.x10{left:88.955987px;}
.x25{left:93.815987px;}
.xe{left:97.415987px;}
.xf{left:106.055987px;}
.x11{left:107.135987px;}
.x4{left:120.636000px;}
.xd{left:136.655987px;}
.x1e{left:160.949987px;}
.x8{left:184.179000px;}
.x7{left:189.219000px;}
.x9{left:240.149987px;}
.x19{left:342.435000px;}
.x17{left:372.314987px;}
.xc{left:376.454987px;}
.x6{left:396.789000px;}
.x5{left:410.289000px;}
.x26{left:419.474987px;}
.x21{left:426.854987px;}
.xa{left:446.504987px;}
.x12{left:473.504987px;}
.x1a{left:475.125000px;}
.x22{left:486.284987px;}
.x23{left:513.284987px;}
.x14{left:526.604987px;}
.x1b{left:608.325000px;}
.x1c{left:697.110000px;}
.x1f{left:747.329987px;}
.x15{left:762.089987px;}
.x1d{left:785.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.821333pt;}
.ls7{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.lsb{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.800000pt;}
.lsd{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.lsc{letter-spacing:41.040640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1f{margin-left:-2803.171840pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._5{margin-left:-1096.299520pt;}
._20{margin-left:-1095.039573pt;}
._4{margin-left:-1041.576960pt;}
._2e{margin-left:-3.280000pt;}
._f{margin-left:-2.158507pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._6{width:2.279893pt;}
._7{width:3.191040pt;}
._c{width:4.176213pt;}
._d{width:5.099520pt;}
._9{width:6.247467pt;}
._8{width:7.138773pt;}
._2d{width:8.066133pt;}
._a{width:8.957013pt;}
._b{width:10.145920pt;}
._2c{width:11.114667pt;}
._1e{width:12.250453pt;}
._11{width:14.176427pt;}
._e{width:15.545173pt;}
._12{width:16.859307pt;}
._23{width:18.167040pt;}
._1d{width:19.070080pt;}
._2b{width:20.165333pt;}
._27{width:21.215147pt;}
._1c{width:22.183893pt;}
._10{width:23.777493pt;}
._35{width:24.680533pt;}
._1a{width:25.849173pt;}
._1b{width:26.825600pt;}
._26{width:27.768533pt;}
._2a{width:28.677760pt;}
._22{width:29.959680pt;}
._28{width:31.140907pt;}
._19{width:32.170453pt;}
._42{width:33.083733pt;}
._16{width:34.029653pt;}
._3e{width:34.985813pt;}
._36{width:36.048213pt;}
._37{width:37.110613pt;}
._24{width:38.299520pt;}
._3c{width:39.268267pt;}
._21{width:40.657067pt;}
._14{width:42.263253pt;}
._13{width:43.399040pt;}
._15{width:44.502187pt;}
._33{width:45.576960pt;}
._3b{width:49.551787pt;}
._3a{width:50.815573pt;}
._32{width:52.940373pt;}
._43{width:54.288640pt;}
._29{width:56.147840pt;}
._3d{width:59.633493pt;}
._38{width:62.077013pt;}
._39{width:63.020587pt;}
._25{width:65.211093pt;}
._34{width:66.751573pt;}
._2f{width:69.248213pt;}
._3f{width:81.412693pt;}
._40{width:82.335787pt;}
._18{width:84.088960pt;}
._17{width:85.363840pt;}
._31{width:122.016640pt;}
._30{width:141.491413pt;}
._41{width:222.765013pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.y9{bottom:9.760000pt;}
.y8{bottom:10.400000pt;}
.y7e{bottom:22.720000pt;}
.ya{bottom:32.160000pt;}
.y80{bottom:40.480000pt;}
.y6{bottom:47.040000pt;}
.y87{bottom:71.680000pt;}
.y39{bottom:77.120000pt;}
.y91{bottom:79.840000pt;}
.y6c{bottom:83.360000pt;}
.yb2{bottom:85.760000pt;}
.y86{bottom:89.280000pt;}
.y38{bottom:94.720000pt;}
.ya1{bottom:95.520000pt;}
.y90{bottom:97.600000pt;}
.y6b{bottom:100.960000pt;}
.yb1{bottom:103.360000pt;}
.y85{bottom:106.880000pt;}
.y37{bottom:112.480000pt;}
.ya0{bottom:113.120000pt;}
.y8f{bottom:115.200000pt;}
.y6a{bottom:115.680000pt;}
.yb0{bottom:120.960000pt;}
.y36{bottom:130.080000pt;}
.y9f{bottom:130.880000pt;}
.y8e{bottom:132.800000pt;}
.y84{bottom:138.426667pt;}
.yaf{bottom:138.586667pt;}
.y35{bottom:147.706667pt;}
.y9e{bottom:148.506667pt;}
.y8d{bottom:150.426667pt;}
.yae{bottom:156.346667pt;}
.y83{bottom:156.826667pt;}
.y34{bottom:165.306667pt;}
.y9d{bottom:166.106667pt;}
.y8c{bottom:168.026667pt;}
.yad{bottom:173.946667pt;}
.y33{bottom:182.906667pt;}
.y9c{bottom:183.706667pt;}
.y8b{bottom:185.786667pt;}
.yac{bottom:191.546667pt;}
.y82{bottom:192.666667pt;}
.y32{bottom:200.666667pt;}
.y9b{bottom:201.306667pt;}
.y8a{bottom:203.386667pt;}
.yab{bottom:209.146667pt;}
.y81{bottom:211.066667pt;}
.y31{bottom:218.266667pt;}
.y9a{bottom:219.066667pt;}
.y89{bottom:220.986667pt;}
.yaa{bottom:226.746667pt;}
.y7f{bottom:229.306667pt;}
.y30{bottom:235.866667pt;}
.y99{bottom:236.666667pt;}
.y88{bottom:238.586667pt;}
.ya9{bottom:244.506667pt;}
.y2f{bottom:253.466667pt;}
.y98{bottom:254.266667pt;}
.ya8{bottom:262.106667pt;}
.y2e{bottom:271.066667pt;}
.y97{bottom:271.866667pt;}
.ya7{bottom:279.706667pt;}
.y7d{bottom:282.906667pt;}
.y2d{bottom:288.826667pt;}
.y96{bottom:289.466667pt;}
.ya6{bottom:297.306667pt;}
.y2c{bottom:306.426667pt;}
.y95{bottom:307.226667pt;}
.ya5{bottom:314.906667pt;}
.y7c{bottom:318.746667pt;}
.y2b{bottom:324.026667pt;}
.y94{bottom:324.826667pt;}
.ya4{bottom:332.666667pt;}
.y2a{bottom:341.626667pt;}
.y7b{bottom:342.266667pt;}
.y93{bottom:342.426667pt;}
.ya3{bottom:350.266667pt;}
.y92{bottom:357.186667pt;}
.y29{bottom:359.266667pt;}
.y7a{bottom:359.906667pt;}
.ya2{bottom:367.906667pt;}
.y28{bottom:377.026667pt;}
.y73{bottom:377.506667pt;}
.y79{bottom:385.506667pt;}
.y72{bottom:395.106667pt;}
.y27{bottom:396.546667pt;}
.y78{bottom:403.106667pt;}
.y71{bottom:412.866667pt;}
.y26{bottom:414.146667pt;}
.y77{bottom:420.866667pt;}
.y70{bottom:430.466667pt;}
.y25{bottom:431.906667pt;}
.y76{bottom:438.466667pt;}
.y6f{bottom:448.066667pt;}
.y24{bottom:449.506667pt;}
.y75{bottom:456.066667pt;}
.y6e{bottom:465.666667pt;}
.y23{bottom:467.106667pt;}
.y74{bottom:473.666667pt;}
.y22{bottom:484.706667pt;}
.y6d{bottom:491.266667pt;}
.y21{bottom:502.306667pt;}
.y69{bottom:509.026667pt;}
.y58{bottom:518.626667pt;}
.y20{bottom:520.066667pt;}
.y68{bottom:526.626667pt;}
.y57{bottom:536.226667pt;}
.y1f{bottom:537.666667pt;}
.y67{bottom:544.226667pt;}
.y56{bottom:553.826667pt;}
.y1e{bottom:555.266667pt;}
.y66{bottom:561.826667pt;}
.y55{bottom:571.426667pt;}
.y1d{bottom:572.866667pt;}
.y65{bottom:579.453333pt;}
.y54{bottom:589.213333pt;}
.y1c{bottom:590.493333pt;}
.y64{bottom:597.213333pt;}
.y53{bottom:606.813333pt;}
.y1b{bottom:608.253333pt;}
.y63{bottom:614.813333pt;}
.y52{bottom:624.413333pt;}
.y1a{bottom:625.853333pt;}
.y62{bottom:632.413333pt;}
.y51{bottom:642.013333pt;}
.y19{bottom:643.453333pt;}
.y61{bottom:650.013333pt;}
.y50{bottom:659.613333pt;}
.y18{bottom:661.053333pt;}
.y60{bottom:667.613333pt;}
.y4f{bottom:677.373333pt;}
.y17{bottom:678.653333pt;}
.y5f{bottom:685.373333pt;}
.y4e{bottom:694.973333pt;}
.y16{bottom:696.413333pt;}
.y5e{bottom:702.973333pt;}
.y4d{bottom:712.573333pt;}
.y15{bottom:713.853333pt;}
.y5d{bottom:720.573333pt;}
.y4c{bottom:730.173333pt;}
.y14{bottom:733.693333pt;}
.y5c{bottom:738.173333pt;}
.y4b{bottom:747.773333pt;}
.y5b{bottom:755.773333pt;}
.y13{bottom:755.933333pt;}
.y4a{bottom:765.533333pt;}
.y12{bottom:773.533333pt;}
.y49{bottom:783.133333pt;}
.y11{bottom:791.133333pt;}
.y48{bottom:800.773333pt;}
.y10{bottom:808.773333pt;}
.y47{bottom:818.373333pt;}
.yf{bottom:822.373333pt;}
.y5a{bottom:826.373333pt;}
.y46{bottom:835.973333pt;}
.ye{bottom:841.733333pt;}
.y59{bottom:843.973333pt;}
.yd{bottom:860.613333pt;}
.y45{bottom:861.733333pt;}
.y44{bottom:879.333333pt;}
.yc{bottom:881.413333pt;}
.y43{bottom:896.933333pt;}
.yb{bottom:909.733333pt;}
.y42{bottom:914.533333pt;}
.y41{bottom:932.133333pt;}
.y5{bottom:934.693333pt;}
.y40{bottom:949.893333pt;}
.y4{bottom:962.533333pt;}
.y3f{bottom:967.493333pt;}
.y3e{bottom:985.093333pt;}
.y3{bottom:989.893333pt;}
.y3d{bottom:1002.693333pt;}
.y2{bottom:1017.413333pt;}
.y3c{bottom:1020.320000pt;}
.y3b{bottom:1038.080000pt;}
.y1{bottom:1047.520000pt;}
.y3a{bottom:1061.600000pt;}
.hd{height:17.600000pt;}
.h5{height:18.880000pt;}
.h8{height:24.384375pt;}
.hb{height:24.991875pt;}
.h7{height:26.190625pt;}
.he{height:35.200000pt;}
.hc{height:37.479688pt;}
.h4{height:38.413438pt;}
.h10{height:38.672812pt;}
.h3{height:41.543750pt;}
.h6{height:42.578750pt;}
.h9{height:46.281250pt;}
.ha{height:47.310625pt;}
.hf{height:52.960000pt;}
.h2{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:51.392000pt;}
.wc{width:78.272000pt;}
.w8{width:78.912000pt;}
.wd{width:116.992000pt;}
.w9{width:117.312000pt;}
.wb{width:117.760000pt;}
.w6{width:117.952000pt;}
.w7{width:118.400000pt;}
.wa{width:247.106667pt;}
.w5{width:247.426667pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x13{left:49.759988pt;}
.x2{left:55.200000pt;}
.x18{left:56.960000pt;}
.x24{left:59.359988pt;}
.x20{left:60.319988pt;}
.xb{left:61.279988pt;}
.x16{left:69.279988pt;}
.x10{left:79.071988pt;}
.x25{left:83.391988pt;}
.xe{left:86.591988pt;}
.xf{left:94.271988pt;}
.x11{left:95.231988pt;}
.x4{left:107.232000pt;}
.xd{left:121.471988pt;}
.x1e{left:143.066655pt;}
.x8{left:163.714667pt;}
.x7{left:168.194667pt;}
.x9{left:213.466655pt;}
.x19{left:304.386667pt;}
.x17{left:330.946655pt;}
.xc{left:334.626655pt;}
.x6{left:352.701333pt;}
.x5{left:364.701333pt;}
.x26{left:372.866655pt;}
.x21{left:379.426655pt;}
.xa{left:396.893322pt;}
.x12{left:420.893322pt;}
.x1a{left:422.333333pt;}
.x22{left:432.253322pt;}
.x23{left:456.253322pt;}
.x14{left:468.093322pt;}
.x1b{left:540.733333pt;}
.x1c{left:619.653333pt;}
.x1f{left:664.293322pt;}
.x15{left:677.413322pt;}
.x1d{left:697.893322pt;}
}




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