
    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_9e92f2bd1426163dc787b599.woff2')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_1236c01ec6ba43c4669f3b08.woff2')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_c06fb26a228e103bd856d26c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_83d0beb690a014a7782f3e3f.woff2')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_7ff4527eeecbb516deff94e4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f82af83a38c27a281bec7e41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_df73fd695dd6892105939981.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:2.160000px;}
.ls7{letter-spacing:43.932000px;}
.ls8{letter-spacing:53.424000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws1{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-3.793440px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.914560px;}
._4{width:4.188000px;}
._8{width:5.538240px;}
._7{width:6.572160px;}
._a{width:7.848000px;}
._9{width:8.959680px;}
._14{width:10.546560px;}
._12{width:12.188160px;}
._6{width:13.371840px;}
._5{width:14.506560px;}
._11{width:15.515520px;}
._15{width:16.682880px;}
._b{width:21.634560px;}
._c{width:23.613120px;}
._e{width:25.804800px;}
._d{width:26.965440px;}
._f{width:28.258560px;}
._13{width:257.196000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y35{bottom:7.560000px;}
.y43{bottom:7.605000px;}
.y39{bottom:7.920000px;}
.y5b{bottom:9.000000px;}
.y5f{bottom:9.360000px;}
.y59{bottom:9.390000px;}
.y83{bottom:10.440000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y4d{bottom:11.880000px;}
.y3b{bottom:13.320000px;}
.y4b{bottom:14.040000px;}
.y60{bottom:17.280000px;}
.y41{bottom:19.440000px;}
.y62{bottom:19.485000px;}
.y32{bottom:20.160000px;}
.y57{bottom:21.270000px;}
.y81{bottom:22.320000px;}
.y34{bottom:31.320000px;}
.y48{bottom:31.350000px;}
.y38{bottom:31.680000px;}
.y63{bottom:31.725000px;}
.y37{bottom:32.040000px;}
.y58{bottom:33.150000px;}
.y82{bottom:34.200000px;}
.y30{bottom:43.965000px;}
.y5d{bottom:55.080000px;}
.y36{bottom:55.845000px;}
.y8{bottom:57.240000px;}
.y31{bottom:67.725000px;}
.y5{bottom:73.476000px;}
.y3e{bottom:105.525000px;}
.yab{bottom:114.516000px;}
.y7f{bottom:117.756000px;}
.y3a{bottom:118.476000px;}
.y3d{bottom:129.645000px;}
.yaa{bottom:138.276000px;}
.y7e{bottom:141.516000px;}
.y2f{bottom:154.110000px;}
.ya9{bottom:162.030000px;}
.y7d{bottom:165.630000px;}
.ya8{bottom:185.790000px;}
.y7c{bottom:189.750000px;}
.y33{bottom:202.755000px;}
.ya7{bottom:209.595000px;}
.y7b{bottom:213.555000px;}
.ya6{bottom:233.355000px;}
.y7a{bottom:237.315000px;}
.ya5{bottom:257.115000px;}
.y2e{bottom:258.195000px;}
.y79{bottom:261.075000px;}
.ya4{bottom:280.875000px;}
.y2d{bottom:281.955000px;}
.y78{bottom:284.835000px;}
.ya3{bottom:304.995000px;}
.y2c{bottom:306.075000px;}
.y77{bottom:308.595000px;}
.ya2{bottom:328.785000px;}
.y2b{bottom:330.225000px;}
.y76{bottom:332.385000px;}
.ya1{bottom:352.545000px;}
.y2a{bottom:353.985000px;}
.y66{bottom:354.705000px;}
.y75{bottom:356.145000px;}
.ya0{bottom:376.305000px;}
.y29{bottom:377.745000px;}
.y65{bottom:378.465000px;}
.y74{bottom:380.265000px;}
.y64{bottom:395.385000px;}
.y9f{bottom:400.065000px;}
.y28{bottom:401.505000px;}
.y73{bottom:404.025000px;}
.y9e{bottom:423.825000px;}
.y27{bottom:425.265000px;}
.y72{bottom:427.785000px;}
.y61{bottom:443.625000px;}
.y9d{bottom:447.270000px;}
.y26{bottom:449.070000px;}
.y71{bottom:451.590000px;}
.y9c{bottom:464.550000px;}
.y25{bottom:472.830000px;}
.y70{bottom:475.350000px;}
.y9b{bottom:489.390000px;}
.y5c{bottom:492.270000px;}
.y24{bottom:496.590000px;}
.y6f{bottom:499.110000px;}
.y9a{bottom:513.870000px;}
.y23{bottom:520.350000px;}
.y6e{bottom:522.870000px;}
.y5e{bottom:536.190000px;}
.y99{bottom:538.350000px;}
.y22{bottom:544.470000px;}
.y6d{bottom:546.630000px;}
.y56{bottom:564.270000px;}
.y21{bottom:568.230000px;}
.y6c{bottom:570.750000px;}
.y5a{bottom:588.780000px;}
.y20{bottom:592.020000px;}
.y98{bottom:593.820000px;}
.y6b{bottom:594.180000px;}
.y6a{bottom:613.620000px;}
.y1f{bottom:615.420000px;}
.y97{bottom:617.580000px;}
.y55{bottom:623.340000px;}
.y1e{bottom:639.540000px;}
.y96{bottom:642.060000px;}
.y54{bottom:647.100000px;}
.y1d{bottom:663.300000px;}
.y95{bottom:665.820000px;}
.y53{bottom:671.220000px;}
.y1c{bottom:687.060000px;}
.y94{bottom:689.580000px;}
.y52{bottom:694.980000px;}
.ybf{bottom:702.930000px;}
.y1b{bottom:710.850000px;}
.y93{bottom:713.370000px;}
.y51{bottom:718.770000px;}
.ybe{bottom:727.050000px;}
.y1a{bottom:734.970000px;}
.y92{bottom:737.130000px;}
.y50{bottom:742.890000px;}
.ybd{bottom:750.810000px;}
.y91{bottom:754.050000px;}
.y19{bottom:758.730000px;}
.y4f{bottom:759.810000px;}
.ybc{bottom:774.570000px;}
.y90{bottom:778.530000px;}
.y18{bottom:782.490000px;}
.ybb{bottom:798.330000px;}
.y8f{bottom:803.370000px;}
.y17{bottom:806.250000px;}
.y4e{bottom:808.050000px;}
.yba{bottom:822.090000px;}
.y8e{bottom:827.895000px;}
.y16{bottom:830.055000px;}
.y4c{bottom:832.575000px;}
.yb9{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y8d{bottom:859.935000px;}
.y4a{bottom:865.335000px;}
.y69{bottom:867.135000px;}
.yb8{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.y8c{bottom:883.695000px;}
.y68{bottom:890.895000px;}
.yb7{bottom:893.415000px;}
.y13{bottom:901.335000px;}
.y49{bottom:903.135000px;}
.y8b{bottom:907.455000px;}
.y67{bottom:910.695000px;}
.yb6{bottom:917.175000px;}
.y12{bottom:925.455000px;}
.y47{bottom:927.615000px;}
.y8a{bottom:931.215000px;}
.yb5{bottom:941.295000px;}
.y11{bottom:948.855000px;}
.y89{bottom:955.365000px;}
.yb4{bottom:965.085000px;}
.y10{bottom:972.645000px;}
.y46{bottom:975.885000px;}
.y88{bottom:979.125000px;}
.yb3{bottom:988.845000px;}
.yf{bottom:996.765000px;}
.y45{bottom:1000.365000px;}
.y87{bottom:1002.885000px;}
.yb2{bottom:1012.605000px;}
.y86{bottom:1019.805000px;}
.ye{bottom:1020.525000px;}
.y3c{bottom:1025.205000px;}
.yb1{bottom:1036.365000px;}
.yd{bottom:1043.925000px;}
.y44{bottom:1049.685000px;}
.yb0{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y85{bottom:1068.045000px;}
.y42{bottom:1074.165000px;}
.yaf{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y84{bottom:1092.570000px;}
.y40{bottom:1098.690000px;}
.yae{bottom:1107.690000px;}
.y80{bottom:1117.410000px;}
.ya{bottom:1117.770000px;}
.yad{bottom:1131.810000px;}
.y3f{bottom:1146.930000px;}
.y9{bottom:1149.450000px;}
.yac{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h13{height:23.760000px;}
.h12{height:23.796000px;}
.h11{height:24.120000px;}
.h18{height:26.640000px;}
.h5{height:27.000000px;}
.h1a{height:27.360000px;}
.h16{height:32.040000px;}
.hf{height:34.920000px;}
.h15{height:37.080000px;}
.h1b{height:43.200000px;}
.hd{height:47.520000px;}
.h14{height:47.556000px;}
.he{height:47.916000px;}
.h7{height:50.229844px;}
.h1e{height:50.273438px;}
.h17{height:51.156000px;}
.h1c{height:53.640000px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h19{height:71.280000px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h1d{height:74.004654px;}
.h9{height:75.251250px;}
.hc{height:96.156000px;}
.h8{height:97.233750px;}
.h10{height:145.836000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:30.960000px;}
.w5{width:37.116000px;}
.w1a{width:39.240000px;}
.w1f{width:50.076000px;}
.w23{width:52.596000px;}
.w1c{width:73.836000px;}
.w7{width:74.916000px;}
.wb{width:82.476000px;}
.w10{width:94.716000px;}
.w19{width:95.076000px;}
.w14{width:95.436000px;}
.wd{width:97.956000px;}
.w12{width:100.476000px;}
.w17{width:100.836000px;}
.w15{width:101.196000px;}
.w4{width:104.076000px;}
.wc{width:122.436000px;}
.wa{width:128.196000px;}
.w16{width:131.832000px;}
.w13{width:137.916000px;}
.w9{width:138.276000px;}
.w21{width:139.752000px;}
.w25{width:140.796000px;}
.w26{width:141.912000px;}
.w1b{width:158.835000px;}
.w27{width:165.270000px;}
.w1e{width:169.590000px;}
.w24{width:197.715000px;}
.w8{width:211.395000px;}
.w6{width:221.115000px;}
.wf{width:233.385000px;}
.w11{width:233.715000px;}
.w18{width:233.745000px;}
.w20{width:243.795000px;}
.w1d{width:254.265000px;}
.w22{width:265.035000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2d{left:7.560000px;}
.x14{left:9.720000px;}
.x3b{left:10.836000px;}
.x18{left:11.880000px;}
.x21{left:14.040000px;}
.x4b{left:16.200000px;}
.x3e{left:17.280000px;}
.x30{left:18.720000px;}
.x1f{left:20.160000px;}
.x25{left:21.600000px;}
.x5e{left:23.043000px;}
.x27{left:24.480000px;}
.x2c{left:25.560000px;}
.x33{left:27.363000px;}
.x23{left:28.800000px;}
.x24{left:29.880000px;}
.x42{left:32.445000px;}
.x19{left:33.480000px;}
.x4f{left:36.039000px;}
.x36{left:37.440000px;}
.x8{left:39.270000px;}
.x34{left:41.043000px;}
.x29{left:42.480000px;}
.x2b{left:44.280000px;}
.x2e{left:45.720000px;}
.x28{left:47.160000px;}
.x1e{left:49.320000px;}
.x16{left:56.163000px;}
.x26{left:57.270000px;}
.x2f{left:58.683000px;}
.x31{left:60.840000px;}
.x5a{left:63.003000px;}
.x1b{left:64.080000px;}
.x32{left:65.910000px;}
.x57{left:67.323000px;}
.x2a{left:68.790000px;}
.x35{left:72.003000px;}
.x4e{left:73.800000px;}
.x3c{left:75.999000px;}
.x53{left:86.073000px;}
.x56{left:90.753000px;}
.x5{left:95.796000px;}
.x39{left:98.676000px;}
.xa{left:103.355987px;}
.x1c{left:105.510000px;}
.x43{left:117.069000px;}
.x4d{left:118.110000px;}
.x5f{left:127.835987px;}
.x3a{left:130.356000px;}
.x48{left:136.476000px;}
.x58{left:138.275987px;}
.x15{left:141.552000px;}
.xf{left:146.231987px;}
.x52{left:147.312000px;}
.x11{left:149.111987px;}
.xd{left:176.834987px;}
.x3{left:190.874987px;}
.xb{left:223.274987px;}
.x47{left:226.874987px;}
.x41{left:231.915000px;}
.x37{left:243.824987px;}
.x22{left:264.705000px;}
.x50{left:275.504987px;}
.x12{left:282.704987px;}
.x59{left:283.784987px;}
.x6{left:290.634000px;}
.x49{left:296.025000px;}
.x10{left:317.264987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x5b{left:347.910000px;}
.x17{left:363.390000px;}
.x3d{left:364.470000px;}
.xe{left:365.909987px;}
.x4a{left:370.590000px;}
.x45{left:378.509987px;}
.x54{left:391.830000px;}
.x7{left:394.710000px;}
.x1a{left:439.020000px;}
.xc{left:446.579987px;}
.x38{left:458.819987px;}
.x5c{left:489.420000px;}
.x9{left:498.780000px;}
.x55{left:532.290000px;}
.x20{left:567.930000px;}
.x40{left:597.810000px;}
.x4c{left:625.575000px;}
.x5d{left:632.055000px;}
.x1d{left:651.135000px;}
.x46{left:683.534987px;}
.x44{left:690.734987px;}
.x3f{left:693.975000px;}
.x13{left:742.244987px;}
.x51{left:743.324987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls7{letter-spacing:39.050667pt;}
.ls8{letter-spacing:47.488000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws1{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-3.371947pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.590720pt;}
._4{width:3.722667pt;}
._8{width:4.922880pt;}
._7{width:5.841920pt;}
._a{width:6.976000pt;}
._9{width:7.964160pt;}
._14{width:9.374720pt;}
._12{width:10.833920pt;}
._6{width:11.886080pt;}
._5{width:12.894720pt;}
._11{width:13.791573pt;}
._15{width:14.829227pt;}
._b{width:19.230720pt;}
._c{width:20.989440pt;}
._e{width:22.937600pt;}
._d{width:23.969280pt;}
._f{width:25.118720pt;}
._13{width:228.618667pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:6.720000pt;}
.y43{bottom:6.760000pt;}
.y39{bottom:7.040000pt;}
.y5b{bottom:8.000000pt;}
.y5f{bottom:8.320000pt;}
.y59{bottom:8.346667pt;}
.y83{bottom:9.280000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y4d{bottom:10.560000pt;}
.y3b{bottom:11.840000pt;}
.y4b{bottom:12.480000pt;}
.y60{bottom:15.360000pt;}
.y41{bottom:17.280000pt;}
.y62{bottom:17.320000pt;}
.y32{bottom:17.920000pt;}
.y57{bottom:18.906667pt;}
.y81{bottom:19.840000pt;}
.y34{bottom:27.840000pt;}
.y48{bottom:27.866667pt;}
.y38{bottom:28.160000pt;}
.y63{bottom:28.200000pt;}
.y37{bottom:28.480000pt;}
.y58{bottom:29.466667pt;}
.y82{bottom:30.400000pt;}
.y30{bottom:39.080000pt;}
.y5d{bottom:48.960000pt;}
.y36{bottom:49.640000pt;}
.y8{bottom:50.880000pt;}
.y31{bottom:60.200000pt;}
.y5{bottom:65.312000pt;}
.y3e{bottom:93.800000pt;}
.yab{bottom:101.792000pt;}
.y7f{bottom:104.672000pt;}
.y3a{bottom:105.312000pt;}
.y3d{bottom:115.240000pt;}
.yaa{bottom:122.912000pt;}
.y7e{bottom:125.792000pt;}
.y2f{bottom:136.986667pt;}
.ya9{bottom:144.026667pt;}
.y7d{bottom:147.226667pt;}
.ya8{bottom:165.146667pt;}
.y7c{bottom:168.666667pt;}
.y33{bottom:180.226667pt;}
.ya7{bottom:186.306667pt;}
.y7b{bottom:189.826667pt;}
.ya6{bottom:207.426667pt;}
.y7a{bottom:210.946667pt;}
.ya5{bottom:228.546667pt;}
.y2e{bottom:229.506667pt;}
.y79{bottom:232.066667pt;}
.ya4{bottom:249.666667pt;}
.y2d{bottom:250.626667pt;}
.y78{bottom:253.186667pt;}
.ya3{bottom:271.106667pt;}
.y2c{bottom:272.066667pt;}
.y77{bottom:274.306667pt;}
.ya2{bottom:292.253333pt;}
.y2b{bottom:293.533333pt;}
.y76{bottom:295.453333pt;}
.ya1{bottom:313.373333pt;}
.y2a{bottom:314.653333pt;}
.y66{bottom:315.293333pt;}
.y75{bottom:316.573333pt;}
.ya0{bottom:334.493333pt;}
.y29{bottom:335.773333pt;}
.y65{bottom:336.413333pt;}
.y74{bottom:338.013333pt;}
.y64{bottom:351.453333pt;}
.y9f{bottom:355.613333pt;}
.y28{bottom:356.893333pt;}
.y73{bottom:359.133333pt;}
.y9e{bottom:376.733333pt;}
.y27{bottom:378.013333pt;}
.y72{bottom:380.253333pt;}
.y61{bottom:394.333333pt;}
.y9d{bottom:397.573333pt;}
.y26{bottom:399.173333pt;}
.y71{bottom:401.413333pt;}
.y9c{bottom:412.933333pt;}
.y25{bottom:420.293333pt;}
.y70{bottom:422.533333pt;}
.y9b{bottom:435.013333pt;}
.y5c{bottom:437.573333pt;}
.y24{bottom:441.413333pt;}
.y6f{bottom:443.653333pt;}
.y9a{bottom:456.773333pt;}
.y23{bottom:462.533333pt;}
.y6e{bottom:464.773333pt;}
.y5e{bottom:476.613333pt;}
.y99{bottom:478.533333pt;}
.y22{bottom:483.973333pt;}
.y6d{bottom:485.893333pt;}
.y56{bottom:501.573333pt;}
.y21{bottom:505.093333pt;}
.y6c{bottom:507.333333pt;}
.y5a{bottom:523.360000pt;}
.y20{bottom:526.240000pt;}
.y98{bottom:527.840000pt;}
.y6b{bottom:528.160000pt;}
.y6a{bottom:545.440000pt;}
.y1f{bottom:547.040000pt;}
.y97{bottom:548.960000pt;}
.y55{bottom:554.080000pt;}
.y1e{bottom:568.480000pt;}
.y96{bottom:570.720000pt;}
.y54{bottom:575.200000pt;}
.y1d{bottom:589.600000pt;}
.y95{bottom:591.840000pt;}
.y53{bottom:596.640000pt;}
.y1c{bottom:610.720000pt;}
.y94{bottom:612.960000pt;}
.y52{bottom:617.760000pt;}
.ybf{bottom:624.826667pt;}
.y1b{bottom:631.866667pt;}
.y93{bottom:634.106667pt;}
.y51{bottom:638.906667pt;}
.ybe{bottom:646.266667pt;}
.y1a{bottom:653.306667pt;}
.y92{bottom:655.226667pt;}
.y50{bottom:660.346667pt;}
.ybd{bottom:667.386667pt;}
.y91{bottom:670.266667pt;}
.y19{bottom:674.426667pt;}
.y4f{bottom:675.386667pt;}
.ybc{bottom:688.506667pt;}
.y90{bottom:692.026667pt;}
.y18{bottom:695.546667pt;}
.ybb{bottom:709.626667pt;}
.y8f{bottom:714.106667pt;}
.y17{bottom:716.666667pt;}
.y4e{bottom:718.266667pt;}
.yba{bottom:730.746667pt;}
.y8e{bottom:735.906667pt;}
.y16{bottom:737.826667pt;}
.y4c{bottom:740.066667pt;}
.yb9{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y8d{bottom:764.386667pt;}
.y4a{bottom:769.186667pt;}
.y69{bottom:770.786667pt;}
.yb8{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.y8c{bottom:785.506667pt;}
.y68{bottom:791.906667pt;}
.yb7{bottom:794.146667pt;}
.y13{bottom:801.186667pt;}
.y49{bottom:802.786667pt;}
.y8b{bottom:806.626667pt;}
.y67{bottom:809.506667pt;}
.yb6{bottom:815.266667pt;}
.y12{bottom:822.626667pt;}
.y47{bottom:824.546667pt;}
.y8a{bottom:827.746667pt;}
.yb5{bottom:836.706667pt;}
.y11{bottom:843.426667pt;}
.y89{bottom:849.213333pt;}
.yb4{bottom:857.853333pt;}
.y10{bottom:864.573333pt;}
.y46{bottom:867.453333pt;}
.y88{bottom:870.333333pt;}
.yb3{bottom:878.973333pt;}
.yf{bottom:886.013333pt;}
.y45{bottom:889.213333pt;}
.y87{bottom:891.453333pt;}
.yb2{bottom:900.093333pt;}
.y86{bottom:906.493333pt;}
.ye{bottom:907.133333pt;}
.y3c{bottom:911.293333pt;}
.yb1{bottom:921.213333pt;}
.yd{bottom:927.933333pt;}
.y44{bottom:933.053333pt;}
.yb0{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y85{bottom:949.373333pt;}
.y42{bottom:954.813333pt;}
.yaf{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y84{bottom:971.173333pt;}
.y40{bottom:976.613333pt;}
.yae{bottom:984.613333pt;}
.y80{bottom:993.253333pt;}
.ya{bottom:993.573333pt;}
.yad{bottom:1006.053333pt;}
.y3f{bottom:1019.493333pt;}
.y9{bottom:1021.733333pt;}
.yac{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h13{height:21.120000pt;}
.h12{height:21.152000pt;}
.h11{height:21.440000pt;}
.h18{height:23.680000pt;}
.h5{height:24.000000pt;}
.h1a{height:24.320000pt;}
.h16{height:28.480000pt;}
.hf{height:31.040000pt;}
.h15{height:32.960000pt;}
.h1b{height:38.400000pt;}
.hd{height:42.240000pt;}
.h14{height:42.272000pt;}
.he{height:42.592000pt;}
.h7{height:44.648750pt;}
.h1e{height:44.687500pt;}
.h17{height:45.472000pt;}
.h1c{height:47.680000pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h19{height:63.360000pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h1d{height:65.781915pt;}
.h9{height:66.890000pt;}
.hc{height:85.472000pt;}
.h8{height:86.430000pt;}
.h10{height:129.632000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:27.520000pt;}
.w5{width:32.992000pt;}
.w1a{width:34.880000pt;}
.w1f{width:44.512000pt;}
.w23{width:46.752000pt;}
.w1c{width:65.632000pt;}
.w7{width:66.592000pt;}
.wb{width:73.312000pt;}
.w10{width:84.192000pt;}
.w19{width:84.512000pt;}
.w14{width:84.832000pt;}
.wd{width:87.072000pt;}
.w12{width:89.312000pt;}
.w17{width:89.632000pt;}
.w15{width:89.952000pt;}
.w4{width:92.512000pt;}
.wc{width:108.832000pt;}
.wa{width:113.952000pt;}
.w16{width:117.184000pt;}
.w13{width:122.592000pt;}
.w9{width:122.912000pt;}
.w21{width:124.224000pt;}
.w25{width:125.152000pt;}
.w26{width:126.144000pt;}
.w1b{width:141.186667pt;}
.w27{width:146.906667pt;}
.w1e{width:150.746667pt;}
.w24{width:175.746667pt;}
.w8{width:187.906667pt;}
.w6{width:196.546667pt;}
.wf{width:207.453333pt;}
.w11{width:207.746667pt;}
.w18{width:207.773333pt;}
.w20{width:216.706667pt;}
.w1d{width:226.013333pt;}
.w22{width:235.586667pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2d{left:6.720000pt;}
.x14{left:8.640000pt;}
.x3b{left:9.632000pt;}
.x18{left:10.560000pt;}
.x21{left:12.480000pt;}
.x4b{left:14.400000pt;}
.x3e{left:15.360000pt;}
.x30{left:16.640000pt;}
.x1f{left:17.920000pt;}
.x25{left:19.200000pt;}
.x5e{left:20.482667pt;}
.x27{left:21.760000pt;}
.x2c{left:22.720000pt;}
.x33{left:24.322667pt;}
.x23{left:25.600000pt;}
.x24{left:26.560000pt;}
.x42{left:28.840000pt;}
.x19{left:29.760000pt;}
.x4f{left:32.034667pt;}
.x36{left:33.280000pt;}
.x8{left:34.906667pt;}
.x34{left:36.482667pt;}
.x29{left:37.760000pt;}
.x2b{left:39.360000pt;}
.x2e{left:40.640000pt;}
.x28{left:41.920000pt;}
.x1e{left:43.840000pt;}
.x16{left:49.922667pt;}
.x26{left:50.906667pt;}
.x2f{left:52.162667pt;}
.x31{left:54.080000pt;}
.x5a{left:56.002667pt;}
.x1b{left:56.960000pt;}
.x32{left:58.586667pt;}
.x57{left:59.842667pt;}
.x2a{left:61.146667pt;}
.x35{left:64.002667pt;}
.x4e{left:65.600000pt;}
.x3c{left:67.554667pt;}
.x53{left:76.509333pt;}
.x56{left:80.669333pt;}
.x5{left:85.152000pt;}
.x39{left:87.712000pt;}
.xa{left:91.871988pt;}
.x1c{left:93.786667pt;}
.x43{left:104.061333pt;}
.x4d{left:104.986667pt;}
.x5f{left:113.631988pt;}
.x3a{left:115.872000pt;}
.x48{left:121.312000pt;}
.x58{left:122.911988pt;}
.x15{left:125.824000pt;}
.xf{left:129.983988pt;}
.x52{left:130.944000pt;}
.x11{left:132.543988pt;}
.xd{left:157.186655pt;}
.x3{left:169.666655pt;}
.xb{left:198.466655pt;}
.x47{left:201.666655pt;}
.x41{left:206.146667pt;}
.x37{left:216.733322pt;}
.x22{left:235.293333pt;}
.x50{left:244.893322pt;}
.x12{left:251.293322pt;}
.x59{left:252.253322pt;}
.x6{left:258.341333pt;}
.x49{left:263.133333pt;}
.x10{left:282.013322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x5b{left:309.253333pt;}
.x17{left:323.013333pt;}
.x3d{left:323.973333pt;}
.xe{left:325.253322pt;}
.x4a{left:329.413333pt;}
.x45{left:336.453322pt;}
.x54{left:348.293333pt;}
.x7{left:350.853333pt;}
.x1a{left:390.240000pt;}
.xc{left:396.959988pt;}
.x38{left:407.839988pt;}
.x5c{left:435.040000pt;}
.x9{left:443.360000pt;}
.x55{left:473.146667pt;}
.x20{left:504.826667pt;}
.x40{left:531.386667pt;}
.x4c{left:556.066667pt;}
.x5d{left:561.826667pt;}
.x1d{left:578.786667pt;}
.x46{left:607.586655pt;}
.x44{left:613.986655pt;}
.x3f{left:616.866667pt;}
.x13{left:659.773322pt;}
.x51{left:660.733322pt;}
.x1{left:709.053322pt;}
}




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