
    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_f450b6dc6975758923a688ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_2d6d56f7cabb18ec80987880.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_2287cef94ccf41616e6014bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.747559;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls8{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.567600px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.259800px;}
.ls3{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000001px;}
.lse{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.000001px;}
.ws2{word-spacing:-17.784000px;}
.wsd{word-spacing:-16.865400px;}
.ws0{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.450800px;}
.wsc{word-spacing:-16.297800px;}
.ws6{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.120000px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-4.173120px;}
._1{margin-left:-2.399520px;}
._0{margin-left:-1.192320px;}
._2{width:1.074720px;}
._4{width:2.083920px;}
._9{width:3.510720px;}
._19{width:4.769280px;}
._6{width:5.917200px;}
._5{width:7.290720px;}
._a{width:8.544960px;}
._8{width:10.559760px;}
._7{width:11.969760px;}
._17{width:18.613440px;}
._16{width:19.713600px;}
._1a{width:21.792960px;}
._b{width:22.871520px;}
._1d{width:24.707520px;}
._3{width:26.784000px;}
._e{width:28.827360px;}
._f{width:29.927520px;}
._12{width:31.338720px;}
._11{width:32.457600px;}
._1b{width:35.504640px;}
._1c{width:37.160640px;}
._c{width:44.910720px;}
._15{width:48.508080px;}
._14{width:49.547520px;}
._d{width:53.190720px;}
._18{width:56.767680px;}
._13{width:61.139520px;}
._1e{width:346.832640px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:7.020000px;}
.ya{bottom:7.200000px;}
.y5a{bottom:11.700000px;}
.yce{bottom:11.730000px;}
.y4f{bottom:11.880000px;}
.y9a{bottom:12.954000px;}
.y26{bottom:12.960000px;}
.y24{bottom:13.140000px;}
.y9d{bottom:13.170000px;}
.y53{bottom:24.660000px;}
.y52{bottom:24.840000px;}
.y2e{bottom:27.180000px;}
.y22{bottom:27.360000px;}
.y35{bottom:27.390000px;}
.y13{bottom:30.960000px;}
.y55{bottom:37.620000px;}
.y51{bottom:37.800000px;}
.ybf{bottom:40.860000px;}
.y30{bottom:41.400000px;}
.y49{bottom:41.445000px;}
.y23{bottom:41.580000px;}
.y34{bottom:41.610000px;}
.yb3{bottom:41.625000px;}
.y15{bottom:48.780000px;}
.y79{bottom:55.620000px;}
.y74{bottom:55.830000px;}
.yc3{bottom:60.660000px;}
.y66{bottom:63.540000px;}
.y59{bottom:63.585000px;}
.y7b{bottom:69.840000px;}
.ya2{bottom:70.020000px;}
.y78{bottom:70.050000px;}
.y70{bottom:70.065000px;}
.ybe{bottom:76.860000px;}
.yc1{bottom:80.640000px;}
.y73{bottom:84.270000px;}
.ybd{bottom:88.200000px;}
.y65{bottom:89.460000px;}
.yba{bottom:94.500000px;}
.ybc{bottom:94.860000px;}
.y7a{bottom:98.280000px;}
.y77{bottom:98.490000px;}
.y6f{bottom:98.505000px;}
.yc0{bottom:99.540000px;}
.ybb{bottom:100.980000px;}
.y9b{bottom:109.656000px;}
.y72{bottom:112.710000px;}
.y64{bottom:115.380000px;}
.yc2{bottom:116.280000px;}
.y76{bottom:126.930000px;}
.y71{bottom:126.945000px;}
.yb8{bottom:127.656000px;}
.y6a{bottom:128.370000px;}
.y99{bottom:138.096000px;}
.y4d{bottom:138.636000px;}
.y63{bottom:141.150000px;}
.y4c{bottom:153.390000px;}
.y68{bottom:154.110000px;}
.y75{bottom:155.370000px;}
.yb7{bottom:158.790000px;}
.y98{bottom:166.530000px;}
.y43{bottom:166.890000px;}
.y62{bottom:167.070000px;}
.y1f{bottom:168.150000px;}
.yb6{bottom:176.250000px;}
.y67{bottom:180.030000px;}
.y61{bottom:192.990000px;}
.y97{bottom:195.150000px;}
.y42{bottom:198.030000px;}
.y1e{bottom:199.290000px;}
.yb5{bottom:205.410000px;}
.y69{bottom:205.950000px;}
.y4b{bottom:210.270000px;}
.y60{bottom:218.910000px;}
.y96{bottom:223.590000px;}
.y41{bottom:228.990000px;}
.y1d{bottom:230.250000px;}
.yb4{bottom:233.850000px;}
.y4a{bottom:238.710000px;}
.y5f{bottom:244.650000px;}
.y95{bottom:252.030000px;}
.y40{bottom:259.950000px;}
.y1c{bottom:261.390000px;}
.y5e{bottom:270.570000px;}
.y94{bottom:280.470000px;}
.yb2{bottom:290.730000px;}
.y3f{bottom:291.090000px;}
.y1b{bottom:292.350000px;}
.y48{bottom:295.590000px;}
.y5d{bottom:296.490000px;}
.y93{bottom:308.910000px;}
.y3e{bottom:322.050000px;}
.y5c{bottom:322.410000px;}
.y1a{bottom:323.490000px;}
.yb1{bottom:347.835000px;}
.y47{bottom:352.515000px;}
.y3d{bottom:353.235000px;}
.y19{bottom:354.495000px;}
.y92{bottom:365.835000px;}
.yb0{bottom:376.995000px;}
.y6e{bottom:381.855000px;}
.y3c{bottom:384.195000px;}
.y18{bottom:385.635000px;}
.y91{bottom:394.275000px;}
.yaf{bottom:406.155000px;}
.y6d{bottom:407.595000px;}
.y46{bottom:409.575000px;}
.y17{bottom:414.075000px;}
.y3b{bottom:415.335000px;}
.y90{bottom:422.715000px;}
.y16{bottom:429.375000px;}
.y6c{bottom:433.515000px;}
.yae{bottom:434.595000px;}
.yd4{bottom:439.995000px;}
.y3a{bottom:446.295000px;}
.y8f{bottom:451.335000px;}
.yd3{bottom:457.455000px;}
.y6b{bottom:459.435000px;}
.yad{bottom:463.035000px;}
.y45{bottom:466.455000px;}
.y14{bottom:471.135000px;}
.y5b{bottom:474.195000px;}
.y39{bottom:477.435000px;}
.y8e{bottom:479.775000px;}
.yd2{bottom:483.375000px;}
.y8d{bottom:508.215000px;}
.y38{bottom:508.395000px;}
.yd1{bottom:509.115000px;}
.yac{bottom:520.095000px;}
.y44{bottom:523.335000px;}
.yd0{bottom:535.035000px;}
.y8c{bottom:536.655000px;}
.y37{bottom:537.015000px;}
.yab{bottom:548.535000px;}
.y36{bottom:551.775000px;}
.y12{bottom:554.655000px;}
.ycf{bottom:560.955000px;}
.y8b{bottom:565.815000px;}
.yaa{bottom:576.975000px;}
.y33{bottom:580.215000px;}
.ycd{bottom:586.875000px;}
.ya9{bottom:605.445000px;}
.ycc{bottom:612.645000px;}
.y8a{bottom:613.545000px;}
.y11{bottom:620.385000px;}
.ya8{bottom:633.885000px;}
.y32{bottom:637.305000px;}
.ycb{bottom:638.565000px;}
.y89{bottom:643.425000px;}
.y88{bottom:660.885000px;}
.y10{bottom:662.145000px;}
.ya7{bottom:662.325000px;}
.yca{bottom:664.485000px;}
.y87{bottom:689.325000px;}
.yc9{bottom:690.225000px;}
.ya6{bottom:690.765000px;}
.y31{bottom:694.185000px;}
.yf{bottom:703.905000px;}
.y86{bottom:717.765000px;}
.yc8{bottom:742.065000px;}
.ye{bottom:745.665000px;}
.y85{bottom:746.925000px;}
.y2f{bottom:751.065000px;}
.yc7{bottom:767.985000px;}
.ya5{bottom:776.265000px;}
.yd{bottom:787.605000px;}
.yc6{bottom:793.725000px;}
.y84{bottom:794.625000px;}
.y2d{bottom:807.945000px;}
.y58{bottom:810.645000px;}
.yc5{bottom:819.645000px;}
.y83{bottom:824.505000px;}
.yc{bottom:829.365000px;}
.ya4{bottom:833.145000px;}
.y82{bottom:841.965000px;}
.yc4{bottom:845.565000px;}
.y2c{bottom:865.050000px;}
.y80{bottom:870.450000px;}
.yb{bottom:871.170000px;}
.yb9{bottom:872.250000px;}
.y57{bottom:888.270000px;}
.ya3{bottom:890.070000px;}
.y2b{bottom:893.490000px;}
.y81{bottom:898.890000px;}
.y9{bottom:912.930000px;}
.y2a{bottom:921.930000px;}
.y7f{bottom:927.330000px;}
.y56{bottom:939.930000px;}
.ya1{bottom:946.950000px;}
.y29{bottom:950.370000px;}
.y7{bottom:954.870000px;}
.y7e{bottom:956.670000px;}
.y28{bottom:978.810000px;}
.y7d{bottom:985.830000px;}
.y54{bottom:991.770000px;}
.y27{bottom:1007.250000px;}
.y6{bottom:1016.250000px;}
.ya0{bottom:1033.170000px;}
.y5{bottom:1035.330000px;}
.y25{bottom:1035.690000px;}
.y50{bottom:1043.430000px;}
.y21{bottom:1064.850000px;}
.y4{bottom:1069.170000px;}
.y7c{bottom:1071.150000px;}
.y9f{bottom:1080.870000px;}
.y4e{bottom:1095.990000px;}
.y3{bottom:1103.190000px;}
.y9e{bottom:1110.570000px;}
.y2{bottom:1122.270000px;}
.y9c{bottom:1128.030000px;}
.y20{bottom:1141.200000px;}
.y1{bottom:1141.380000px;}
.h1f{height:25.740000px;}
.h20{height:25.776000px;}
.hf{height:25.920000px;}
.h1e{height:25.956000px;}
.hb{height:28.440000px;}
.h19{height:28.476000px;}
.h1a{height:28.620000px;}
.h1b{height:28.656000px;}
.h3{height:41.760000px;}
.h6{height:41.796000px;}
.h5{height:41.940000px;}
.h9{height:42.894141px;}
.h2{height:47.545312px;}
.h11{height:51.660000px;}
.h4{height:51.679688px;}
.h10{height:51.840000px;}
.hd{height:56.880000px;}
.he{height:56.916000px;}
.ha{height:57.060000px;}
.hc{height:57.096000px;}
.h7{height:65.736000px;}
.h12{height:77.616000px;}
.h8{height:83.520000px;}
.h17{height:85.320000px;}
.h1c{height:85.500000px;}
.h18{height:85.536000px;}
.h16{height:113.760000px;}
.h14{height:142.416000px;}
.h15{height:170.850000px;}
.h1d{height:255.060000px;}
.h13{height:336.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w26{width:47.556000px;}
.w23{width:57.420000px;}
.w24{width:57.456000px;}
.w22{width:57.600000px;}
.w21{width:65.376000px;}
.w20{width:65.520000px;}
.w1f{width:65.556000px;}
.w6{width:69.696000px;}
.w25{width:70.020000px;}
.w5{width:79.920000px;}
.w4{width:79.956000px;}
.w1e{width:93.960000px;}
.wc{width:105.300000px;}
.wb{width:105.696000px;}
.wd{width:107.856000px;}
.w13{width:119.340000px;}
.w12{width:125.316000px;}
.w9{width:126.216000px;}
.w10{width:126.756000px;}
.wf{width:127.440000px;}
.w14{width:127.476000px;}
.we{width:127.656000px;}
.w7{width:191.010000px;}
.w1b{width:191.370000px;}
.wa{width:233.670000px;}
.w19{width:244.650000px;}
.w11{width:255.090000px;}
.w3{width:255.990000px;}
.w15{width:265.395000px;}
.w8{width:308.415000px;}
.w17{width:318.495000px;}
.w18{width:318.675000px;}
.w1a{width:392.505000px;}
.w1c{width:445.785000px;}
.w1d{width:637.170000px;}
.w16{width:637.530000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x2a{left:9.540000px;}
.x3f{left:10.980000px;}
.x41{left:12.240000px;}
.x1b{left:13.320000px;}
.x11{left:14.580000px;}
.x25{left:16.020000px;}
.x18{left:17.280000px;}
.x10{left:19.620000px;}
.xf{left:21.420000px;}
.x28{left:23.034000px;}
.x12{left:24.150000px;}
.xe{left:26.490000px;}
.x1e{left:27.720000px;}
.x19{left:29.160000px;}
.xb{left:30.465000px;}
.x3a{left:31.860000px;}
.x29{left:34.200000px;}
.x8{left:35.490000px;}
.x1c{left:36.540000px;}
.x26{left:38.340000px;}
.x27{left:39.420000px;}
.x60{left:41.574000px;}
.x1a{left:42.660000px;}
.x36{left:44.490000px;}
.x40{left:45.720000px;}
.x56{left:48.054000px;}
.x30{left:49.860000px;}
.x31{left:50.970000px;}
.x2c{left:53.454000px;}
.x2f{left:55.434000px;}
.x33{left:58.854000px;}
.x38{left:63.714000px;}
.x1d{left:70.920000px;}
.x34{left:71.994000px;}
.x32{left:73.074000px;}
.x3e{left:78.660000px;}
.x20{left:83.334000px;}
.x2e{left:89.994000px;}
.x46{left:92.385000px;}
.x16{left:99.390000px;}
.x2d{left:100.794000px;}
.x2b{left:102.954000px;}
.x35{left:107.094000px;}
.x5{left:123.876000px;}
.x1{left:127.655987px;}
.x48{left:132.705000px;}
.x14{left:133.776000px;}
.x3{left:135.935987px;}
.x4e{left:153.390000px;}
.x4c{left:157.530000px;}
.x4f{left:159.870000px;}
.x50{left:161.310000px;}
.x4d{left:162.750000px;}
.x55{left:177.689987px;}
.x37{left:179.669987px;}
.x4b{left:187.950000px;}
.x42{left:210.269987px;}
.x57{left:221.610000px;}
.x13{left:246.674987px;}
.x1f{left:247.754987px;}
.x43{left:252.975000px;}
.x39{left:255.675000px;}
.x54{left:266.079000px;}
.x53{left:272.379000px;}
.x47{left:273.459000px;}
.x58{left:287.175000px;}
.x4a{left:303.734987px;}
.x49{left:317.774987px;}
.x52{left:319.035000px;}
.x15{left:324.795000px;}
.x51{left:328.574987px;}
.x59{left:352.695000px;}
.x21{left:361.335000px;}
.x44{left:372.315000px;}
.x7{left:379.875000px;}
.x3b{left:383.115000px;}
.x4{left:384.734987px;}
.x5a{left:418.065000px;}
.x2{left:446.504987px;}
.x9{left:459.825000px;}
.x22{left:467.025000px;}
.x5b{left:475.665000px;}
.x45{left:499.785000px;}
.x3c{left:510.765000px;}
.x5c{left:533.085000px;}
.xa{left:539.745000px;}
.x23{left:572.730000px;}
.x5d{left:590.550000px;}
.xc{left:609.450000px;}
.x17{left:633.210000px;}
.x3d{left:638.430000px;}
.x5e{left:647.970000px;}
.x24{left:678.030000px;}
.xd{left:689.370000px;}
.x5f{left:717.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.504533pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.lse{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.320000pt;}
.ws1{word-spacing:-16.000001pt;}
.ws2{word-spacing:-15.808000pt;}
.wsd{word-spacing:-14.991467pt;}
.ws0{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.622933pt;}
.wsc{word-spacing:-14.486933pt;}
.ws6{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-3.709440pt;}
._1{margin-left:-2.132907pt;}
._0{margin-left:-1.059840pt;}
._2{width:0.955307pt;}
._4{width:1.852373pt;}
._9{width:3.120640pt;}
._19{width:4.239360pt;}
._6{width:5.259733pt;}
._5{width:6.480640pt;}
._a{width:7.595520pt;}
._8{width:9.386453pt;}
._7{width:10.639787pt;}
._17{width:16.545280pt;}
._16{width:17.523200pt;}
._1a{width:19.371520pt;}
._b{width:20.330240pt;}
._1d{width:21.962240pt;}
._3{width:23.808000pt;}
._e{width:25.624320pt;}
._f{width:26.602240pt;}
._12{width:27.856640pt;}
._11{width:28.851200pt;}
._1b{width:31.559680pt;}
._1c{width:33.031680pt;}
._c{width:39.920640pt;}
._15{width:43.118293pt;}
._14{width:44.042240pt;}
._d{width:47.280640pt;}
._18{width:50.460160pt;}
._13{width:54.346240pt;}
._1e{width:308.295680pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:6.240000pt;}
.ya{bottom:6.400000pt;}
.y5a{bottom:10.400000pt;}
.yce{bottom:10.426667pt;}
.y4f{bottom:10.560000pt;}
.y9a{bottom:11.514667pt;}
.y26{bottom:11.520000pt;}
.y24{bottom:11.680000pt;}
.y9d{bottom:11.706667pt;}
.y53{bottom:21.920000pt;}
.y52{bottom:22.080000pt;}
.y2e{bottom:24.160000pt;}
.y22{bottom:24.320000pt;}
.y35{bottom:24.346667pt;}
.y13{bottom:27.520000pt;}
.y55{bottom:33.440000pt;}
.y51{bottom:33.600000pt;}
.ybf{bottom:36.320000pt;}
.y30{bottom:36.800000pt;}
.y49{bottom:36.840000pt;}
.y23{bottom:36.960000pt;}
.y34{bottom:36.986667pt;}
.yb3{bottom:37.000000pt;}
.y15{bottom:43.360000pt;}
.y79{bottom:49.440000pt;}
.y74{bottom:49.626667pt;}
.yc3{bottom:53.920000pt;}
.y66{bottom:56.480000pt;}
.y59{bottom:56.520000pt;}
.y7b{bottom:62.080000pt;}
.ya2{bottom:62.240000pt;}
.y78{bottom:62.266667pt;}
.y70{bottom:62.280000pt;}
.ybe{bottom:68.320000pt;}
.yc1{bottom:71.680000pt;}
.y73{bottom:74.906667pt;}
.ybd{bottom:78.400000pt;}
.y65{bottom:79.520000pt;}
.yba{bottom:84.000000pt;}
.ybc{bottom:84.320000pt;}
.y7a{bottom:87.360000pt;}
.y77{bottom:87.546667pt;}
.y6f{bottom:87.560000pt;}
.yc0{bottom:88.480000pt;}
.ybb{bottom:89.760000pt;}
.y9b{bottom:97.472000pt;}
.y72{bottom:100.186667pt;}
.y64{bottom:102.560000pt;}
.yc2{bottom:103.360000pt;}
.y76{bottom:112.826667pt;}
.y71{bottom:112.840000pt;}
.yb8{bottom:113.472000pt;}
.y6a{bottom:114.106667pt;}
.y99{bottom:122.752000pt;}
.y4d{bottom:123.232000pt;}
.y63{bottom:125.466667pt;}
.y4c{bottom:136.346667pt;}
.y68{bottom:136.986667pt;}
.y75{bottom:138.106667pt;}
.yb7{bottom:141.146667pt;}
.y98{bottom:148.026667pt;}
.y43{bottom:148.346667pt;}
.y62{bottom:148.506667pt;}
.y1f{bottom:149.466667pt;}
.yb6{bottom:156.666667pt;}
.y67{bottom:160.026667pt;}
.y61{bottom:171.546667pt;}
.y97{bottom:173.466667pt;}
.y42{bottom:176.026667pt;}
.y1e{bottom:177.146667pt;}
.yb5{bottom:182.586667pt;}
.y69{bottom:183.066667pt;}
.y4b{bottom:186.906667pt;}
.y60{bottom:194.586667pt;}
.y96{bottom:198.746667pt;}
.y41{bottom:203.546667pt;}
.y1d{bottom:204.666667pt;}
.yb4{bottom:207.866667pt;}
.y4a{bottom:212.186667pt;}
.y5f{bottom:217.466667pt;}
.y95{bottom:224.026667pt;}
.y40{bottom:231.066667pt;}
.y1c{bottom:232.346667pt;}
.y5e{bottom:240.506667pt;}
.y94{bottom:249.306667pt;}
.yb2{bottom:258.426667pt;}
.y3f{bottom:258.746667pt;}
.y1b{bottom:259.866667pt;}
.y48{bottom:262.746667pt;}
.y5d{bottom:263.546667pt;}
.y93{bottom:274.586667pt;}
.y3e{bottom:286.266667pt;}
.y5c{bottom:286.586667pt;}
.y1a{bottom:287.546667pt;}
.yb1{bottom:309.186667pt;}
.y47{bottom:313.346667pt;}
.y3d{bottom:313.986667pt;}
.y19{bottom:315.106667pt;}
.y92{bottom:325.186667pt;}
.yb0{bottom:335.106667pt;}
.y6e{bottom:339.426667pt;}
.y3c{bottom:341.506667pt;}
.y18{bottom:342.786667pt;}
.y91{bottom:350.466667pt;}
.yaf{bottom:361.026667pt;}
.y6d{bottom:362.306667pt;}
.y46{bottom:364.066667pt;}
.y17{bottom:368.066667pt;}
.y3b{bottom:369.186667pt;}
.y90{bottom:375.746667pt;}
.y16{bottom:381.666667pt;}
.y6c{bottom:385.346667pt;}
.yae{bottom:386.306667pt;}
.yd4{bottom:391.106667pt;}
.y3a{bottom:396.706667pt;}
.y8f{bottom:401.186667pt;}
.yd3{bottom:406.626667pt;}
.y6b{bottom:408.386667pt;}
.yad{bottom:411.586667pt;}
.y45{bottom:414.626667pt;}
.y14{bottom:418.786667pt;}
.y5b{bottom:421.506667pt;}
.y39{bottom:424.386667pt;}
.y8e{bottom:426.466667pt;}
.yd2{bottom:429.666667pt;}
.y8d{bottom:451.746667pt;}
.y38{bottom:451.906667pt;}
.yd1{bottom:452.546667pt;}
.yac{bottom:462.306667pt;}
.y44{bottom:465.186667pt;}
.yd0{bottom:475.586667pt;}
.y8c{bottom:477.026667pt;}
.y37{bottom:477.346667pt;}
.yab{bottom:487.586667pt;}
.y36{bottom:490.466667pt;}
.y12{bottom:493.026667pt;}
.ycf{bottom:498.626667pt;}
.y8b{bottom:502.946667pt;}
.yaa{bottom:512.866667pt;}
.y33{bottom:515.746667pt;}
.ycd{bottom:521.666667pt;}
.ya9{bottom:538.173333pt;}
.ycc{bottom:544.573333pt;}
.y8a{bottom:545.373333pt;}
.y11{bottom:551.453333pt;}
.ya8{bottom:563.453333pt;}
.y32{bottom:566.493333pt;}
.ycb{bottom:567.613333pt;}
.y89{bottom:571.933333pt;}
.y88{bottom:587.453333pt;}
.y10{bottom:588.573333pt;}
.ya7{bottom:588.733333pt;}
.yca{bottom:590.653333pt;}
.y87{bottom:612.733333pt;}
.yc9{bottom:613.533333pt;}
.ya6{bottom:614.013333pt;}
.y31{bottom:617.053333pt;}
.yf{bottom:625.693333pt;}
.y86{bottom:638.013333pt;}
.yc8{bottom:659.613333pt;}
.ye{bottom:662.813333pt;}
.y85{bottom:663.933333pt;}
.y2f{bottom:667.613333pt;}
.yc7{bottom:682.653333pt;}
.ya5{bottom:690.013333pt;}
.yd{bottom:700.093333pt;}
.yc6{bottom:705.533333pt;}
.y84{bottom:706.333333pt;}
.y2d{bottom:718.173333pt;}
.y58{bottom:720.573333pt;}
.yc5{bottom:728.573333pt;}
.y83{bottom:732.893333pt;}
.yc{bottom:737.213333pt;}
.ya4{bottom:740.573333pt;}
.y82{bottom:748.413333pt;}
.yc4{bottom:751.613333pt;}
.y2c{bottom:768.933333pt;}
.y80{bottom:773.733333pt;}
.yb{bottom:774.373333pt;}
.yb9{bottom:775.333333pt;}
.y57{bottom:789.573333pt;}
.ya3{bottom:791.173333pt;}
.y2b{bottom:794.213333pt;}
.y81{bottom:799.013333pt;}
.y9{bottom:811.493333pt;}
.y2a{bottom:819.493333pt;}
.y7f{bottom:824.293333pt;}
.y56{bottom:835.493333pt;}
.ya1{bottom:841.733333pt;}
.y29{bottom:844.773333pt;}
.y7{bottom:848.773333pt;}
.y7e{bottom:850.373333pt;}
.y28{bottom:870.053333pt;}
.y7d{bottom:876.293333pt;}
.y54{bottom:881.573333pt;}
.y27{bottom:895.333333pt;}
.y6{bottom:903.333333pt;}
.ya0{bottom:918.373333pt;}
.y5{bottom:920.293333pt;}
.y25{bottom:920.613333pt;}
.y50{bottom:927.493333pt;}
.y21{bottom:946.533333pt;}
.y4{bottom:950.373333pt;}
.y7c{bottom:952.133333pt;}
.y9f{bottom:960.773333pt;}
.y4e{bottom:974.213333pt;}
.y3{bottom:980.613333pt;}
.y9e{bottom:987.173333pt;}
.y2{bottom:997.573333pt;}
.y9c{bottom:1002.693333pt;}
.y20{bottom:1014.400000pt;}
.y1{bottom:1014.560000pt;}
.h1f{height:22.880000pt;}
.h20{height:22.912000pt;}
.hf{height:23.040000pt;}
.h1e{height:23.072000pt;}
.hb{height:25.280000pt;}
.h19{height:25.312000pt;}
.h1a{height:25.440000pt;}
.h1b{height:25.472000pt;}
.h3{height:37.120000pt;}
.h6{height:37.152000pt;}
.h5{height:37.280000pt;}
.h9{height:38.128125pt;}
.h2{height:42.262500pt;}
.h11{height:45.920000pt;}
.h4{height:45.937500pt;}
.h10{height:46.080000pt;}
.hd{height:50.560000pt;}
.he{height:50.592000pt;}
.ha{height:50.720000pt;}
.hc{height:50.752000pt;}
.h7{height:58.432000pt;}
.h12{height:68.992000pt;}
.h8{height:74.240000pt;}
.h17{height:75.840000pt;}
.h1c{height:76.000000pt;}
.h18{height:76.032000pt;}
.h16{height:101.120000pt;}
.h14{height:126.592000pt;}
.h15{height:151.866667pt;}
.h1d{height:226.720000pt;}
.h13{height:299.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w26{width:42.272000pt;}
.w23{width:51.040000pt;}
.w24{width:51.072000pt;}
.w22{width:51.200000pt;}
.w21{width:58.112000pt;}
.w20{width:58.240000pt;}
.w1f{width:58.272000pt;}
.w6{width:61.952000pt;}
.w25{width:62.240000pt;}
.w5{width:71.040000pt;}
.w4{width:71.072000pt;}
.w1e{width:83.520000pt;}
.wc{width:93.600000pt;}
.wb{width:93.952000pt;}
.wd{width:95.872000pt;}
.w13{width:106.080000pt;}
.w12{width:111.392000pt;}
.w9{width:112.192000pt;}
.w10{width:112.672000pt;}
.wf{width:113.280000pt;}
.w14{width:113.312000pt;}
.we{width:113.472000pt;}
.w7{width:169.786667pt;}
.w1b{width:170.106667pt;}
.wa{width:207.706667pt;}
.w19{width:217.466667pt;}
.w11{width:226.746667pt;}
.w3{width:227.546667pt;}
.w15{width:235.906667pt;}
.w8{width:274.146667pt;}
.w17{width:283.106667pt;}
.w18{width:283.266667pt;}
.w1a{width:348.893333pt;}
.w1c{width:396.253333pt;}
.w1d{width:566.373333pt;}
.w16{width:566.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x2a{left:8.480000pt;}
.x3f{left:9.760000pt;}
.x41{left:10.880000pt;}
.x1b{left:11.840000pt;}
.x11{left:12.960000pt;}
.x25{left:14.240000pt;}
.x18{left:15.360000pt;}
.x10{left:17.440000pt;}
.xf{left:19.040000pt;}
.x28{left:20.474667pt;}
.x12{left:21.466667pt;}
.xe{left:23.546667pt;}
.x1e{left:24.640000pt;}
.x19{left:25.920000pt;}
.xb{left:27.080000pt;}
.x3a{left:28.320000pt;}
.x29{left:30.400000pt;}
.x8{left:31.546667pt;}
.x1c{left:32.480000pt;}
.x26{left:34.080000pt;}
.x27{left:35.040000pt;}
.x60{left:36.954667pt;}
.x1a{left:37.920000pt;}
.x36{left:39.546667pt;}
.x40{left:40.640000pt;}
.x56{left:42.714667pt;}
.x30{left:44.320000pt;}
.x31{left:45.306667pt;}
.x2c{left:47.514667pt;}
.x2f{left:49.274667pt;}
.x33{left:52.314667pt;}
.x38{left:56.634667pt;}
.x1d{left:63.040000pt;}
.x34{left:63.994667pt;}
.x32{left:64.954667pt;}
.x3e{left:69.920000pt;}
.x20{left:74.074667pt;}
.x2e{left:79.994667pt;}
.x46{left:82.120000pt;}
.x16{left:88.346667pt;}
.x2d{left:89.594667pt;}
.x2b{left:91.514667pt;}
.x35{left:95.194667pt;}
.x5{left:110.112000pt;}
.x1{left:113.471988pt;}
.x48{left:117.960000pt;}
.x14{left:118.912000pt;}
.x3{left:120.831988pt;}
.x4e{left:136.346667pt;}
.x4c{left:140.026667pt;}
.x4f{left:142.106667pt;}
.x50{left:143.386667pt;}
.x4d{left:144.666667pt;}
.x55{left:157.946655pt;}
.x37{left:159.706655pt;}
.x4b{left:167.066667pt;}
.x42{left:186.906655pt;}
.x57{left:196.986667pt;}
.x13{left:219.266655pt;}
.x1f{left:220.226655pt;}
.x43{left:224.866667pt;}
.x39{left:227.266667pt;}
.x54{left:236.514667pt;}
.x53{left:242.114667pt;}
.x47{left:243.074667pt;}
.x58{left:255.266667pt;}
.x4a{left:269.986655pt;}
.x49{left:282.466655pt;}
.x52{left:283.586667pt;}
.x15{left:288.706667pt;}
.x51{left:292.066655pt;}
.x59{left:313.506667pt;}
.x21{left:321.186667pt;}
.x44{left:330.946667pt;}
.x7{left:337.666667pt;}
.x3b{left:340.546667pt;}
.x4{left:341.986655pt;}
.x5a{left:371.613333pt;}
.x2{left:396.893322pt;}
.x9{left:408.733333pt;}
.x22{left:415.133333pt;}
.x5b{left:422.813333pt;}
.x45{left:444.253333pt;}
.x3c{left:454.013333pt;}
.x5c{left:473.853333pt;}
.xa{left:479.773333pt;}
.x23{left:509.093333pt;}
.x5d{left:524.933333pt;}
.xc{left:541.733333pt;}
.x17{left:562.853333pt;}
.x3d{left:567.493333pt;}
.x5e{left:575.973333pt;}
.x24{left:602.693333pt;}
.xd{left:612.773333pt;}
.x5f{left:638.213333pt;}
}




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