
    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_e18fa7e30239bacf24372880.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_238191532563832f1b7638e0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_67953d2b61f9ee1130d375d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_383bf807afbd42c89b0f866c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fabbadd4a0e0bc7664645f35.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_eccd8baf673ba7a88fd6c32b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.253200px;}
.lsb{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.269280px;}
.ls12{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:4.320000px;}
.ls3{letter-spacing:8.225280px;}
.ls4{letter-spacing:15.300000px;}
.lsc{letter-spacing:39.881280px;}
.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;}
}
.wsa{word-spacing:-16.712400px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.482000px;}
.wsb{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._18{margin-left:-5.058000px;}
._11{margin-left:-3.996000px;}
._e{margin-left:-2.803680px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._d{width:3.078000px;}
._3{width:4.866000px;}
._2{width:6.150000px;}
._7{width:7.204080px;}
._12{width:8.318880px;}
._8{width:9.450000px;}
._4{width:11.016000px;}
._c{width:12.361680px;}
._15{width:14.195040px;}
._f{width:15.654000px;}
._6{width:17.977680px;}
._5{width:19.062000px;}
._16{width:20.600640px;}
._17{width:22.322880px;}
._b{width:23.436000px;}
._a{width:24.570000px;}
._19{width:25.604640px;}
._14{width:26.635680px;}
._13{width:27.918000px;}
._1c{width:29.228160px;}
._9{width:31.536000px;}
._10{width:32.687040px;}
._1a{width:53.190720px;}
._1b{width:54.794880px;}
.fc5{color:rgb(61,133,198);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc6{color:rgb(60,120,216);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.880000px;}
.y2{bottom:5.400000px;}
.y4e{bottom:8.640000px;}
.y37{bottom:18.360000px;}
.y4f{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y36{bottom:33.840000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y35{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y34{bottom:64.980000px;}
.y33{bottom:80.460000px;}
.y32{bottom:95.940000px;}
.y5b{bottom:110.376000px;}
.y31{bottom:111.420000px;}
.y91{bottom:114.876000px;}
.y5a{bottom:124.236000px;}
.y30{bottom:127.080000px;}
.y59{bottom:128.736000px;}
.y9f{bottom:137.916000px;}
.y90{bottom:138.096000px;}
.y58{bottom:138.996000px;}
.y9e{bottom:142.416000px;}
.y2f{bottom:142.560000px;}
.y8f{bottom:142.596000px;}
.ya9{bottom:149.076000px;}
.y9a{bottom:151.770000px;}
.y8e{bottom:151.950000px;}
.y99{bottom:156.270000px;}
.y2e{bottom:158.040000px;}
.y98{bottom:165.630000px;}
.y8d{bottom:165.810000px;}
.y57{bottom:168.150000px;}
.y9d{bottom:170.130000px;}
.y8c{bottom:170.310000px;}
.ya3{bottom:170.850000px;}
.y2d{bottom:173.520000px;}
.ya4{bottom:176.790000px;}
.y97{bottom:179.490000px;}
.y8b{bottom:179.670000px;}
.y9c{bottom:180.390000px;}
.y96{bottom:183.990000px;}
.y2c{bottom:189.180000px;}
.y56{bottom:189.930000px;}
.ya2{bottom:192.630000px;}
.y8a{bottom:193.350000px;}
.y95{bottom:194.250000px;}
.ya8{bottom:197.850000px;}
.y2b{bottom:204.660000px;}
.y89{bottom:207.210000px;}
.ya7{bottom:208.110000px;}
.y54{bottom:211.710000px;}
.ya1{bottom:214.410000px;}
.y55{bottom:217.650000px;}
.y2a{bottom:220.140000px;}
.y88{bottom:221.970000px;}
.y53{bottom:233.490000px;}
.y29{bottom:235.620000px;}
.y94{bottom:236.370000px;}
.y28{bottom:251.280000px;}
.y52{bottom:255.450000px;}
.y4c{bottom:255.960000px;}
.y87{bottom:258.150000px;}
.y27{bottom:266.790000px;}
.y4b{bottom:269.850000px;}
.y51{bottom:277.230000px;}
.y86{bottom:279.930000px;}
.y26{bottom:282.270000px;}
.y4a{bottom:283.530000px;}
.y49{bottom:297.390000px;}
.y25{bottom:297.750000px;}
.y50{bottom:299.010000px;}
.y85{bottom:301.710000px;}
.y48{bottom:311.250000px;}
.y24{bottom:313.410000px;}
.y4d{bottom:314.490000px;}
.y84{bottom:323.670000px;}
.y47{bottom:324.930000px;}
.y23{bottom:328.890000px;}
.y46{bottom:338.790000px;}
.y22{bottom:344.370000px;}
.y83{bottom:345.495000px;}
.y14{bottom:345.675000px;}
.y45{bottom:352.650000px;}
.y21{bottom:359.850000px;}
.y44{bottom:366.330000px;}
.y82{bottom:367.275000px;}
.ya6{bottom:373.215000px;}
.y20{bottom:375.510000px;}
.y43{bottom:380.550000px;}
.y81{bottom:389.055000px;}
.y1f{bottom:390.990000px;}
.y42{bottom:396.210000px;}
.y1e{bottom:406.470000px;}
.y7f{bottom:410.835000px;}
.y41{bottom:411.690000px;}
.y80{bottom:416.775000px;}
.y1d{bottom:421.950000px;}
.y40{bottom:427.170000px;}
.y7e{bottom:432.795000px;}
.y1c{bottom:437.610000px;}
.y3f{bottom:442.650000px;}
.y1b{bottom:453.090000px;}
.y7d{bottom:454.575000px;}
.y3e{bottom:458.310000px;}
.y1a{bottom:468.570000px;}
.y3d{bottom:473.790000px;}
.y7b{bottom:476.355000px;}
.y7c{bottom:482.295000px;}
.y19{bottom:484.050000px;}
.y3c{bottom:489.270000px;}
.y7a{bottom:498.135000px;}
.y18{bottom:499.710000px;}
.y3b{bottom:504.390000px;}
.y17{bottom:515.190000px;}
.y3a{bottom:518.250000px;}
.y79{bottom:520.095000px;}
.y16{bottom:530.715000px;}
.y39{bottom:531.975000px;}
.y78{bottom:541.875000px;}
.y15{bottom:546.195000px;}
.y77{bottom:563.655000px;}
.y76{bottom:585.435000px;}
.y75{bottom:607.245000px;}
.y74{bottom:629.205000px;}
.y73{bottom:650.985000px;}
.y9b{bottom:656.925000px;}
.y72{bottom:672.765000px;}
.y70{bottom:694.545000px;}
.y71{bottom:700.485000px;}
.y6f{bottom:716.505000px;}
.y6e{bottom:738.285000px;}
.y93{bottom:744.225000px;}
.y6d{bottom:760.065000px;}
.y6c{bottom:781.845000px;}
.ya5{bottom:787.785000px;}
.y6b{bottom:803.625000px;}
.y6a{bottom:825.585000px;}
.y68{bottom:847.365000px;}
.y69{bottom:853.305000px;}
.y67{bottom:869.145000px;}
.ya0{bottom:875.130000px;}
.y66{bottom:890.970000px;}
.y13{bottom:910.950000px;}
.y65{bottom:912.930000px;}
.y12{bottom:932.190000px;}
.y64{bottom:934.710000px;}
.y92{bottom:940.650000px;}
.y11{bottom:951.990000px;}
.y63{bottom:956.490000px;}
.y10{bottom:977.010000px;}
.y62{bottom:978.270000px;}
.yf{bottom:992.130000px;}
.y60{bottom:1000.050000px;}
.y61{bottom:1005.990000px;}
.ye{bottom:1014.090000px;}
.y5f{bottom:1022.010000px;}
.yd{bottom:1035.870000px;}
.y5e{bottom:1043.790000px;}
.yc{bottom:1058.910000px;}
.y5d{bottom:1065.570000px;}
.yb{bottom:1084.650000px;}
.y5c{bottom:1087.350000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h17{height:22.015547px;}
.hb{height:27.147656px;}
.h16{height:29.158594px;}
.h14{height:31.176000px;}
.h11{height:33.683203px;}
.h13{height:34.036523px;}
.h18{height:35.120039px;}
.he{height:37.705078px;}
.h10{height:38.100586px;}
.h7{height:39.147891px;}
.h12{height:39.760312px;}
.hc{height:41.726953px;}
.h3{height:42.164648px;}
.hf{height:44.507812px;}
.h15{height:46.251562px;}
.h9{height:46.736719px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.ha{height:53.224453px;}
.h19{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.hd{height:558.795000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w8{width:115.050000px;}
.w7{width:201.990000px;}
.w4{width:255.090000px;}
.w3{width:374.655000px;}
.w6{width:459.795000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x12{left:30.600000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x17{left:112.175987px;}
.xf{left:116.136000px;}
.xa{left:118.115987px;}
.x7{left:131.805000px;}
.x1f{left:135.035987px;}
.x3a{left:140.075987px;}
.x1c{left:160.769973px;}
.x13{left:162.029987px;}
.x1d{left:165.989987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x2c{left:195.869987px;}
.x20{left:216.029987px;}
.x27{left:232.049973px;}
.x2b{left:236.369987px;}
.x2f{left:241.229973px;}
.x28{left:242.489987px;}
.x21{left:244.109973px;}
.x22{left:249.329987px;}
.x30{left:251.669987px;}
.x33{left:255.269973px;}
.xb{left:264.989987px;}
.x23{left:269.849973px;}
.x24{left:275.069987px;}
.xe{left:314.174987px;}
.x16{left:324.074987px;}
.xd{left:373.034987px;}
.x1a{left:408.494973px;}
.x1b{left:413.714987px;}
.xc{left:446.474987px;}
.x9{left:500.144987px;}
.x29{left:524.624973px;}
.x2a{left:535.064987px;}
.x5{left:554.685000px;}
.x1e{left:559.184987px;}
.x10{left:575.925000px;}
.x2d{left:649.364973px;}
.x38{left:657.869973px;}
.x2e{left:659.849987px;}
.x39{left:668.309987px;}
.x25{left:670.289973px;}
.x26{left:675.509987px;}
.x18{left:676.949973px;}
.x36{left:680.909973px;}
.x19{left:682.169987px;}
.x37{left:691.349987px;}
.x34{left:716.729973px;}
.x31{left:720.509973px;}
.x35{left:727.169987px;}
.x32{left:730.949987px;}
.x11{left:777.930000px;}
.x14{left:779.909973px;}
.x15{left:785.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.225067pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.239360pt;}
.ls12{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls3{letter-spacing:7.311360pt;}
.ls4{letter-spacing:13.600000pt;}
.lsc{letter-spacing:35.450027pt;}
.wsa{word-spacing:-14.855467pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._18{margin-left:-4.496000pt;}
._11{margin-left:-3.552000pt;}
._e{margin-left:-2.492160pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._d{width:2.736000pt;}
._3{width:4.325333pt;}
._2{width:5.466667pt;}
._7{width:6.403627pt;}
._12{width:7.394560pt;}
._8{width:8.400000pt;}
._4{width:9.792000pt;}
._c{width:10.988160pt;}
._15{width:12.617813pt;}
._f{width:13.914667pt;}
._6{width:15.980160pt;}
._5{width:16.944000pt;}
._16{width:18.311680pt;}
._17{width:19.842560pt;}
._b{width:20.832000pt;}
._a{width:21.840000pt;}
._19{width:22.759680pt;}
._14{width:23.676160pt;}
._13{width:24.816000pt;}
._1c{width:25.980587pt;}
._9{width:28.032000pt;}
._10{width:29.055147pt;}
._1a{width:47.280640pt;}
._1b{width:48.706560pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.560000pt;}
.y2{bottom:4.800000pt;}
.y4e{bottom:7.680000pt;}
.y37{bottom:16.320000pt;}
.y4f{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y36{bottom:30.080000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y35{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y34{bottom:57.760000pt;}
.y33{bottom:71.520000pt;}
.y32{bottom:85.280000pt;}
.y5b{bottom:98.112000pt;}
.y31{bottom:99.040000pt;}
.y91{bottom:102.112000pt;}
.y5a{bottom:110.432000pt;}
.y30{bottom:112.960000pt;}
.y59{bottom:114.432000pt;}
.y9f{bottom:122.592000pt;}
.y90{bottom:122.752000pt;}
.y58{bottom:123.552000pt;}
.y9e{bottom:126.592000pt;}
.y2f{bottom:126.720000pt;}
.y8f{bottom:126.752000pt;}
.ya9{bottom:132.512000pt;}
.y9a{bottom:134.906667pt;}
.y8e{bottom:135.066667pt;}
.y99{bottom:138.906667pt;}
.y2e{bottom:140.480000pt;}
.y98{bottom:147.226667pt;}
.y8d{bottom:147.386667pt;}
.y57{bottom:149.466667pt;}
.y9d{bottom:151.226667pt;}
.y8c{bottom:151.386667pt;}
.ya3{bottom:151.866667pt;}
.y2d{bottom:154.240000pt;}
.ya4{bottom:157.146667pt;}
.y97{bottom:159.546667pt;}
.y8b{bottom:159.706667pt;}
.y9c{bottom:160.346667pt;}
.y96{bottom:163.546667pt;}
.y2c{bottom:168.160000pt;}
.y56{bottom:168.826667pt;}
.ya2{bottom:171.226667pt;}
.y8a{bottom:171.866667pt;}
.y95{bottom:172.666667pt;}
.ya8{bottom:175.866667pt;}
.y2b{bottom:181.920000pt;}
.y89{bottom:184.186667pt;}
.ya7{bottom:184.986667pt;}
.y54{bottom:188.186667pt;}
.ya1{bottom:190.586667pt;}
.y55{bottom:193.466667pt;}
.y2a{bottom:195.680000pt;}
.y88{bottom:197.306667pt;}
.y53{bottom:207.546667pt;}
.y29{bottom:209.440000pt;}
.y94{bottom:210.106667pt;}
.y28{bottom:223.360000pt;}
.y52{bottom:227.066667pt;}
.y4c{bottom:227.520000pt;}
.y87{bottom:229.466667pt;}
.y27{bottom:237.146667pt;}
.y4b{bottom:239.866667pt;}
.y51{bottom:246.426667pt;}
.y86{bottom:248.826667pt;}
.y26{bottom:250.906667pt;}
.y4a{bottom:252.026667pt;}
.y49{bottom:264.346667pt;}
.y25{bottom:264.666667pt;}
.y50{bottom:265.786667pt;}
.y85{bottom:268.186667pt;}
.y48{bottom:276.666667pt;}
.y24{bottom:278.586667pt;}
.y4d{bottom:279.546667pt;}
.y84{bottom:287.706667pt;}
.y47{bottom:288.826667pt;}
.y23{bottom:292.346667pt;}
.y46{bottom:301.146667pt;}
.y22{bottom:306.106667pt;}
.y83{bottom:307.106667pt;}
.y14{bottom:307.266667pt;}
.y45{bottom:313.466667pt;}
.y21{bottom:319.866667pt;}
.y44{bottom:325.626667pt;}
.y82{bottom:326.466667pt;}
.ya6{bottom:331.746667pt;}
.y20{bottom:333.786667pt;}
.y43{bottom:338.266667pt;}
.y81{bottom:345.826667pt;}
.y1f{bottom:347.546667pt;}
.y42{bottom:352.186667pt;}
.y1e{bottom:361.306667pt;}
.y7f{bottom:365.186667pt;}
.y41{bottom:365.946667pt;}
.y80{bottom:370.466667pt;}
.y1d{bottom:375.066667pt;}
.y40{bottom:379.706667pt;}
.y7e{bottom:384.706667pt;}
.y1c{bottom:388.986667pt;}
.y3f{bottom:393.466667pt;}
.y1b{bottom:402.746667pt;}
.y7d{bottom:404.066667pt;}
.y3e{bottom:407.386667pt;}
.y1a{bottom:416.506667pt;}
.y3d{bottom:421.146667pt;}
.y7b{bottom:423.426667pt;}
.y7c{bottom:428.706667pt;}
.y19{bottom:430.266667pt;}
.y3c{bottom:434.906667pt;}
.y7a{bottom:442.786667pt;}
.y18{bottom:444.186667pt;}
.y3b{bottom:448.346667pt;}
.y17{bottom:457.946667pt;}
.y3a{bottom:460.666667pt;}
.y79{bottom:462.306667pt;}
.y16{bottom:471.746667pt;}
.y39{bottom:472.866667pt;}
.y78{bottom:481.666667pt;}
.y15{bottom:485.506667pt;}
.y77{bottom:501.026667pt;}
.y76{bottom:520.386667pt;}
.y75{bottom:539.773333pt;}
.y74{bottom:559.293333pt;}
.y73{bottom:578.653333pt;}
.y9b{bottom:583.933333pt;}
.y72{bottom:598.013333pt;}
.y70{bottom:617.373333pt;}
.y71{bottom:622.653333pt;}
.y6f{bottom:636.893333pt;}
.y6e{bottom:656.253333pt;}
.y93{bottom:661.533333pt;}
.y6d{bottom:675.613333pt;}
.y6c{bottom:694.973333pt;}
.ya5{bottom:700.253333pt;}
.y6b{bottom:714.333333pt;}
.y6a{bottom:733.853333pt;}
.y68{bottom:753.213333pt;}
.y69{bottom:758.493333pt;}
.y67{bottom:772.573333pt;}
.ya0{bottom:777.893333pt;}
.y66{bottom:791.973333pt;}
.y13{bottom:809.733333pt;}
.y65{bottom:811.493333pt;}
.y12{bottom:828.613333pt;}
.y64{bottom:830.853333pt;}
.y92{bottom:836.133333pt;}
.y11{bottom:846.213333pt;}
.y63{bottom:850.213333pt;}
.y10{bottom:868.453333pt;}
.y62{bottom:869.573333pt;}
.yf{bottom:881.893333pt;}
.y60{bottom:888.933333pt;}
.y61{bottom:894.213333pt;}
.ye{bottom:901.413333pt;}
.y5f{bottom:908.453333pt;}
.yd{bottom:920.773333pt;}
.y5e{bottom:927.813333pt;}
.yc{bottom:941.253333pt;}
.y5d{bottom:947.173333pt;}
.yb{bottom:964.133333pt;}
.y5c{bottom:966.533333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h17{height:19.569375pt;}
.hb{height:24.131250pt;}
.h16{height:25.918750pt;}
.h14{height:27.712000pt;}
.h11{height:29.940625pt;}
.h13{height:30.254687pt;}
.h18{height:31.217812pt;}
.he{height:33.515625pt;}
.h10{height:33.867188pt;}
.h7{height:34.798125pt;}
.h12{height:35.342500pt;}
.hc{height:37.090625pt;}
.h3{height:37.479688pt;}
.hf{height:39.562500pt;}
.h15{height:41.112500pt;}
.h9{height:41.543750pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.ha{height:47.310625pt;}
.h19{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.hd{height:496.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w8{width:102.266667pt;}
.w7{width:179.546667pt;}
.w4{width:226.746667pt;}
.w3{width:333.026667pt;}
.w6{width:408.706667pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x12{left:27.200000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x17{left:99.711988pt;}
.xf{left:103.232000pt;}
.xa{left:104.991988pt;}
.x7{left:117.160000pt;}
.x1f{left:120.031988pt;}
.x3a{left:124.511988pt;}
.x1c{left:142.906643pt;}
.x13{left:144.026655pt;}
.x1d{left:147.546655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x2c{left:174.106655pt;}
.x20{left:192.026655pt;}
.x27{left:206.266643pt;}
.x2b{left:210.106655pt;}
.x2f{left:214.426643pt;}
.x28{left:215.546655pt;}
.x21{left:216.986643pt;}
.x22{left:221.626655pt;}
.x30{left:223.706655pt;}
.x33{left:226.906643pt;}
.xb{left:235.546655pt;}
.x23{left:239.866643pt;}
.x24{left:244.506655pt;}
.xe{left:279.266655pt;}
.x16{left:288.066655pt;}
.xd{left:331.586655pt;}
.x1a{left:363.106643pt;}
.x1b{left:367.746655pt;}
.xc{left:396.866655pt;}
.x9{left:444.573322pt;}
.x29{left:466.333310pt;}
.x2a{left:475.613322pt;}
.x5{left:493.053333pt;}
.x1e{left:497.053322pt;}
.x10{left:511.933333pt;}
.x2d{left:577.213310pt;}
.x38{left:584.773310pt;}
.x2e{left:586.533322pt;}
.x39{left:594.053322pt;}
.x25{left:595.813310pt;}
.x26{left:600.453322pt;}
.x18{left:601.733310pt;}
.x36{left:605.253310pt;}
.x19{left:606.373322pt;}
.x37{left:614.533322pt;}
.x34{left:637.093310pt;}
.x31{left:640.453310pt;}
.x35{left:646.373322pt;}
.x32{left:649.733322pt;}
.x11{left:691.493333pt;}
.x14{left:693.253310pt;}
.x15{left:697.893322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  