
    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_3616a30a26044baa7925833d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_b1a75f4c81f3a392d277319d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_5df078bec8c9c1aedf481eb2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b4423b4295205fc6953c2557.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eb57c08faec76cdd1838bb00.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_29204f6bbb8788fc0427c391.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_032acc9bd7a4e2bb6e1c9d52.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.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(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls14{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.326400px;}
.ls13{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.034560px;}
.ls9{letter-spacing:-0.017280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:39.881280px;}
.ls4{letter-spacing:142.020000px;}
.ls12{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;}
}
.wsb{word-spacing:-66.240000px;}
.wsd{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.450800px;}
.wse{word-spacing:-16.254600px;}
.ws2{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.248000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws9{word-spacing:-11.299440px;}
.wsa{word-spacing:0.000000px;}
._1a{margin-left:-4.825920px;}
._12{margin-left:-3.778080px;}
._4{margin-left:-2.464080px;}
._0{margin-left:-1.192320px;}
._3{width:1.180800px;}
._7{width:2.509920px;}
._f{width:4.018320px;}
._9{width:5.153760px;}
._8{width:6.215040px;}
._14{width:7.283520px;}
._10{width:8.306640px;}
._d{width:9.604800px;}
._c{width:10.637280px;}
._a{width:12.564000px;}
._b{width:13.821120px;}
._15{width:14.928480px;}
._6{width:15.981360px;}
._5{width:17.270640px;}
._11{width:18.286560px;}
._13{width:19.564080px;}
._e{width:20.856240px;}
._18{width:21.991680px;}
._16{width:23.581440px;}
._17{width:24.649440px;}
._19{width:25.966080px;}
._23{width:27.025920px;}
._2a{width:28.350720px;}
._1e{width:29.543040px;}
._1d{width:30.934080px;}
._2b{width:38.021760px;}
._1c{width:39.545280px;}
._1b{width:40.605120px;}
._20{width:69.750720px;}
._1f{width:82.998720px;}
._25{width:182.856000px;}
._2{width:255.180000px;}
._1{width:948.326880px;}
._21{width:1304.940000px;}
._24{width:1370.932320px;}
._26{width:1375.972320px;}
._27{width:1378.312320px;}
._22{width:1393.972320px;}
._29{width:1424.932320px;}
._28{width:1432.312320px;}
.fc6{color:rgb(238,0,0);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y77{bottom:28.080000px;}
.y7b{bottom:28.110000px;}
.y4{bottom:55.620000px;}
.yc6{bottom:112.716000px;}
.y6e{bottom:113.796000px;}
.y3e{bottom:125.676000px;}
.y8d{bottom:125.856000px;}
.yc5{bottom:134.676000px;}
.y6d{bottom:135.576000px;}
.yb0{bottom:137.376000px;}
.y3d{bottom:147.456000px;}
.y8c{bottom:147.636000px;}
.ya3{bottom:150.690000px;}
.yc4{bottom:156.450000px;}
.y6c{bottom:157.350000px;}
.yaf{bottom:159.150000px;}
.y3c{bottom:169.410000px;}
.ya2{bottom:172.470000px;}
.yc3{bottom:178.230000px;}
.y6b{bottom:179.130000px;}
.yae{bottom:180.930000px;}
.y3b{bottom:191.190000px;}
.ya1{bottom:194.250000px;}
.yc2{bottom:200.010000px;}
.y6a{bottom:201.090000px;}
.yad{bottom:202.710000px;}
.y3a{bottom:212.970000px;}
.y8b{bottom:213.150000px;}
.ya0{bottom:216.210000px;}
.yc1{bottom:221.790000px;}
.y69{bottom:222.870000px;}
.yac{bottom:224.490000px;}
.y39{bottom:231.150000px;}
.y8a{bottom:234.930000px;}
.y9f{bottom:237.990000px;}
.yc0{bottom:243.750000px;}
.y68{bottom:244.650000px;}
.y38{bottom:244.830000px;}
.yab{bottom:246.450000px;}
.y89{bottom:256.710000px;}
.y37{bottom:259.410000px;}
.y9e{bottom:259.770000px;}
.ybf{bottom:265.530000px;}
.y67{bottom:266.430000px;}
.yaa{bottom:268.230000px;}
.y36{bottom:276.510000px;}
.y88{bottom:278.490000px;}
.y9d{bottom:281.550000px;}
.ya9{bottom:286.590000px;}
.ybe{bottom:287.310000px;}
.y66{bottom:288.210000px;}
.y35{bottom:293.790000px;}
.y87{bottom:300.270000px;}
.y9c{bottom:303.330000px;}
.ybd{bottom:309.090000px;}
.y65{bottom:310.170000px;}
.y34{bottom:311.070000px;}
.y86{bottom:322.230000px;}
.y9b{bottom:325.290000px;}
.ybc{bottom:327.450000px;}
.y33{bottom:328.350000px;}
.y64{bottom:331.950000px;}
.y85{bottom:344.055000px;}
.y32{bottom:345.675000px;}
.y9a{bottom:347.115000px;}
.y63{bottom:353.775000px;}
.y31{bottom:362.775000px;}
.y84{bottom:365.835000px;}
.y99{bottom:368.895000px;}
.y62{bottom:375.555000px;}
.y30{bottom:380.055000px;}
.y98{bottom:387.075000px;}
.y83{bottom:387.615000px;}
.y2f{bottom:397.335000px;}
.y61{bottom:397.515000px;}
.y82{bottom:409.575000px;}
.y2e{bottom:414.615000px;}
.y60{bottom:419.295000px;}
.y81{bottom:431.355000px;}
.y2d{bottom:431.895000px;}
.y5f{bottom:441.075000px;}
.y2c{bottom:449.175000px;}
.y80{bottom:453.135000px;}
.y5e{bottom:462.855000px;}
.y2b{bottom:466.275000px;}
.y7f{bottom:474.915000px;}
.y2a{bottom:483.555000px;}
.y5d{bottom:484.635000px;}
.ya8{bottom:484.815000px;}
.y7e{bottom:496.695000px;}
.y29{bottom:500.835000px;}
.y5c{bottom:506.595000px;}
.y7d{bottom:513.075000px;}
.y28{bottom:518.115000px;}
.y5b{bottom:528.375000px;}
.ybb{bottom:534.315000px;}
.y27{bottom:535.395000px;}
.y5a{bottom:550.155000px;}
.y26{bottom:552.675000px;}
.yba{bottom:556.095000px;}
.y7c{bottom:557.355000px;}
.y25{bottom:569.775000px;}
.y59{bottom:571.935000px;}
.ya7{bottom:572.115000px;}
.yb9{bottom:577.875000px;}
.y7a{bottom:580.035000px;}
.y24{bottom:587.055000px;}
.y97{bottom:589.395000px;}
.y58{bottom:593.895000px;}
.yb8{bottom:599.655000px;}
.y23{bottom:604.365000px;}
.y96{bottom:611.205000px;}
.y57{bottom:615.705000px;}
.y22{bottom:621.645000px;}
.y79{bottom:624.345000px;}
.y95{bottom:632.985000px;}
.ya6{bottom:634.065000px;}
.y56{bottom:637.485000px;}
.y21{bottom:638.925000px;}
.yb7{bottom:643.425000px;}
.y78{bottom:647.025000px;}
.y94{bottom:654.765000px;}
.y20{bottom:656.025000px;}
.y55{bottom:659.265000px;}
.yb6{bottom:665.205000px;}
.y76{bottom:669.525000px;}
.y1f{bottom:673.305000px;}
.y93{bottom:676.725000px;}
.y54{bottom:681.045000px;}
.yb5{bottom:686.985000px;}
.y1e{bottom:690.585000px;}
.y92{bottom:698.505000px;}
.y53{bottom:703.005000px;}
.yb4{bottom:705.345000px;}
.y1d{bottom:707.865000px;}
.y75{bottom:713.985000px;}
.y91{bottom:720.285000px;}
.y52{bottom:724.785000px;}
.y1c{bottom:725.145000px;}
.y74{bottom:736.485000px;}
.y90{bottom:742.065000px;}
.y1b{bottom:742.425000px;}
.y51{bottom:746.565000px;}
.y73{bottom:758.985000px;}
.y1a{bottom:759.525000px;}
.y8f{bottom:763.845000px;}
.y50{bottom:768.345000px;}
.y19{bottom:776.805000px;}
.y72{bottom:781.665000px;}
.y8e{bottom:782.205000px;}
.y4f{bottom:790.125000px;}
.y18{bottom:794.445000px;}
.y71{bottom:804.165000px;}
.y4e{bottom:812.085000px;}
.y17{bottom:812.805000px;}
.y6f{bottom:826.845000px;}
.y16{bottom:828.285000px;}
.y4d{bottom:833.865000px;}
.y15{bottom:843.765000px;}
.y4c{bottom:855.645000px;}
.y14{bottom:859.245000px;}
.y13{bottom:874.950000px;}
.y4b{bottom:877.470000px;}
.ya5{bottom:877.650000px;}
.y12{bottom:891.150000px;}
.y4a{bottom:899.430000px;}
.y11{bottom:910.230000px;}
.yb3{bottom:912.210000px;}
.y49{bottom:921.210000px;}
.y10{bottom:929.130000px;}
.yb2{bottom:933.990000px;}
.y48{bottom:942.990000px;}
.yf{bottom:948.030000px;}
.yb1{bottom:952.350000px;}
.ya4{bottom:961.350000px;}
.y47{bottom:964.770000px;}
.ye{bottom:967.110000px;}
.yd{bottom:986.010000px;}
.y46{bottom:986.550000px;}
.yc{bottom:1005.450000px;}
.y45{bottom:1008.510000px;}
.yb{bottom:1027.950000px;}
.y44{bottom:1030.290000px;}
.ya{bottom:1050.270000px;}
.y43{bottom:1052.070000px;}
.y9{bottom:1071.870000px;}
.y42{bottom:1073.850000px;}
.y8{bottom:1089.150000px;}
.y41{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.y40{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.y3f{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1169.640000px;}
.y1{bottom:1184.760000px;}
.h10{height:21.780000px;}
.h11{height:21.960000px;}
.h2{height:25.020000px;}
.he{height:34.036523px;}
.hf{height:36.462656px;}
.ha{height:37.705078px;}
.h5{height:39.760312px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.h12{height:43.560000px;}
.h13{height:43.596000px;}
.hb{height:46.251562px;}
.h3{height:46.380937px;}
.h9{height:46.736719px;}
.h14{height:48.224531px;}
.hd{height:49.255313px;}
.h4{height:50.068125px;}
.h8{height:54.596250px;}
.h7{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:44.280000px;}
.w2{width:53.100000px;}
.w6{width:284.070000px;}
.w7{width:345.675000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:10.080000px;}
.x13{left:71.460000px;}
.x1{left:108.036000px;}
.xa{left:118.475987px;}
.x6{left:124.595987px;}
.xc{left:133.955987px;}
.x9{left:135.395987px;}
.xe{left:136.475987px;}
.x1b{left:140.075987px;}
.xd{left:142.415987px;}
.x15{left:144.390000px;}
.x12{left:153.930000px;}
.x3{left:161.130000px;}
.xb{left:183.989987px;}
.x17{left:216.029987px;}
.x16{left:332.894987px;}
.x18{left:342.794987px;}
.x1a{left:353.234987px;}
.x7{left:362.594987px;}
.x19{left:373.754987px;}
.xf{left:386.894987px;}
.x11{left:418.574987px;}
.x10{left:420.194987px;}
.x14{left:438.735000px;}
.x8{left:441.974987px;}
.x5{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.290133pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.030720pt;}
.ls9{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:35.450027pt;}
.ls4{letter-spacing:126.240000pt;}
.ls12{letter-spacing:177.258667pt;}
.wsb{word-spacing:-58.880000pt;}
.wsd{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.622933pt;}
.wse{word-spacing:-14.448533pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.776000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws9{word-spacing:-10.043947pt;}
.wsa{word-spacing:0.000000pt;}
._1a{margin-left:-4.289707pt;}
._12{margin-left:-3.358293pt;}
._4{margin-left:-2.190293pt;}
._0{margin-left:-1.059840pt;}
._3{width:1.049600pt;}
._7{width:2.231040pt;}
._f{width:3.571840pt;}
._9{width:4.581120pt;}
._8{width:5.524480pt;}
._14{width:6.474240pt;}
._10{width:7.383680pt;}
._d{width:8.537600pt;}
._c{width:9.455360pt;}
._a{width:11.168000pt;}
._b{width:12.285440pt;}
._15{width:13.269760pt;}
._6{width:14.205653pt;}
._5{width:15.351680pt;}
._11{width:16.254720pt;}
._13{width:17.390293pt;}
._e{width:18.538880pt;}
._18{width:19.548160pt;}
._16{width:20.961280pt;}
._17{width:21.910613pt;}
._19{width:23.080960pt;}
._23{width:24.023040pt;}
._2a{width:25.200640pt;}
._1e{width:26.260480pt;}
._1d{width:27.496960pt;}
._2b{width:33.797120pt;}
._1c{width:35.151360pt;}
._1b{width:36.093440pt;}
._20{width:62.000640pt;}
._1f{width:73.776640pt;}
._25{width:162.538667pt;}
._2{width:226.826667pt;}
._1{width:842.957227pt;}
._21{width:1159.946667pt;}
._24{width:1218.606507pt;}
._26{width:1223.086507pt;}
._27{width:1225.166507pt;}
._22{width:1239.086507pt;}
._29{width:1266.606507pt;}
._28{width:1273.166507pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y77{bottom:24.960000pt;}
.y7b{bottom:24.986667pt;}
.y4{bottom:49.440000pt;}
.yc6{bottom:100.192000pt;}
.y6e{bottom:101.152000pt;}
.y3e{bottom:111.712000pt;}
.y8d{bottom:111.872000pt;}
.yc5{bottom:119.712000pt;}
.y6d{bottom:120.512000pt;}
.yb0{bottom:122.112000pt;}
.y3d{bottom:131.072000pt;}
.y8c{bottom:131.232000pt;}
.ya3{bottom:133.946667pt;}
.yc4{bottom:139.066667pt;}
.y6c{bottom:139.866667pt;}
.yaf{bottom:141.466667pt;}
.y3c{bottom:150.586667pt;}
.ya2{bottom:153.306667pt;}
.yc3{bottom:158.426667pt;}
.y6b{bottom:159.226667pt;}
.yae{bottom:160.826667pt;}
.y3b{bottom:169.946667pt;}
.ya1{bottom:172.666667pt;}
.yc2{bottom:177.786667pt;}
.y6a{bottom:178.746667pt;}
.yad{bottom:180.186667pt;}
.y3a{bottom:189.306667pt;}
.y8b{bottom:189.466667pt;}
.ya0{bottom:192.186667pt;}
.yc1{bottom:197.146667pt;}
.y69{bottom:198.106667pt;}
.yac{bottom:199.546667pt;}
.y39{bottom:205.466667pt;}
.y8a{bottom:208.826667pt;}
.y9f{bottom:211.546667pt;}
.yc0{bottom:216.666667pt;}
.y68{bottom:217.466667pt;}
.y38{bottom:217.626667pt;}
.yab{bottom:219.066667pt;}
.y89{bottom:228.186667pt;}
.y37{bottom:230.586667pt;}
.y9e{bottom:230.906667pt;}
.ybf{bottom:236.026667pt;}
.y67{bottom:236.826667pt;}
.yaa{bottom:238.426667pt;}
.y36{bottom:245.786667pt;}
.y88{bottom:247.546667pt;}
.y9d{bottom:250.266667pt;}
.ya9{bottom:254.746667pt;}
.ybe{bottom:255.386667pt;}
.y66{bottom:256.186667pt;}
.y35{bottom:261.146667pt;}
.y87{bottom:266.906667pt;}
.y9c{bottom:269.626667pt;}
.ybd{bottom:274.746667pt;}
.y65{bottom:275.706667pt;}
.y34{bottom:276.506667pt;}
.y86{bottom:286.426667pt;}
.y9b{bottom:289.146667pt;}
.ybc{bottom:291.066667pt;}
.y33{bottom:291.866667pt;}
.y64{bottom:295.066667pt;}
.y85{bottom:305.826667pt;}
.y32{bottom:307.266667pt;}
.y9a{bottom:308.546667pt;}
.y63{bottom:314.466667pt;}
.y31{bottom:322.466667pt;}
.y84{bottom:325.186667pt;}
.y99{bottom:327.906667pt;}
.y62{bottom:333.826667pt;}
.y30{bottom:337.826667pt;}
.y98{bottom:344.066667pt;}
.y83{bottom:344.546667pt;}
.y2f{bottom:353.186667pt;}
.y61{bottom:353.346667pt;}
.y82{bottom:364.066667pt;}
.y2e{bottom:368.546667pt;}
.y60{bottom:372.706667pt;}
.y81{bottom:383.426667pt;}
.y2d{bottom:383.906667pt;}
.y5f{bottom:392.066667pt;}
.y2c{bottom:399.266667pt;}
.y80{bottom:402.786667pt;}
.y5e{bottom:411.426667pt;}
.y2b{bottom:414.466667pt;}
.y7f{bottom:422.146667pt;}
.y2a{bottom:429.826667pt;}
.y5d{bottom:430.786667pt;}
.ya8{bottom:430.946667pt;}
.y7e{bottom:441.506667pt;}
.y29{bottom:445.186667pt;}
.y5c{bottom:450.306667pt;}
.y7d{bottom:456.066667pt;}
.y28{bottom:460.546667pt;}
.y5b{bottom:469.666667pt;}
.ybb{bottom:474.946667pt;}
.y27{bottom:475.906667pt;}
.y5a{bottom:489.026667pt;}
.y26{bottom:491.266667pt;}
.yba{bottom:494.306667pt;}
.y7c{bottom:495.426667pt;}
.y25{bottom:506.466667pt;}
.y59{bottom:508.386667pt;}
.ya7{bottom:508.546667pt;}
.yb9{bottom:513.666667pt;}
.y7a{bottom:515.586667pt;}
.y24{bottom:521.826667pt;}
.y97{bottom:523.906667pt;}
.y58{bottom:527.906667pt;}
.yb8{bottom:533.026667pt;}
.y23{bottom:537.213333pt;}
.y96{bottom:543.293333pt;}
.y57{bottom:547.293333pt;}
.y22{bottom:552.573333pt;}
.y79{bottom:554.973333pt;}
.y95{bottom:562.653333pt;}
.ya6{bottom:563.613333pt;}
.y56{bottom:566.653333pt;}
.y21{bottom:567.933333pt;}
.yb7{bottom:571.933333pt;}
.y78{bottom:575.133333pt;}
.y94{bottom:582.013333pt;}
.y20{bottom:583.133333pt;}
.y55{bottom:586.013333pt;}
.yb6{bottom:591.293333pt;}
.y76{bottom:595.133333pt;}
.y1f{bottom:598.493333pt;}
.y93{bottom:601.533333pt;}
.y54{bottom:605.373333pt;}
.yb5{bottom:610.653333pt;}
.y1e{bottom:613.853333pt;}
.y92{bottom:620.893333pt;}
.y53{bottom:624.893333pt;}
.yb4{bottom:626.973333pt;}
.y1d{bottom:629.213333pt;}
.y75{bottom:634.653333pt;}
.y91{bottom:640.253333pt;}
.y52{bottom:644.253333pt;}
.y1c{bottom:644.573333pt;}
.y74{bottom:654.653333pt;}
.y90{bottom:659.613333pt;}
.y1b{bottom:659.933333pt;}
.y51{bottom:663.613333pt;}
.y73{bottom:674.653333pt;}
.y1a{bottom:675.133333pt;}
.y8f{bottom:678.973333pt;}
.y50{bottom:682.973333pt;}
.y19{bottom:690.493333pt;}
.y72{bottom:694.813333pt;}
.y8e{bottom:695.293333pt;}
.y4f{bottom:702.333333pt;}
.y18{bottom:706.173333pt;}
.y71{bottom:714.813333pt;}
.y4e{bottom:721.853333pt;}
.y17{bottom:722.493333pt;}
.y6f{bottom:734.973333pt;}
.y16{bottom:736.253333pt;}
.y4d{bottom:741.213333pt;}
.y15{bottom:750.013333pt;}
.y4c{bottom:760.573333pt;}
.y14{bottom:763.773333pt;}
.y13{bottom:777.733333pt;}
.y4b{bottom:779.973333pt;}
.ya5{bottom:780.133333pt;}
.y12{bottom:792.133333pt;}
.y4a{bottom:799.493333pt;}
.y11{bottom:809.093333pt;}
.yb3{bottom:810.853333pt;}
.y49{bottom:818.853333pt;}
.y10{bottom:825.893333pt;}
.yb2{bottom:830.213333pt;}
.y48{bottom:838.213333pt;}
.yf{bottom:842.693333pt;}
.yb1{bottom:846.533333pt;}
.ya4{bottom:854.533333pt;}
.y47{bottom:857.573333pt;}
.ye{bottom:859.653333pt;}
.yd{bottom:876.453333pt;}
.y46{bottom:876.933333pt;}
.yc{bottom:893.733333pt;}
.y45{bottom:896.453333pt;}
.yb{bottom:913.733333pt;}
.y44{bottom:915.813333pt;}
.ya{bottom:933.573333pt;}
.y43{bottom:935.173333pt;}
.y9{bottom:952.773333pt;}
.y42{bottom:954.533333pt;}
.y8{bottom:968.133333pt;}
.y41{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.y40{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.y3f{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1039.680000pt;}
.y1{bottom:1053.120000pt;}
.h10{height:19.360000pt;}
.h11{height:19.520000pt;}
.h2{height:22.240000pt;}
.he{height:30.254687pt;}
.hf{height:32.411250pt;}
.ha{height:33.515625pt;}
.h5{height:35.342500pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.h12{height:38.720000pt;}
.h13{height:38.752000pt;}
.hb{height:41.112500pt;}
.h3{height:41.227500pt;}
.h9{height:41.543750pt;}
.h14{height:42.866250pt;}
.hd{height:43.782500pt;}
.h4{height:44.505000pt;}
.h8{height:48.530000pt;}
.h7{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:39.360000pt;}
.w2{width:47.200000pt;}
.w6{width:252.506667pt;}
.w7{width:307.266667pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.960000pt;}
.x13{left:63.520000pt;}
.x1{left:96.032000pt;}
.xa{left:105.311988pt;}
.x6{left:110.751988pt;}
.xc{left:119.071988pt;}
.x9{left:120.351988pt;}
.xe{left:121.311988pt;}
.x1b{left:124.511988pt;}
.xd{left:126.591988pt;}
.x15{left:128.346667pt;}
.x12{left:136.826667pt;}
.x3{left:143.226667pt;}
.xb{left:163.546655pt;}
.x17{left:192.026655pt;}
.x16{left:295.906655pt;}
.x18{left:304.706655pt;}
.x1a{left:313.986655pt;}
.x7{left:322.306655pt;}
.x19{left:332.226655pt;}
.xf{left:343.906655pt;}
.x11{left:372.066655pt;}
.x10{left:373.506655pt;}
.x14{left:389.986667pt;}
.x8{left:392.866655pt;}
.x5{left:396.866655pt;}
}




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