
    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_0b0f02851a3ceb093d6bdfff.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_2eb00f2a9e7675c1ceefe391.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_6193fc93719873dbca485474.woff2')format("woff");}.ff3{font-family:ff3;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;}
@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_6e402f5131fe639326bfdc8f.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_112a585ff3abf47cb01350d1.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_6daeb61ccc37154d639a9999.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.942000px;}
.ls10{letter-spacing:-0.672000px;}
.ls7{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.496200px;}
.ls11{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.045360px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls13{letter-spacing:0.045360px;}
.ls0{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.223800px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.540000px;}
.lsc{letter-spacing:3.060000px;}
.ls17{letter-spacing:8.640000px;}
.ls15{letter-spacing:10.080000px;}
.ls14{letter-spacing:12.240000px;}
.lsf{letter-spacing:17.460000px;}
.ls5{letter-spacing:199.416000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-16.560000px;}
.wse{word-spacing:-16.407600px;}
.wsf{word-spacing:-16.102200px;}
.ws0{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.283800px;}
.wsd{word-spacing:-12.105360px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:-12.014640px;}
.wsa{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.563800px;}
.wsb{word-spacing:-11.388000px;}
.wsc{word-spacing:-11.118000px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-4.086720px;}
._b{margin-left:-2.479680px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._2{width:2.344080px;}
._a{width:4.212000px;}
._c{width:5.233440px;}
._4{width:6.304320px;}
._3{width:7.320000px;}
._9{width:8.370000px;}
._6{width:10.086960px;}
._5{width:11.232000px;}
._d{width:12.232080px;}
._12{width:13.910400px;}
._8{width:15.830640px;}
._7{width:17.226000px;}
._e{width:18.662400px;}
._1c{width:19.901520px;}
._1a{width:20.931840px;}
._13{width:22.080000px;}
._14{width:23.161920px;}
._1e{width:24.310080px;}
._17{width:25.634880px;}
._16{width:27.092160px;}
._15{width:28.152000px;}
._18{width:29.344320px;}
._f{width:31.104000px;}
._1d{width:32.307840px;}
._21{width:33.669840px;}
._20{width:37.823040px;}
._1f{width:41.940000px;}
._1b{width:46.678080px;}
._19{width:147.668160px;}
._11{width:199.416000px;}
._22{width:2512.725120px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.700000px;}
.y31{bottom:2.880000px;}
.y2{bottom:5.400000px;}
.y45{bottom:13.860000px;}
.y30{bottom:18.360000px;}
.y5{bottom:27.210000px;}
.y8{bottom:29.010000px;}
.y2f{bottom:33.840000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y2e{bottom:49.500000px;}
.yb{bottom:57.420000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y2d{bottom:64.980000px;}
.ya{bottom:75.456000px;}
.y2c{bottom:80.460000px;}
.y2b{bottom:95.940000px;}
.y5a{bottom:110.376000px;}
.y2a{bottom:111.600000px;}
.y59{bottom:114.876000px;}
.yb9{bottom:122.616000px;}
.y9a{bottom:124.236000px;}
.y58{bottom:125.136000px;}
.y29{bottom:127.110000px;}
.ya5{bottom:128.736000px;}
.y99{bottom:137.916000px;}
.yb8{bottom:141.696000px;}
.y98{bottom:142.416000px;}
.y28{bottom:142.590000px;}
.y57{bottom:149.256000px;}
.y97{bottom:151.770000px;}
.y96{bottom:156.270000px;}
.y27{bottom:158.070000px;}
.yb7{bottom:160.590000px;}
.y42{bottom:164.550000px;}
.y95{bottom:165.630000px;}
.yb5{bottom:166.530000px;}
.y56{bottom:168.330000px;}
.yae{bottom:170.130000px;}
.y26{bottom:173.730000px;}
.y41{bottom:178.410000px;}
.y94{bottom:179.310000px;}
.yb6{bottom:179.670000px;}
.ya4{bottom:183.810000px;}
.y55{bottom:187.230000px;}
.y25{bottom:189.210000px;}
.y40{bottom:192.270000px;}
.y93{bottom:193.170000px;}
.ya3{bottom:194.250000px;}
.yad{bottom:197.670000px;}
.yb4{bottom:198.570000px;}
.y24{bottom:204.690000px;}
.y3f{bottom:205.950000px;}
.y54{bottom:206.310000px;}
.y92{bottom:207.030000px;}
.y91{bottom:211.530000px;}
.ya2{bottom:217.470000px;}
.y3e{bottom:219.810000px;}
.y23{bottom:220.170000px;}
.y90{bottom:220.710000px;}
.yac{bottom:221.790000px;}
.y53{bottom:225.210000px;}
.y3d{bottom:233.670000px;}
.y8f{bottom:234.570000px;}
.yb2{bottom:235.650000px;}
.y22{bottom:235.830000px;}
.ya1{bottom:236.550000px;}
.y8e{bottom:239.070000px;}
.y52{bottom:244.110000px;}
.y3c{bottom:247.350000px;}
.y8d{bottom:248.430000px;}
.y21{bottom:251.310000px;}
.ya0{bottom:255.450000px;}
.y3b{bottom:261.210000px;}
.yb1{bottom:261.390000px;}
.y8c{bottom:262.110000px;}
.y51{bottom:263.190000px;}
.y8b{bottom:266.610000px;}
.y20{bottom:266.790000px;}
.y9f{bottom:274.530000px;}
.y3a{bottom:275.070000px;}
.y8a{bottom:276.870000px;}
.y50{bottom:282.090000px;}
.y1f{bottom:282.270000px;}
.y39{bottom:289.290000px;}
.y9e{bottom:293.430000px;}
.y1e{bottom:297.930000px;}
.y4f{bottom:301.170000px;}
.y38{bottom:304.770000px;}
.y89{bottom:312.330000px;}
.y1d{bottom:313.410000px;}
.y4e{bottom:320.070000px;}
.y37{bottom:320.250000px;}
.y1c{bottom:328.890000px;}
.y88{bottom:331.410000px;}
.y36{bottom:335.730000px;}
.y9d{bottom:337.395000px;}
.y4d{bottom:339.015000px;}
.y1b{bottom:344.370000px;}
.y86{bottom:350.355000px;}
.y35{bottom:350.850000px;}
.y87{bottom:356.295000px;}
.y4c{bottom:358.095000px;}
.y1a{bottom:360.030000px;}
.y34{bottom:364.710000px;}
.y85{bottom:369.435000px;}
.y19{bottom:375.510000px;}
.y4b{bottom:376.995000px;}
.y33{bottom:378.570000px;}
.y84{bottom:388.335000px;}
.y18{bottom:391.035000px;}
.y32{bottom:392.295000px;}
.y49{bottom:396.075000px;}
.y4a{bottom:402.015000px;}
.y83{bottom:407.235000px;}
.y48{bottom:414.975000px;}
.y82{bottom:426.315000px;}
.y47{bottom:433.875000px;}
.y80{bottom:445.215000px;}
.y81{bottom:451.155000px;}
.y46{bottom:452.415000px;}
.y7f{bottom:464.295000px;}
.y43{bottom:466.455000px;}
.y7e{bottom:483.195000px;}
.yb0{bottom:489.135000px;}
.y17{bottom:491.655000px;}
.y7d{bottom:502.095000px;}
.yab{bottom:508.035000px;}
.y7c{bottom:521.175000px;}
.y9c{bottom:527.115000px;}
.y7b{bottom:540.075000px;}
.y7a{bottom:559.155000px;}
.yaa{bottom:565.095000px;}
.y79{bottom:578.055000px;}
.y78{bottom:596.955000px;}
.y77{bottom:616.065000px;}
.y76{bottom:634.965000px;}
.ya9{bottom:640.905000px;}
.y75{bottom:654.045000px;}
.y9b{bottom:659.985000px;}
.y74{bottom:672.945000px;}
.y73{bottom:692.025000px;}
.y72{bottom:710.925000px;}
.y71{bottom:729.825000px;}
.y70{bottom:748.905000px;}
.yb3{bottom:754.845000px;}
.y6f{bottom:767.805000px;}
.y6e{bottom:786.885000px;}
.ya8{bottom:792.825000px;}
.y6d{bottom:805.785000px;}
.y6c{bottom:824.685000px;}
.y6b{bottom:843.765000px;}
.y6a{bottom:862.665000px;}
.yaf{bottom:868.605000px;}
.y69{bottom:881.790000px;}
.y16{bottom:898.890000px;}
.y67{bottom:900.690000px;}
.y68{bottom:906.630000px;}
.y15{bottom:917.430000px;}
.y66{bottom:919.590000px;}
.y14{bottom:934.710000px;}
.y64{bottom:938.670000px;}
.y65{bottom:944.610000px;}
.y13{bottom:951.990000px;}
.y63{bottom:957.570000px;}
.y12{bottom:969.630000px;}
.y62{bottom:976.650000px;}
.y11{bottom:988.710000px;}
.y60{bottom:995.550000px;}
.y61{bottom:1001.490000px;}
.y10{bottom:1007.610000px;}
.y5f{bottom:1014.450000px;}
.ya7{bottom:1020.390000px;}
.yf{bottom:1026.690000px;}
.y5e{bottom:1033.530000px;}
.ye{bottom:1045.590000px;}
.y5d{bottom:1052.430000px;}
.ya6{bottom:1058.370000px;}
.yd{bottom:1065.030000px;}
.y5c{bottom:1071.510000px;}
.yc{bottom:1087.530000px;}
.y5b{bottom:1090.410000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h14{height:21.114844px;}
.h11{height:25.200000px;}
.h13{height:29.158594px;}
.h10{height:33.683203px;}
.hf{height:34.036523px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h15{height:39.760312px;}
.h9{height:41.726953px;}
.h3{height:42.164648px;}
.hc{height:44.507812px;}
.ha{height:46.251562px;}
.h4{height:46.736719px;}
.h6{height:48.224531px;}
.h12{height:48.496641px;}
.h5{height:49.255313px;}
.h8{height:54.596250px;}
.h7{height:54.864844px;}
.h2{height:77.436000px;}
.hb{height:403.635000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w7{width:192.270000px;}
.w4{width:255.090000px;}
.w8{width:318.630000px;}
.w3{width:374.655000px;}
.w6{width:490.755000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x16{left:30.600000px;}
.x2{left:70.374000px;}
.x6{left:75.420000px;}
.x1{left:108.036000px;}
.xa{left:110.195987px;}
.xf{left:111.815987px;}
.x14{left:116.136000px;}
.xc{left:119.375987px;}
.x7{left:131.805000px;}
.x41{left:140.075987px;}
.x23{left:161.129987px;}
.x32{left:175.349973px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x1a{left:186.149987px;}
.x35{left:191.369987px;}
.x12{left:193.889987px;}
.x13{left:217.649987px;}
.x2e{left:219.449973px;}
.x36{left:224.489973px;}
.x2a{left:226.829973px;}
.x2f{left:229.889987px;}
.x37{left:234.929987px;}
.x2b{left:237.269987px;}
.xd{left:266.789987px;}
.x33{left:267.869973px;}
.x34{left:278.354987px;}
.x11{left:284.114987px;}
.x18{left:289.334987px;}
.x3e{left:291.314973px;}
.x3f{left:301.754987px;}
.xb{left:306.434987px;}
.x19{left:324.074987px;}
.x30{left:339.914973px;}
.x31{left:350.354987px;}
.x1d{left:369.614973px;}
.x1e{left:374.834987px;}
.x38{left:403.634973px;}
.x1f{left:412.274973px;}
.x39{left:414.074987px;}
.x20{left:417.494987px;}
.x2c{left:427.034973px;}
.x10{left:428.114987px;}
.x2d{left:437.474987px;}
.xe{left:446.474987px;}
.x3a{left:448.094973px;}
.x3b{left:458.534987px;}
.x17{left:490.785000px;}
.x9{left:500.144987px;}
.x3c{left:537.404973px;}
.x21{left:541.004973px;}
.x22{left:546.224987px;}
.x3d{left:547.844987px;}
.x5{left:554.685000px;}
.x1b{left:580.964973px;}
.x1c{left:586.184987px;}
.x15{left:606.885000px;}
.x26{left:677.129973px;}
.x27{left:682.349987px;}
.x24{left:736.889973px;}
.x25{left:742.109987px;}
.x40{left:774.689973px;}
.x28{left:779.909973px;}
.x29{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.837333pt;}
.ls10{letter-spacing:-0.597333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.441067pt;}
.ls11{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.040320pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls13{letter-spacing:0.040320pt;}
.ls0{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.198933pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.480000pt;}
.lsc{letter-spacing:2.720000pt;}
.ls17{letter-spacing:7.680000pt;}
.ls15{letter-spacing:8.960000pt;}
.ls14{letter-spacing:10.880000pt;}
.lsf{letter-spacing:15.520000pt;}
.ls5{letter-spacing:177.258667pt;}
.ws8{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.584533pt;}
.wsf{word-spacing:-14.313067pt;}
.ws0{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.918933pt;}
.wsd{word-spacing:-10.760320pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.679680pt;}
.wsa{word-spacing:-10.400000pt;}
.ws5{word-spacing:-10.278933pt;}
.wsb{word-spacing:-10.122667pt;}
.wsc{word-spacing:-9.882667pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-3.632640pt;}
._b{margin-left:-2.204160pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._2{width:2.083627pt;}
._a{width:3.744000pt;}
._c{width:4.651947pt;}
._4{width:5.603840pt;}
._3{width:6.506667pt;}
._9{width:7.440000pt;}
._6{width:8.966187pt;}
._5{width:9.984000pt;}
._d{width:10.872960pt;}
._12{width:12.364800pt;}
._8{width:14.071680pt;}
._7{width:15.312000pt;}
._e{width:16.588800pt;}
._1c{width:17.690240pt;}
._1a{width:18.606080pt;}
._13{width:19.626667pt;}
._14{width:20.588373pt;}
._1e{width:21.608960pt;}
._17{width:22.786560pt;}
._16{width:24.081920pt;}
._15{width:25.024000pt;}
._18{width:26.083840pt;}
._f{width:27.648000pt;}
._1d{width:28.718080pt;}
._21{width:29.928747pt;}
._20{width:33.620480pt;}
._1f{width:37.280000pt;}
._1b{width:41.491627pt;}
._19{width:131.260587pt;}
._11{width:177.258667pt;}
._22{width:2233.533440pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.400000pt;}
.y31{bottom:2.560000pt;}
.y2{bottom:4.800000pt;}
.y45{bottom:12.320000pt;}
.y30{bottom:16.320000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.786667pt;}
.y2f{bottom:30.080000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y2e{bottom:44.000000pt;}
.yb{bottom:51.040000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y2d{bottom:57.760000pt;}
.ya{bottom:67.072000pt;}
.y2c{bottom:71.520000pt;}
.y2b{bottom:85.280000pt;}
.y5a{bottom:98.112000pt;}
.y2a{bottom:99.200000pt;}
.y59{bottom:102.112000pt;}
.yb9{bottom:108.992000pt;}
.y9a{bottom:110.432000pt;}
.y58{bottom:111.232000pt;}
.y29{bottom:112.986667pt;}
.ya5{bottom:114.432000pt;}
.y99{bottom:122.592000pt;}
.yb8{bottom:125.952000pt;}
.y98{bottom:126.592000pt;}
.y28{bottom:126.746667pt;}
.y57{bottom:132.672000pt;}
.y97{bottom:134.906667pt;}
.y96{bottom:138.906667pt;}
.y27{bottom:140.506667pt;}
.yb7{bottom:142.746667pt;}
.y42{bottom:146.266667pt;}
.y95{bottom:147.226667pt;}
.yb5{bottom:148.026667pt;}
.y56{bottom:149.626667pt;}
.yae{bottom:151.226667pt;}
.y26{bottom:154.426667pt;}
.y41{bottom:158.586667pt;}
.y94{bottom:159.386667pt;}
.yb6{bottom:159.706667pt;}
.ya4{bottom:163.386667pt;}
.y55{bottom:166.426667pt;}
.y25{bottom:168.186667pt;}
.y40{bottom:170.906667pt;}
.y93{bottom:171.706667pt;}
.ya3{bottom:172.666667pt;}
.yad{bottom:175.706667pt;}
.yb4{bottom:176.506667pt;}
.y24{bottom:181.946667pt;}
.y3f{bottom:183.066667pt;}
.y54{bottom:183.386667pt;}
.y92{bottom:184.026667pt;}
.y91{bottom:188.026667pt;}
.ya2{bottom:193.306667pt;}
.y3e{bottom:195.386667pt;}
.y23{bottom:195.706667pt;}
.y90{bottom:196.186667pt;}
.yac{bottom:197.146667pt;}
.y53{bottom:200.186667pt;}
.y3d{bottom:207.706667pt;}
.y8f{bottom:208.506667pt;}
.yb2{bottom:209.466667pt;}
.y22{bottom:209.626667pt;}
.ya1{bottom:210.266667pt;}
.y8e{bottom:212.506667pt;}
.y52{bottom:216.986667pt;}
.y3c{bottom:219.866667pt;}
.y8d{bottom:220.826667pt;}
.y21{bottom:223.386667pt;}
.ya0{bottom:227.066667pt;}
.y3b{bottom:232.186667pt;}
.yb1{bottom:232.346667pt;}
.y8c{bottom:232.986667pt;}
.y51{bottom:233.946667pt;}
.y8b{bottom:236.986667pt;}
.y20{bottom:237.146667pt;}
.y9f{bottom:244.026667pt;}
.y3a{bottom:244.506667pt;}
.y8a{bottom:246.106667pt;}
.y50{bottom:250.746667pt;}
.y1f{bottom:250.906667pt;}
.y39{bottom:257.146667pt;}
.y9e{bottom:260.826667pt;}
.y1e{bottom:264.826667pt;}
.y4f{bottom:267.706667pt;}
.y38{bottom:270.906667pt;}
.y89{bottom:277.626667pt;}
.y1d{bottom:278.586667pt;}
.y4e{bottom:284.506667pt;}
.y37{bottom:284.666667pt;}
.y1c{bottom:292.346667pt;}
.y88{bottom:294.586667pt;}
.y36{bottom:298.426667pt;}
.y9d{bottom:299.906667pt;}
.y4d{bottom:301.346667pt;}
.y1b{bottom:306.106667pt;}
.y86{bottom:311.426667pt;}
.y35{bottom:311.866667pt;}
.y87{bottom:316.706667pt;}
.y4c{bottom:318.306667pt;}
.y1a{bottom:320.026667pt;}
.y34{bottom:324.186667pt;}
.y85{bottom:328.386667pt;}
.y19{bottom:333.786667pt;}
.y4b{bottom:335.106667pt;}
.y33{bottom:336.506667pt;}
.y84{bottom:345.186667pt;}
.y18{bottom:347.586667pt;}
.y32{bottom:348.706667pt;}
.y49{bottom:352.066667pt;}
.y4a{bottom:357.346667pt;}
.y83{bottom:361.986667pt;}
.y48{bottom:368.866667pt;}
.y82{bottom:378.946667pt;}
.y47{bottom:385.666667pt;}
.y80{bottom:395.746667pt;}
.y81{bottom:401.026667pt;}
.y46{bottom:402.146667pt;}
.y7f{bottom:412.706667pt;}
.y43{bottom:414.626667pt;}
.y7e{bottom:429.506667pt;}
.yb0{bottom:434.786667pt;}
.y17{bottom:437.026667pt;}
.y7d{bottom:446.306667pt;}
.yab{bottom:451.586667pt;}
.y7c{bottom:463.266667pt;}
.y9c{bottom:468.546667pt;}
.y7b{bottom:480.066667pt;}
.y7a{bottom:497.026667pt;}
.yaa{bottom:502.306667pt;}
.y79{bottom:513.826667pt;}
.y78{bottom:530.626667pt;}
.y77{bottom:547.613333pt;}
.y76{bottom:564.413333pt;}
.ya9{bottom:569.693333pt;}
.y75{bottom:581.373333pt;}
.y9b{bottom:586.653333pt;}
.y74{bottom:598.173333pt;}
.y73{bottom:615.133333pt;}
.y72{bottom:631.933333pt;}
.y71{bottom:648.733333pt;}
.y70{bottom:665.693333pt;}
.yb3{bottom:670.973333pt;}
.y6f{bottom:682.493333pt;}
.y6e{bottom:699.453333pt;}
.ya8{bottom:704.733333pt;}
.y6d{bottom:716.253333pt;}
.y6c{bottom:733.053333pt;}
.y6b{bottom:750.013333pt;}
.y6a{bottom:766.813333pt;}
.yaf{bottom:772.093333pt;}
.y69{bottom:783.813333pt;}
.y16{bottom:799.013333pt;}
.y67{bottom:800.613333pt;}
.y68{bottom:805.893333pt;}
.y15{bottom:815.493333pt;}
.y66{bottom:817.413333pt;}
.y14{bottom:830.853333pt;}
.y64{bottom:834.373333pt;}
.y65{bottom:839.653333pt;}
.y13{bottom:846.213333pt;}
.y63{bottom:851.173333pt;}
.y12{bottom:861.893333pt;}
.y62{bottom:868.133333pt;}
.y11{bottom:878.853333pt;}
.y60{bottom:884.933333pt;}
.y61{bottom:890.213333pt;}
.y10{bottom:895.653333pt;}
.y5f{bottom:901.733333pt;}
.ya7{bottom:907.013333pt;}
.yf{bottom:912.613333pt;}
.y5e{bottom:918.693333pt;}
.ye{bottom:929.413333pt;}
.y5d{bottom:935.493333pt;}
.ya6{bottom:940.773333pt;}
.yd{bottom:946.693333pt;}
.y5c{bottom:952.453333pt;}
.yc{bottom:966.693333pt;}
.y5b{bottom:969.253333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h14{height:18.768750pt;}
.h11{height:22.400000pt;}
.h13{height:25.918750pt;}
.h10{height:29.940625pt;}
.hf{height:30.254687pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h15{height:35.342500pt;}
.h9{height:37.090625pt;}
.h3{height:37.479688pt;}
.hc{height:39.562500pt;}
.ha{height:41.112500pt;}
.h4{height:41.543750pt;}
.h6{height:42.866250pt;}
.h12{height:43.108125pt;}
.h5{height:43.782500pt;}
.h8{height:48.530000pt;}
.h7{height:48.768750pt;}
.h2{height:68.832000pt;}
.hb{height:358.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w7{width:170.906667pt;}
.w4{width:226.746667pt;}
.w8{width:283.226667pt;}
.w3{width:333.026667pt;}
.w6{width:436.226667pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x16{left:27.200000pt;}
.x2{left:62.554667pt;}
.x6{left:67.040000pt;}
.x1{left:96.032000pt;}
.xa{left:97.951988pt;}
.xf{left:99.391988pt;}
.x14{left:103.232000pt;}
.xc{left:106.111988pt;}
.x7{left:117.160000pt;}
.x41{left:124.511988pt;}
.x23{left:143.226655pt;}
.x32{left:155.866643pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x1a{left:165.466655pt;}
.x35{left:170.106655pt;}
.x12{left:172.346655pt;}
.x13{left:193.466655pt;}
.x2e{left:195.066643pt;}
.x36{left:199.546643pt;}
.x2a{left:201.626643pt;}
.x2f{left:204.346655pt;}
.x37{left:208.826655pt;}
.x2b{left:210.906655pt;}
.xd{left:237.146655pt;}
.x33{left:238.106643pt;}
.x34{left:247.426655pt;}
.x11{left:252.546655pt;}
.x18{left:257.186655pt;}
.x3e{left:258.946643pt;}
.x3f{left:268.226655pt;}
.xb{left:272.386655pt;}
.x19{left:288.066655pt;}
.x30{left:302.146643pt;}
.x31{left:311.426655pt;}
.x1d{left:328.546643pt;}
.x1e{left:333.186655pt;}
.x38{left:358.786643pt;}
.x1f{left:366.466643pt;}
.x39{left:368.066655pt;}
.x20{left:371.106655pt;}
.x2c{left:379.586643pt;}
.x10{left:380.546655pt;}
.x2d{left:388.866655pt;}
.xe{left:396.866655pt;}
.x3a{left:398.306643pt;}
.x3b{left:407.586655pt;}
.x17{left:436.253333pt;}
.x9{left:444.573322pt;}
.x3c{left:477.693310pt;}
.x21{left:480.893310pt;}
.x22{left:485.533322pt;}
.x3d{left:486.973322pt;}
.x5{left:493.053333pt;}
.x1b{left:516.413310pt;}
.x1c{left:521.053322pt;}
.x15{left:539.453333pt;}
.x26{left:601.893310pt;}
.x27{left:606.533322pt;}
.x24{left:655.013310pt;}
.x25{left:659.653322pt;}
.x40{left:688.613310pt;}
.x28{left:693.253310pt;}
.x29{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; }
  