
    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_8cc4b3a9128fb9a91eab473c.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_169ec9b1c63bdc3847969dab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d5586790bd235e6b52bbb371.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9f6b85f6bbfc467f2579a677.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ce22e0921d1fb7670f603388.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2257f00b2399657d251ea9cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_8dde74530a4b035f07301a2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_f4a59221a8fafcab7851f269.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f57672af43a3c62db12c9635.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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);}
.m2{transform:matrix(0.262724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262724,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;}
.ls5{letter-spacing:-8.040000px;}
.ls6{letter-spacing:-4.320000px;}
.ls4{letter-spacing:-2.880000px;}
.ls8{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:7.344000px;}
.lsb{letter-spacing:9.360000px;}
.ls7{letter-spacing:216.840000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.120000px;}
.ws6{word-spacing:-13.680000px;}
.ws5{word-spacing:-9.960000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-9.504000px;}
._11{margin-left:-6.912000px;}
._f{margin-left:-5.112000px;}
._4{margin-left:-3.968640px;}
._1{margin-left:-2.151360px;}
._2{margin-left:-1.080000px;}
._0{width:1.170000px;}
._3{width:2.220720px;}
._e{width:4.104000px;}
._d{width:5.463360px;}
._10{width:6.560640px;}
._7{width:7.920000px;}
._5{width:9.432000px;}
._6{width:10.578720px;}
._a{width:12.024000px;}
._9{width:13.032000px;}
._8{width:16.992000px;}
._17{width:19.224000px;}
._18{width:20.568000px;}
._15{width:22.536000px;}
._16{width:23.544000px;}
._b{width:25.464000px;}
._c{width:26.640000px;}
._13{width:31.968000px;}
._14{width:33.120000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:74.246436px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:2.700035px;}
.y42{bottom:7.020000px;}
.y69{bottom:7.200000px;}
.y7c{bottom:7.380000px;}
.y51{bottom:8.280000px;}
.y61{bottom:9.000000px;}
.y47{bottom:9.360000px;}
.y4a{bottom:9.540000px;}
.y52{bottom:9.720000px;}
.y44{bottom:9.900000px;}
.y4e{bottom:10.080000px;}
.y48{bottom:11.700000px;}
.y4b{bottom:12.060000px;}
.y45{bottom:12.600000px;}
.y54{bottom:12.960000px;}
.y4f{bottom:13.140000px;}
.y41{bottom:30.780000px;}
.y68{bottom:31.005000px;}
.y3c{bottom:42.660000px;}
.y64{bottom:42.885000px;}
.y40{bottom:54.540000px;}
.y67{bottom:54.765000px;}
.y3a{bottom:66.645000px;}
.y6{bottom:69.480000px;}
.y3f{bottom:78.525000px;}
.y3b{bottom:90.405000px;}
.y8b{bottom:99.900000px;}
.y38{bottom:100.260000px;}
.y3e{bottom:102.285000px;}
.y66{bottom:102.465000px;}
.yb5{bottom:113.940000px;}
.y30{bottom:121.680000px;}
.y37{bottom:124.020000px;}
.y8a{bottom:125.100000px;}
.y3d{bottom:126.045000px;}
.y65{bottom:126.225000px;}
.yb4{bottom:137.700000px;}
.y2f{bottom:145.440000px;}
.y36{bottom:147.780000px;}
.y89{bottom:148.860000px;}
.yb3{bottom:161.490000px;}
.y2e{bottom:169.410000px;}
.y35{bottom:171.750000px;}
.y88{bottom:172.830000px;}
.yb2{bottom:185.430000px;}
.y2d{bottom:193.170000px;}
.y34{bottom:195.510000px;}
.y87{bottom:196.590000px;}
.yb1{bottom:209.190000px;}
.y2c{bottom:216.930000px;}
.y33{bottom:219.270000px;}
.y86{bottom:220.350000px;}
.yb0{bottom:232.950000px;}
.y2b{bottom:240.690000px;}
.y32{bottom:243.030000px;}
.y85{bottom:244.110000px;}
.yaf{bottom:256.710000px;}
.y2a{bottom:264.630000px;}
.y31{bottom:266.970000px;}
.y84{bottom:268.050000px;}
.yae{bottom:280.650000px;}
.y29{bottom:288.390000px;}
.y83{bottom:291.810000px;}
.y62{bottom:299.370000px;}
.yad{bottom:304.410000px;}
.y28{bottom:312.150000px;}
.y82{bottom:315.570000px;}
.y60{bottom:327.630000px;}
.yac{bottom:328.170000px;}
.y27{bottom:335.910000px;}
.y81{bottom:339.330000px;}
.yab{bottom:351.930000px;}
.y5f{bottom:355.890000px;}
.y26{bottom:359.670000px;}
.y5d{bottom:359.939959px;}
.y80{bottom:363.270000px;}
.yaa{bottom:375.870000px;}
.y25{bottom:383.610000px;}
.y5c{bottom:385.050000px;}
.y7f{bottom:387.030000px;}
.ya9{bottom:399.630000px;}
.y24{bottom:407.415000px;}
.y7e{bottom:410.835000px;}
.y5b{bottom:415.695000px;}
.ya8{bottom:423.435000px;}
.y7d{bottom:428.295000px;}
.y23{bottom:431.175000px;}
.y5a{bottom:446.295000px;}
.ya7{bottom:447.195000px;}
.y7b{bottom:452.955000px;}
.y22{bottom:454.935000px;}
.ya6{bottom:471.135000px;}
.y59{bottom:476.895000px;}
.y7a{bottom:478.335000px;}
.y21{bottom:478.875000px;}
.y79{bottom:482.339959px;}
.ya5{bottom:494.895000px;}
.y20{bottom:502.635000px;}
.y78{bottom:507.315000px;}
.y58{bottom:507.495000px;}
.ya4{bottom:518.655000px;}
.y1f{bottom:526.395000px;}
.y77{bottom:531.975000px;}
.y57{bottom:538.095000px;}
.ya3{bottom:542.415000px;}
.y1e{bottom:550.155000px;}
.y76{bottom:556.455000px;}
.ya2{bottom:566.355000px;}
.y56{bottom:568.695000px;}
.y1d{bottom:574.095000px;}
.y75{bottom:580.935000px;}
.ya1{bottom:590.115000px;}
.y1c{bottom:597.855000px;}
.y55{bottom:599.295000px;}
.y74{bottom:605.595000px;}
.ya0{bottom:613.875000px;}
.y1b{bottom:621.615000px;}
.y53{bottom:629.895000px;}
.y73{bottom:630.075000px;}
.y9f{bottom:637.635000px;}
.y1a{bottom:645.375000px;}
.y72{bottom:654.765000px;}
.y50{bottom:660.525000px;}
.y9e{bottom:661.605000px;}
.y19{bottom:669.345000px;}
.y71{bottom:679.245000px;}
.y9d{bottom:685.365000px;}
.y4d{bottom:687.705000px;}
.y18{bottom:693.105000px;}
.y70{bottom:703.725000px;}
.y9c{bottom:709.125000px;}
.y17{bottom:716.865000px;}
.y4c{bottom:718.305000px;}
.y6f{bottom:728.385000px;}
.y9b{bottom:732.885000px;}
.y16{bottom:740.625000px;}
.y49{bottom:742.785000px;}
.y6e{bottom:752.865000px;}
.y9a{bottom:756.645000px;}
.y15{bottom:764.565000px;}
.y46{bottom:772.305000px;}
.y6d{bottom:777.525000px;}
.y99{bottom:780.585000px;}
.y14{bottom:788.325000px;}
.y43{bottom:801.465000px;}
.y6c{bottom:802.005000px;}
.y98{bottom:804.345000px;}
.y13{bottom:812.085000px;}
.y6b{bottom:826.665000px;}
.y97{bottom:828.105000px;}
.y39{bottom:831.525000px;}
.y12{bottom:835.845000px;}
.y6a{bottom:851.145000px;}
.y96{bottom:851.865000px;}
.y11{bottom:859.605000px;}
.y63{bottom:875.625000px;}
.y95{bottom:875.805000px;}
.y10{bottom:883.545000px;}
.y94{bottom:899.430000px;}
.yf{bottom:907.350000px;}
.y93{bottom:924.630000px;}
.ye{bottom:931.110000px;}
.y92{bottom:948.390000px;}
.yd{bottom:954.870000px;}
.y91{bottom:973.590000px;}
.yc{bottom:978.810000px;}
.y90{bottom:997.170000px;}
.yb{bottom:1002.570000px;}
.y8f{bottom:1022.550000px;}
.ya{bottom:1026.330000px;}
.y8e{bottom:1046.130000px;}
.y9{bottom:1050.090000px;}
.y8d{bottom:1071.150000px;}
.y8{bottom:1074.030000px;}
.y8c{bottom:1096.350000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.h10{height:23.760000px;}
.h1a{height:23.940000px;}
.h1b{height:23.976000px;}
.h15{height:24.300645px;}
.h1c{height:24.660000px;}
.h12{height:26.460000px;}
.h18{height:27.540000px;}
.h17{height:28.260000px;}
.he{height:28.440000px;}
.hf{height:28.800000px;}
.hd{height:29.340000px;}
.h14{height:29.700000px;}
.h13{height:29.736000px;}
.h11{height:29.880000px;}
.h2{height:42.164648px;}
.h8{height:50.484375px;}
.ha{height:50.800781px;}
.h9{height:59.343750px;}
.h3{height:60.226875px;}
.h7{height:70.664062px;}
.hb{height:71.824219px;}
.h6{height:72.562500px;}
.h1d{height:74.004654px;}
.h16{height:74.065170px;}
.h1e{height:74.953125px;}
.h5{height:82.676953px;}
.h4{height:84.898125px;}
.hc{height:142.776000px;}
.h19{height:142.956000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:22.498971px;}
.w3{width:40.680000px;}
.wc{width:73.260000px;}
.w7{width:80.280000px;}
.w11{width:84.420000px;}
.we{width:86.400000px;}
.w5{width:86.940000px;}
.w10{width:92.736000px;}
.w9{width:94.140000px;}
.w6{width:105.336000px;}
.wd{width:113.436000px;}
.w8{width:115.056000px;}
.wf{width:121.356000px;}
.w4{width:150.330000px;}
.w12{width:187.410000px;}
.wb{width:191.730000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:4.507287px;}
.x17{left:7.740000px;}
.x1b{left:9.360000px;}
.x12{left:11.160000px;}
.x20{left:12.240000px;}
.x19{left:13.320000px;}
.x3b{left:14.940000px;}
.x36{left:17.280000px;}
.x16{left:18.720000px;}
.x30{left:19.800000px;}
.x1d{left:21.600000px;}
.x15{left:24.480000px;}
.x21{left:26.820000px;}
.x1a{left:29.160000px;}
.x3d{left:30.420000px;}
.x23{left:32.040000px;}
.x26{left:33.480000px;}
.x14{left:36.354000px;}
.x2e{left:37.440000px;}
.x39{left:38.745000px;}
.x41{left:40.320000px;}
.x25{left:41.760000px;}
.x28{left:43.560000px;}
.x40{left:44.820000px;}
.x2a{left:46.614000px;}
.x24{left:48.060000px;}
.x22{left:50.034000px;}
.x27{left:52.014000px;}
.x29{left:53.094000px;}
.x2b{left:54.174000px;}
.x3c{left:56.010000px;}
.x3f{left:72.714000px;}
.x2f{left:74.694000px;}
.x3{left:84.995987px;}
.x11{left:107.856000px;}
.x31{left:110.375987px;}
.x2c{left:115.439990px;}
.x6{left:127.475987px;}
.x9{left:135.935987px;}
.x13{left:149.256000px;}
.x10{left:155.189987px;}
.xf{left:157.709987px;}
.x3e{left:165.539990px;}
.x33{left:189.210000px;}
.x32{left:229.709987px;}
.x7{left:234.029987px;}
.xc{left:300.674987px;}
.x34{left:303.375000px;}
.x4{left:350.714987px;}
.xb{left:367.274987px;}
.xa{left:370.514987px;}
.x42{left:385.994987px;}
.x18{left:388.155000px;}
.x35{left:390.675000px;}
.xd{left:402.914987px;}
.x5{left:430.634987px;}
.x8{left:446.504987px;}
.x2{left:457.124987px;}
.x1c{left:494.205000px;}
.x1{left:510.404987px;}
.x37{left:512.745000px;}
.x1e{left:575.205000px;}
.x38{left:593.745000px;}
.x3a{left:687.210000px;}
.x1f{left:691.170000px;}
.xe{left:753.629987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-7.146667pt;}
.ls6{letter-spacing:-3.840000pt;}
.ls4{letter-spacing:-2.560000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:6.528000pt;}
.lsb{letter-spacing:8.320000pt;}
.ls7{letter-spacing:192.746667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.440000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws5{word-spacing:-8.853333pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-8.448000pt;}
._11{margin-left:-6.144000pt;}
._f{margin-left:-4.544000pt;}
._4{margin-left:-3.527680pt;}
._1{margin-left:-1.912320pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.040000pt;}
._3{width:1.973973pt;}
._e{width:3.648000pt;}
._d{width:4.856320pt;}
._10{width:5.831680pt;}
._7{width:7.040000pt;}
._5{width:8.384000pt;}
._6{width:9.403307pt;}
._a{width:10.688000pt;}
._9{width:11.584000pt;}
._8{width:15.104000pt;}
._17{width:17.088000pt;}
._18{width:18.282667pt;}
._15{width:20.032000pt;}
._16{width:20.928000pt;}
._b{width:22.634667pt;}
._c{width:23.680000pt;}
._13{width:28.416000pt;}
._14{width:29.440000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:65.996832pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:2.400031pt;}
.y42{bottom:6.240000pt;}
.y69{bottom:6.400000pt;}
.y7c{bottom:6.560000pt;}
.y51{bottom:7.360000pt;}
.y61{bottom:8.000000pt;}
.y47{bottom:8.320000pt;}
.y4a{bottom:8.480000pt;}
.y52{bottom:8.640000pt;}
.y44{bottom:8.800000pt;}
.y4e{bottom:8.960000pt;}
.y48{bottom:10.400000pt;}
.y4b{bottom:10.720000pt;}
.y45{bottom:11.200000pt;}
.y54{bottom:11.520000pt;}
.y4f{bottom:11.680000pt;}
.y41{bottom:27.360000pt;}
.y68{bottom:27.560000pt;}
.y3c{bottom:37.920000pt;}
.y64{bottom:38.120000pt;}
.y40{bottom:48.480000pt;}
.y67{bottom:48.680000pt;}
.y3a{bottom:59.240000pt;}
.y6{bottom:61.760000pt;}
.y3f{bottom:69.800000pt;}
.y3b{bottom:80.360000pt;}
.y8b{bottom:88.800000pt;}
.y38{bottom:89.120000pt;}
.y3e{bottom:90.920000pt;}
.y66{bottom:91.080000pt;}
.yb5{bottom:101.280000pt;}
.y30{bottom:108.160000pt;}
.y37{bottom:110.240000pt;}
.y8a{bottom:111.200000pt;}
.y3d{bottom:112.040000pt;}
.y65{bottom:112.200000pt;}
.yb4{bottom:122.400000pt;}
.y2f{bottom:129.280000pt;}
.y36{bottom:131.360000pt;}
.y89{bottom:132.320000pt;}
.yb3{bottom:143.546667pt;}
.y2e{bottom:150.586667pt;}
.y35{bottom:152.666667pt;}
.y88{bottom:153.626667pt;}
.yb2{bottom:164.826667pt;}
.y2d{bottom:171.706667pt;}
.y34{bottom:173.786667pt;}
.y87{bottom:174.746667pt;}
.yb1{bottom:185.946667pt;}
.y2c{bottom:192.826667pt;}
.y33{bottom:194.906667pt;}
.y86{bottom:195.866667pt;}
.yb0{bottom:207.066667pt;}
.y2b{bottom:213.946667pt;}
.y32{bottom:216.026667pt;}
.y85{bottom:216.986667pt;}
.yaf{bottom:228.186667pt;}
.y2a{bottom:235.226667pt;}
.y31{bottom:237.306667pt;}
.y84{bottom:238.266667pt;}
.yae{bottom:249.466667pt;}
.y29{bottom:256.346667pt;}
.y83{bottom:259.386667pt;}
.y62{bottom:266.106667pt;}
.yad{bottom:270.586667pt;}
.y28{bottom:277.466667pt;}
.y82{bottom:280.506667pt;}
.y60{bottom:291.226667pt;}
.yac{bottom:291.706667pt;}
.y27{bottom:298.586667pt;}
.y81{bottom:301.626667pt;}
.yab{bottom:312.826667pt;}
.y5f{bottom:316.346667pt;}
.y26{bottom:319.706667pt;}
.y5d{bottom:319.946630pt;}
.y80{bottom:322.906667pt;}
.yaa{bottom:334.106667pt;}
.y25{bottom:340.986667pt;}
.y5c{bottom:342.266667pt;}
.y7f{bottom:344.026667pt;}
.ya9{bottom:355.226667pt;}
.y24{bottom:362.146667pt;}
.y7e{bottom:365.186667pt;}
.y5b{bottom:369.506667pt;}
.ya8{bottom:376.386667pt;}
.y7d{bottom:380.706667pt;}
.y23{bottom:383.266667pt;}
.y5a{bottom:396.706667pt;}
.ya7{bottom:397.506667pt;}
.y7b{bottom:402.626667pt;}
.y22{bottom:404.386667pt;}
.ya6{bottom:418.786667pt;}
.y59{bottom:423.906667pt;}
.y7a{bottom:425.186667pt;}
.y21{bottom:425.666667pt;}
.y79{bottom:428.746630pt;}
.ya5{bottom:439.906667pt;}
.y20{bottom:446.786667pt;}
.y78{bottom:450.946667pt;}
.y58{bottom:451.106667pt;}
.ya4{bottom:461.026667pt;}
.y1f{bottom:467.906667pt;}
.y77{bottom:472.866667pt;}
.y57{bottom:478.306667pt;}
.ya3{bottom:482.146667pt;}
.y1e{bottom:489.026667pt;}
.y76{bottom:494.626667pt;}
.ya2{bottom:503.426667pt;}
.y56{bottom:505.506667pt;}
.y1d{bottom:510.306667pt;}
.y75{bottom:516.386667pt;}
.ya1{bottom:524.546667pt;}
.y1c{bottom:531.426667pt;}
.y55{bottom:532.706667pt;}
.y74{bottom:538.306667pt;}
.ya0{bottom:545.666667pt;}
.y1b{bottom:552.546667pt;}
.y53{bottom:559.906667pt;}
.y73{bottom:560.066667pt;}
.y9f{bottom:566.786667pt;}
.y1a{bottom:573.666667pt;}
.y72{bottom:582.013333pt;}
.y50{bottom:587.133333pt;}
.y9e{bottom:588.093333pt;}
.y19{bottom:594.973333pt;}
.y71{bottom:603.773333pt;}
.y9d{bottom:609.213333pt;}
.y4d{bottom:611.293333pt;}
.y18{bottom:616.093333pt;}
.y70{bottom:625.533333pt;}
.y9c{bottom:630.333333pt;}
.y17{bottom:637.213333pt;}
.y4c{bottom:638.493333pt;}
.y6f{bottom:647.453333pt;}
.y9b{bottom:651.453333pt;}
.y16{bottom:658.333333pt;}
.y49{bottom:660.253333pt;}
.y6e{bottom:669.213333pt;}
.y9a{bottom:672.573333pt;}
.y15{bottom:679.613333pt;}
.y46{bottom:686.493333pt;}
.y6d{bottom:691.133333pt;}
.y99{bottom:693.853333pt;}
.y14{bottom:700.733333pt;}
.y43{bottom:712.413333pt;}
.y6c{bottom:712.893333pt;}
.y98{bottom:714.973333pt;}
.y13{bottom:721.853333pt;}
.y6b{bottom:734.813333pt;}
.y97{bottom:736.093333pt;}
.y39{bottom:739.133333pt;}
.y12{bottom:742.973333pt;}
.y6a{bottom:756.573333pt;}
.y96{bottom:757.213333pt;}
.y11{bottom:764.093333pt;}
.y63{bottom:778.333333pt;}
.y95{bottom:778.493333pt;}
.y10{bottom:785.373333pt;}
.y94{bottom:799.493333pt;}
.yf{bottom:806.533333pt;}
.y93{bottom:821.893333pt;}
.ye{bottom:827.653333pt;}
.y92{bottom:843.013333pt;}
.yd{bottom:848.773333pt;}
.y91{bottom:865.413333pt;}
.yc{bottom:870.053333pt;}
.y90{bottom:886.373333pt;}
.yb{bottom:891.173333pt;}
.y8f{bottom:908.933333pt;}
.ya{bottom:912.293333pt;}
.y8e{bottom:929.893333pt;}
.y9{bottom:933.413333pt;}
.y8d{bottom:952.133333pt;}
.y8{bottom:954.693333pt;}
.y8c{bottom:974.533333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.h10{height:21.120000pt;}
.h1a{height:21.280000pt;}
.h1b{height:21.312000pt;}
.h15{height:21.600573pt;}
.h1c{height:21.920000pt;}
.h12{height:23.520000pt;}
.h18{height:24.480000pt;}
.h17{height:25.120000pt;}
.he{height:25.280000pt;}
.hf{height:25.600000pt;}
.hd{height:26.080000pt;}
.h14{height:26.400000pt;}
.h13{height:26.432000pt;}
.h11{height:26.560000pt;}
.h2{height:37.479688pt;}
.h8{height:44.875000pt;}
.ha{height:45.156250pt;}
.h9{height:52.750000pt;}
.h3{height:53.535000pt;}
.h7{height:62.812500pt;}
.hb{height:63.843750pt;}
.h6{height:64.500000pt;}
.h1d{height:65.781915pt;}
.h16{height:65.835707pt;}
.h1e{height:66.625000pt;}
.h5{height:73.490625pt;}
.h4{height:75.465000pt;}
.hc{height:126.912000pt;}
.h19{height:127.072000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:19.999086pt;}
.w3{width:36.160000pt;}
.wc{width:65.120000pt;}
.w7{width:71.360000pt;}
.w11{width:75.040000pt;}
.we{width:76.800000pt;}
.w5{width:77.280000pt;}
.w10{width:82.432000pt;}
.w9{width:83.680000pt;}
.w6{width:93.632000pt;}
.wd{width:100.832000pt;}
.w8{width:102.272000pt;}
.wf{width:107.872000pt;}
.w4{width:133.626667pt;}
.w12{width:166.586667pt;}
.wb{width:170.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:4.006477pt;}
.x17{left:6.880000pt;}
.x1b{left:8.320000pt;}
.x12{left:9.920000pt;}
.x20{left:10.880000pt;}
.x19{left:11.840000pt;}
.x3b{left:13.280000pt;}
.x36{left:15.360000pt;}
.x16{left:16.640000pt;}
.x30{left:17.600000pt;}
.x1d{left:19.200000pt;}
.x15{left:21.760000pt;}
.x21{left:23.840000pt;}
.x1a{left:25.920000pt;}
.x3d{left:27.040000pt;}
.x23{left:28.480000pt;}
.x26{left:29.760000pt;}
.x14{left:32.314667pt;}
.x2e{left:33.280000pt;}
.x39{left:34.440000pt;}
.x41{left:35.840000pt;}
.x25{left:37.120000pt;}
.x28{left:38.720000pt;}
.x40{left:39.840000pt;}
.x2a{left:41.434667pt;}
.x24{left:42.720000pt;}
.x22{left:44.474667pt;}
.x27{left:46.234667pt;}
.x29{left:47.194667pt;}
.x2b{left:48.154667pt;}
.x3c{left:49.786667pt;}
.x3f{left:64.634667pt;}
.x2f{left:66.394667pt;}
.x3{left:75.551988pt;}
.x11{left:95.872000pt;}
.x31{left:98.111988pt;}
.x2c{left:102.613324pt;}
.x6{left:113.311988pt;}
.x9{left:120.831988pt;}
.x13{left:132.672000pt;}
.x10{left:137.946655pt;}
.xf{left:140.186655pt;}
.x3e{left:147.146658pt;}
.x33{left:168.186667pt;}
.x32{left:204.186655pt;}
.x7{left:208.026655pt;}
.xc{left:267.266655pt;}
.x34{left:269.666667pt;}
.x4{left:311.746655pt;}
.xb{left:326.466655pt;}
.xa{left:329.346655pt;}
.x42{left:343.106655pt;}
.x18{left:345.026667pt;}
.x35{left:347.266667pt;}
.xd{left:358.146655pt;}
.x5{left:382.786655pt;}
.x8{left:396.893322pt;}
.x2{left:406.333322pt;}
.x1c{left:439.293333pt;}
.x1{left:453.693322pt;}
.x37{left:455.773333pt;}
.x1e{left:511.293333pt;}
.x38{left:527.773333pt;}
.x3a{left:610.853333pt;}
.x1f{left:614.373333pt;}
.xe{left:669.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; }
  