
    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_a4ea875a3fafffdb0a71a4d3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_17f57a77bbb6581284dacefd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_c8d609044baac5ee82a8b96d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_9d5c38f42c3beb71b7570404.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a9bd6d9863e9b2b829910741.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6e3257aed73c538484635a2e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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:ff8;src:url('chunks/assets/font_a4f34751f0f3f097d7b5807a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_75f93eabdaf4a2755fa00a1b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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:ffa;src:url('chunks/assets/font_13c37245964a4fdcb70fb70b.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.lsd{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.126000px;}
.ls6{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls3{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.900000px;}
.ls9{letter-spacing:8.820000px;}
.lsc{letter-spacing:52.668000px;}
.ls7{letter-spacing:74.988000px;}
.ls2{letter-spacing:75.132000px;}
.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;}
}
.ws7{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.374000px;}
.ws6{word-spacing:-12.672000px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-3.156000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._a{width:2.484000px;}
._9{width:3.888000px;}
._10{width:5.292000px;}
._17{width:6.358320px;}
._14{width:7.506000px;}
._13{width:8.532000px;}
._f{width:9.828000px;}
._e{width:10.932480px;}
._d{width:12.287520px;}
._11{width:15.498000px;}
._12{width:16.675680px;}
._15{width:17.956560px;}
._4{width:19.602000px;}
._3{width:20.682000px;}
._b{width:21.999840px;}
._6{width:23.112000px;}
._5{width:24.138000px;}
._c{width:25.412640px;}
._18{width:26.609040px;}
._7{width:27.756000px;}
._1b{width:28.908240px;}
._20{width:29.925840px;}
._1f{width:32.238000px;}
._8{width:34.452000px;}
._21{width:42.149520px;}
._1c{width:43.416000px;}
._1d{width:46.548000px;}
._1e{width:47.890320px;}
._22{width:53.622000px;}
._1a{width:60.593040px;}
._19{width:61.722000px;}
._23{width:70.794000px;}
._2{width:2903.467200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y39{bottom:-7.815000px;}
.y41{bottom:-6.045000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y47{bottom:6.990000px;}
.y6c{bottom:9.900000px;}
.y6e{bottom:10.080000px;}
.y7a{bottom:10.245000px;}
.y70{bottom:10.260000px;}
.y75{bottom:11.700000px;}
.y32{bottom:12.345000px;}
.y8{bottom:22.500000px;}
.y7{bottom:41.040000px;}
.y6{bottom:56.880000px;}
.y35{bottom:60.585000px;}
.y3e{bottom:71.535000px;}
.y22{bottom:85.680000px;}
.y2d{bottom:94.680000px;}
.y8a{bottom:99.180000px;}
.yc4{bottom:101.340000px;}
.y21{bottom:112.680000px;}
.y97{bottom:117.360000px;}
.yc3{bottom:119.160000px;}
.y3c{bottom:120.135000px;}
.y89{bottom:126.360000px;}
.y20{bottom:130.500000px;}
.y96{bottom:135.180000px;}
.y3b{bottom:139.935000px;}
.y88{bottom:144.180000px;}
.y2f{bottom:144.870000px;}
.yc2{bottom:146.160000px;}
.y1f{bottom:148.320000px;}
.y95{bottom:153.000000px;}
.y87{bottom:162.000000px;}
.yc1{bottom:163.980000px;}
.y2c{bottom:166.140000px;}
.y94{bottom:170.820000px;}
.y1e{bottom:175.140000px;}
.y86{bottom:179.820000px;}
.y2b{bottom:183.960000px;}
.yc0{bottom:190.440000px;}
.y1d{bottom:192.960000px;}
.y85{bottom:197.820000px;}
.y2a{bottom:201.600000px;}
.y1c{bottom:210.990000px;}
.y93{bottom:215.670000px;}
.ybf{bottom:217.650000px;}
.y84{bottom:224.670000px;}
.y1b{bottom:228.810000px;}
.y92{bottom:233.490000px;}
.y83{bottom:242.490000px;}
.ybe{bottom:244.470000px;}
.y1a{bottom:246.630000px;}
.y91{bottom:251.310000px;}
.y82{bottom:260.310000px;}
.ybd{bottom:262.290000px;}
.y19{bottom:264.450000px;}
.y90{bottom:269.130000px;}
.y81{bottom:278.130000px;}
.y18{bottom:282.270000px;}
.y29{bottom:284.250000px;}
.y8f{bottom:286.950000px;}
.ybc{bottom:289.290000px;}
.y17{bottom:300.090000px;}
.y80{bottom:304.950000px;}
.ybb{bottom:307.110000px;}
.y28{bottom:317.010000px;}
.y16{bottom:318.090000px;}
.y8e{bottom:322.770000px;}
.y7f{bottom:322.950000px;}
.yba{bottom:333.930000px;}
.y27{bottom:335.010000px;}
.y15{bottom:335.910000px;}
.y8d{bottom:340.590000px;}
.y7e{bottom:340.770000px;}
.y26{bottom:352.830000px;}
.y14{bottom:353.730000px;}
.y7d{bottom:358.590000px;}
.yb9{bottom:360.390000px;}
.y8c{bottom:367.050000px;}
.y25{bottom:370.650000px;}
.y7c{bottom:376.410000px;}
.y13{bottom:380.550000px;}
.y24{bottom:388.470000px;}
.y8b{bottom:393.870000px;}
.y7b{bottom:394.230000px;}
.y12{bottom:400.350000px;}
.y23{bottom:406.290000px;}
.yb8{bottom:413.490000px;}
.y79{bottom:420.345000px;}
.yb7{bottom:431.310000px;}
.y11{bottom:435.990000px;}
.yb6{bottom:449.175000px;}
.y78{bottom:453.315000px;}
.y3a{bottom:454.140000px;}
.yb5{bottom:466.995000px;}
.y40{bottom:476.895000px;}
.yb4{bottom:484.815000px;}
.y77{bottom:486.075000px;}
.yb3{bottom:502.635000px;}
.y3f{bottom:505.695000px;}
.y76{bottom:519.015000px;}
.yb2{bottom:520.635000px;}
.yb1{bottom:538.455000px;}
.y74{bottom:551.775000px;}
.y3d{bottom:554.475000px;}
.yb0{bottom:556.275000px;}
.yaf{bottom:574.095000px;}
.yae{bottom:591.915000px;}
.y73{bottom:592.455000px;}
.yad{bottom:609.915000px;}
.y72{bottom:618.915000px;}
.yac{bottom:627.735000px;}
.y10{bottom:629.895000px;}
.y71{bottom:651.855000px;}
.yab{bottom:656.535000px;}
.yf{bottom:671.115000px;}
.y6f{bottom:684.645000px;}
.ye{bottom:686.805000px;}
.yaa{bottom:689.325000px;}
.y38{bottom:693.180000px;}
.ya9{bottom:707.145000px;}
.y37{bottom:713.265000px;}
.y34{bottom:717.120000px;}
.y6d{bottom:717.585000px;}
.ya8{bottom:734.145000px;}
.yd{bottom:742.965000px;}
.y6b{bottom:750.345000px;}
.ya7{bottom:751.965000px;}
.y36{bottom:767.265000px;}
.ya6{bottom:769.785000px;}
.y6a{bottom:787.425000px;}
.ya5{bottom:787.605000px;}
.yc{bottom:797.145000px;}
.ya4{bottom:805.425000px;}
.y69{bottom:814.605000px;}
.y5c{bottom:814.785000px;}
.y33{bottom:819.285000px;}
.ya3{bottom:823.245000px;}
.y68{bottom:832.425000px;}
.y5b{bottom:832.605000px;}
.y67{bottom:850.245000px;}
.y5a{bottom:850.425000px;}
.y31{bottom:860.040000px;}
.y66{bottom:868.245000px;}
.ya2{bottom:877.065000px;}
.y59{bottom:877.245000px;}
.y65{bottom:895.065000px;}
.y58{bottom:895.245000px;}
.y30{bottom:897.225000px;}
.ya1{bottom:903.885000px;}
.y64{bottom:912.930000px;}
.y57{bottom:913.110000px;}
.ya0{bottom:921.750000px;}
.y63{bottom:930.750000px;}
.y56{bottom:930.930000px;}
.yb{bottom:934.350000px;}
.y9f{bottom:939.570000px;}
.y2e{bottom:941.400000px;}
.y55{bottom:948.750000px;}
.y46{bottom:955.800000px;}
.y62{bottom:957.570000px;}
.y54{bottom:966.570000px;}
.y61{bottom:975.570000px;}
.y9e{bottom:984.390000px;}
.y53{bottom:984.570000px;}
.y45{bottom:989.430000px;}
.y60{bottom:993.390000px;}
.ycc{bottom:1000.230000px;}
.y9d{bottom:1002.210000px;}
.y52{bottom:1002.390000px;}
.y44{bottom:1015.710000px;}
.y51{bottom:1020.210000px;}
.ycb{bottom:1027.050000px;}
.y9c{bottom:1029.030000px;}
.y50{bottom:1038.030000px;}
.y43{bottom:1041.990000px;}
.y9b{bottom:1046.850000px;}
.y5f{bottom:1055.850000px;}
.yca{bottom:1061.970000px;}
.y9a{bottom:1064.670000px;}
.y4f{bottom:1064.850000px;}
.y42{bottom:1068.450000px;}
.y5e{bottom:1073.670000px;}
.yc9{bottom:1082.490000px;}
.y4e{bottom:1082.670000px;}
.y5d{bottom:1091.670000px;}
.y4d{bottom:1100.670000px;}
.ya{bottom:1107.690000px;}
.yc8{bottom:1109.310000px;}
.y99{bottom:1109.490000px;}
.y4c{bottom:1118.490000px;}
.y98{bottom:1127.310000px;}
.yc7{bottom:1136.130000px;}
.y4b{bottom:1136.310000px;}
.y4a{bottom:1154.160000px;}
.yc6{bottom:1162.980000px;}
.y49{bottom:1171.980000px;}
.yc5{bottom:1189.440000px;}
.y48{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h21{height:26.805000px;}
.h1d{height:26.820000px;}
.h1e{height:26.850000px;}
.h1f{height:26.985000px;}
.h1c{height:27.000000px;}
.h22{height:27.021000px;}
.h20{height:30.585000px;}
.hd{height:37.863281px;}
.h15{height:44.100000px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.he{height:54.421875px;}
.hc{height:55.503491px;}
.h8{height:55.825312px;}
.h18{height:58.621992px;}
.h14{height:58.651172px;}
.h1a{height:58.792500px;}
.h19{height:60.226875px;}
.h6{height:65.010937px;}
.h16{height:65.152266px;}
.h12{height:66.757500px;}
.h11{height:68.580000px;}
.h13{height:74.160000px;}
.hb{height:78.367500px;}
.h10{height:84.898125px;}
.h1b{height:132.480000px;}
.hf{height:160.380000px;}
.h17{height:162.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.w2{width:85.320000px;}
.wb{width:110.916000px;}
.wf{width:111.096000px;}
.wa{width:129.802500px;}
.we{width:134.482500px;}
.w10{width:138.096000px;}
.wc{width:139.176000px;}
.wd{width:378.420000px;}
.w11{width:379.320000px;}
.w3{width:470.160000px;}
.w9{width:500.940000px;}
.w8{width:774.540000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w7{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xf{left:10.800000px;}
.x20{left:23.580000px;}
.x27{left:33.511500px;}
.x24{left:37.980000px;}
.x1f{left:42.331500px;}
.x13{left:51.660000px;}
.x5{left:54.000000px;}
.x26{left:59.404500px;}
.x16{left:61.200000px;}
.x25{left:62.640000px;}
.x15{left:65.160000px;}
.x17{left:72.000000px;}
.x2b{left:78.840000px;}
.xc{left:81.000000px;}
.x1{left:100.080000px;}
.x2c{left:105.876000px;}
.xd{left:108.036000px;}
.x14{left:123.156000px;}
.x10{left:139.896000px;}
.x6{left:161.670000px;}
.xa{left:174.090000px;}
.x23{left:175.710000px;}
.x1c{left:177.915000px;}
.x11{left:195.510000px;}
.x1b{left:198.360000px;}
.x19{left:256.890000px;}
.x1e{left:262.830000px;}
.x18{left:265.575000px;}
.x21{left:310.035000px;}
.x28{left:312.375000px;}
.x1a{left:324.435000px;}
.x7{left:356.655000px;}
.x12{left:358.455000px;}
.x3{left:367.920000px;}
.x22{left:452.820000px;}
.x29{left:454.260000px;}
.xe{left:465.945000px;}
.x4{left:468.900000px;}
.x1d{left:492.945000px;}
.x2a{left:519.945000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.112000pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls3{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls9{letter-spacing:7.840000pt;}
.lsc{letter-spacing:46.816000pt;}
.ls7{letter-spacing:66.656000pt;}
.ls2{letter-spacing:66.784000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.888000pt;}
.ws6{word-spacing:-11.264000pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-2.805333pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._a{width:2.208000pt;}
._9{width:3.456000pt;}
._10{width:4.704000pt;}
._17{width:5.651840pt;}
._14{width:6.672000pt;}
._13{width:7.584000pt;}
._f{width:8.736000pt;}
._e{width:9.717760pt;}
._d{width:10.922240pt;}
._11{width:13.776000pt;}
._12{width:14.822827pt;}
._15{width:15.961387pt;}
._4{width:17.424000pt;}
._3{width:18.384000pt;}
._b{width:19.555413pt;}
._6{width:20.544000pt;}
._5{width:21.456000pt;}
._c{width:22.589013pt;}
._18{width:23.652480pt;}
._7{width:24.672000pt;}
._1b{width:25.696213pt;}
._20{width:26.600747pt;}
._1f{width:28.656000pt;}
._8{width:30.624000pt;}
._21{width:37.466240pt;}
._1c{width:38.592000pt;}
._1d{width:41.376000pt;}
._1e{width:42.569173pt;}
._22{width:47.664000pt;}
._1a{width:53.860480pt;}
._19{width:54.864000pt;}
._23{width:62.928000pt;}
._2{width:2580.859733pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y39{bottom:-6.946667pt;}
.y41{bottom:-5.373333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y47{bottom:6.213333pt;}
.y6c{bottom:8.800000pt;}
.y6e{bottom:8.960000pt;}
.y7a{bottom:9.106667pt;}
.y70{bottom:9.120000pt;}
.y75{bottom:10.400000pt;}
.y32{bottom:10.973333pt;}
.y8{bottom:20.000000pt;}
.y7{bottom:36.480000pt;}
.y6{bottom:50.560000pt;}
.y35{bottom:53.853333pt;}
.y3e{bottom:63.586667pt;}
.y22{bottom:76.160000pt;}
.y2d{bottom:84.160000pt;}
.y8a{bottom:88.160000pt;}
.yc4{bottom:90.080000pt;}
.y21{bottom:100.160000pt;}
.y97{bottom:104.320000pt;}
.yc3{bottom:105.920000pt;}
.y3c{bottom:106.786667pt;}
.y89{bottom:112.320000pt;}
.y20{bottom:116.000000pt;}
.y96{bottom:120.160000pt;}
.y3b{bottom:124.386667pt;}
.y88{bottom:128.160000pt;}
.y2f{bottom:128.773333pt;}
.yc2{bottom:129.920000pt;}
.y1f{bottom:131.840000pt;}
.y95{bottom:136.000000pt;}
.y87{bottom:144.000000pt;}
.yc1{bottom:145.760000pt;}
.y2c{bottom:147.680000pt;}
.y94{bottom:151.840000pt;}
.y1e{bottom:155.680000pt;}
.y86{bottom:159.840000pt;}
.y2b{bottom:163.520000pt;}
.yc0{bottom:169.280000pt;}
.y1d{bottom:171.520000pt;}
.y85{bottom:175.840000pt;}
.y2a{bottom:179.200000pt;}
.y1c{bottom:187.546667pt;}
.y93{bottom:191.706667pt;}
.ybf{bottom:193.466667pt;}
.y84{bottom:199.706667pt;}
.y1b{bottom:203.386667pt;}
.y92{bottom:207.546667pt;}
.y83{bottom:215.546667pt;}
.ybe{bottom:217.306667pt;}
.y1a{bottom:219.226667pt;}
.y91{bottom:223.386667pt;}
.y82{bottom:231.386667pt;}
.ybd{bottom:233.146667pt;}
.y19{bottom:235.066667pt;}
.y90{bottom:239.226667pt;}
.y81{bottom:247.226667pt;}
.y18{bottom:250.906667pt;}
.y29{bottom:252.666667pt;}
.y8f{bottom:255.066667pt;}
.ybc{bottom:257.146667pt;}
.y17{bottom:266.746667pt;}
.y80{bottom:271.066667pt;}
.ybb{bottom:272.986667pt;}
.y28{bottom:281.786667pt;}
.y16{bottom:282.746667pt;}
.y8e{bottom:286.906667pt;}
.y7f{bottom:287.066667pt;}
.yba{bottom:296.826667pt;}
.y27{bottom:297.786667pt;}
.y15{bottom:298.586667pt;}
.y8d{bottom:302.746667pt;}
.y7e{bottom:302.906667pt;}
.y26{bottom:313.626667pt;}
.y14{bottom:314.426667pt;}
.y7d{bottom:318.746667pt;}
.yb9{bottom:320.346667pt;}
.y8c{bottom:326.266667pt;}
.y25{bottom:329.466667pt;}
.y7c{bottom:334.586667pt;}
.y13{bottom:338.266667pt;}
.y24{bottom:345.306667pt;}
.y8b{bottom:350.106667pt;}
.y7b{bottom:350.426667pt;}
.y12{bottom:355.866667pt;}
.y23{bottom:361.146667pt;}
.yb8{bottom:367.546667pt;}
.y79{bottom:373.640000pt;}
.yb7{bottom:383.386667pt;}
.y11{bottom:387.546667pt;}
.yb6{bottom:399.266667pt;}
.y78{bottom:402.946667pt;}
.y3a{bottom:403.680000pt;}
.yb5{bottom:415.106667pt;}
.y40{bottom:423.906667pt;}
.yb4{bottom:430.946667pt;}
.y77{bottom:432.066667pt;}
.yb3{bottom:446.786667pt;}
.y3f{bottom:449.506667pt;}
.y76{bottom:461.346667pt;}
.yb2{bottom:462.786667pt;}
.yb1{bottom:478.626667pt;}
.y74{bottom:490.466667pt;}
.y3d{bottom:492.866667pt;}
.yb0{bottom:494.466667pt;}
.yaf{bottom:510.306667pt;}
.yae{bottom:526.146667pt;}
.y73{bottom:526.626667pt;}
.yad{bottom:542.146667pt;}
.y72{bottom:550.146667pt;}
.yac{bottom:557.986667pt;}
.y10{bottom:559.906667pt;}
.y71{bottom:579.426667pt;}
.yab{bottom:583.586667pt;}
.yf{bottom:596.546667pt;}
.y6f{bottom:608.573333pt;}
.ye{bottom:610.493333pt;}
.yaa{bottom:612.733333pt;}
.y38{bottom:616.160000pt;}
.ya9{bottom:628.573333pt;}
.y37{bottom:634.013333pt;}
.y34{bottom:637.440000pt;}
.y6d{bottom:637.853333pt;}
.ya8{bottom:652.573333pt;}
.yd{bottom:660.413333pt;}
.y6b{bottom:666.973333pt;}
.ya7{bottom:668.413333pt;}
.y36{bottom:682.013333pt;}
.ya6{bottom:684.253333pt;}
.y6a{bottom:699.933333pt;}
.ya5{bottom:700.093333pt;}
.yc{bottom:708.573333pt;}
.ya4{bottom:715.933333pt;}
.y69{bottom:724.093333pt;}
.y5c{bottom:724.253333pt;}
.y33{bottom:728.253333pt;}
.ya3{bottom:731.773333pt;}
.y68{bottom:739.933333pt;}
.y5b{bottom:740.093333pt;}
.y67{bottom:755.773333pt;}
.y5a{bottom:755.933333pt;}
.y31{bottom:764.480000pt;}
.y66{bottom:771.773333pt;}
.ya2{bottom:779.613333pt;}
.y59{bottom:779.773333pt;}
.y65{bottom:795.613333pt;}
.y58{bottom:795.773333pt;}
.y30{bottom:797.533333pt;}
.ya1{bottom:803.453333pt;}
.y64{bottom:811.493333pt;}
.y57{bottom:811.653333pt;}
.ya0{bottom:819.333333pt;}
.y63{bottom:827.333333pt;}
.y56{bottom:827.493333pt;}
.yb{bottom:830.533333pt;}
.y9f{bottom:835.173333pt;}
.y2e{bottom:836.800000pt;}
.y55{bottom:843.333333pt;}
.y46{bottom:849.600000pt;}
.y62{bottom:851.173333pt;}
.y54{bottom:859.173333pt;}
.y61{bottom:867.173333pt;}
.y9e{bottom:875.013333pt;}
.y53{bottom:875.173333pt;}
.y45{bottom:879.493333pt;}
.y60{bottom:883.013333pt;}
.ycc{bottom:889.093333pt;}
.y9d{bottom:890.853333pt;}
.y52{bottom:891.013333pt;}
.y44{bottom:902.853333pt;}
.y51{bottom:906.853333pt;}
.ycb{bottom:912.933333pt;}
.y9c{bottom:914.693333pt;}
.y50{bottom:922.693333pt;}
.y43{bottom:926.213333pt;}
.y9b{bottom:930.533333pt;}
.y5f{bottom:938.533333pt;}
.yca{bottom:943.973333pt;}
.y9a{bottom:946.373333pt;}
.y4f{bottom:946.533333pt;}
.y42{bottom:949.733333pt;}
.y5e{bottom:954.373333pt;}
.yc9{bottom:962.213333pt;}
.y4e{bottom:962.373333pt;}
.y5d{bottom:970.373333pt;}
.y4d{bottom:978.373333pt;}
.ya{bottom:984.613333pt;}
.yc8{bottom:986.053333pt;}
.y99{bottom:986.213333pt;}
.y4c{bottom:994.213333pt;}
.y98{bottom:1002.053333pt;}
.yc7{bottom:1009.893333pt;}
.y4b{bottom:1010.053333pt;}
.y4a{bottom:1025.920000pt;}
.yc6{bottom:1033.760000pt;}
.y49{bottom:1041.760000pt;}
.yc5{bottom:1057.280000pt;}
.y48{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h21{height:23.826667pt;}
.h1d{height:23.840000pt;}
.h1e{height:23.866667pt;}
.h1f{height:23.986667pt;}
.h1c{height:24.000000pt;}
.h22{height:24.018667pt;}
.h20{height:27.186667pt;}
.hd{height:33.656250pt;}
.h15{height:39.200000pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.he{height:48.375000pt;}
.hc{height:49.336436pt;}
.h8{height:49.622500pt;}
.h18{height:52.108438pt;}
.h14{height:52.134375pt;}
.h1a{height:52.260000pt;}
.h19{height:53.535000pt;}
.h6{height:57.787500pt;}
.h16{height:57.913125pt;}
.h12{height:59.340000pt;}
.h11{height:60.960000pt;}
.h13{height:65.920000pt;}
.hb{height:69.660000pt;}
.h10{height:75.465000pt;}
.h1b{height:117.760000pt;}
.hf{height:142.560000pt;}
.h17{height:144.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.w2{width:75.840000pt;}
.wb{width:98.592000pt;}
.wf{width:98.752000pt;}
.wa{width:115.380000pt;}
.we{width:119.540000pt;}
.w10{width:122.752000pt;}
.wc{width:123.712000pt;}
.wd{width:336.373333pt;}
.w11{width:337.173333pt;}
.w3{width:417.920000pt;}
.w9{width:445.280000pt;}
.w8{width:688.480000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w7{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xf{left:9.600000pt;}
.x20{left:20.960000pt;}
.x27{left:29.788000pt;}
.x24{left:33.760000pt;}
.x1f{left:37.628000pt;}
.x13{left:45.920000pt;}
.x5{left:48.000000pt;}
.x26{left:52.804000pt;}
.x16{left:54.400000pt;}
.x25{left:55.680000pt;}
.x15{left:57.920000pt;}
.x17{left:64.000000pt;}
.x2b{left:70.080000pt;}
.xc{left:72.000000pt;}
.x1{left:88.960000pt;}
.x2c{left:94.112000pt;}
.xd{left:96.032000pt;}
.x14{left:109.472000pt;}
.x10{left:124.352000pt;}
.x6{left:143.706667pt;}
.xa{left:154.746667pt;}
.x23{left:156.186667pt;}
.x1c{left:158.146667pt;}
.x11{left:173.786667pt;}
.x1b{left:176.320000pt;}
.x19{left:228.346667pt;}
.x1e{left:233.626667pt;}
.x18{left:236.066667pt;}
.x21{left:275.586667pt;}
.x28{left:277.666667pt;}
.x1a{left:288.386667pt;}
.x7{left:317.026667pt;}
.x12{left:318.626667pt;}
.x3{left:327.040000pt;}
.x22{left:402.506667pt;}
.x29{left:403.786667pt;}
.xe{left:414.173333pt;}
.x4{left:416.800000pt;}
.x1d{left:438.173333pt;}
.x2a{left:462.173333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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