
    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_9ada20717b9ce0f619655dc3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_614580a75a5a16564e7e38c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_549ca17d8cad869da16592c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_97d3564590abc3cc375e88e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5fca59012627676a08cfa663.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_da0e411fb0a505120be50a1d.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_dcb73f963795332dac216fb5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ed7d653f4b3db1cd3fb83c1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-69.120000px;}
.v6{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-60.480000px;}
.v5{vertical-align:-18.000000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.594000px;}
.ls10{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.220800px;}
.lsf{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.027360px;}
.lsb{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.012000px;}
.ls7{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:2.340000px;}
.ls1e{letter-spacing:2.988000px;}
.ls5{letter-spacing:4.500000px;}
.ls1d{letter-spacing:30.348000px;}
.ls8{letter-spacing:52.560000px;}
.lsa{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls16{letter-spacing:213.444000px;}
.ls1a{letter-spacing:562.620000px;}
.ls19{letter-spacing:837.840000px;}
.ls13{letter-spacing:1233.840000px;}
.ls9{letter-spacing:1367.040000px;}
.ls1c{letter-spacing:1383.600000px;}
.ls1b{letter-spacing:1410.960000px;}
.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;}
}
.ws10{word-spacing:-54.018000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.716000px;}
.ws11{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.374000px;}
.wsa{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.wse{word-spacing:-12.906000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._5{width:2.404320px;}
._8{width:3.425040px;}
._9{width:4.756320px;}
._d{width:5.780160px;}
._b{width:7.236000px;}
._a{width:8.316000px;}
._c{width:9.590880px;}
._11{width:11.434560px;}
._7{width:23.394000px;}
._6{width:25.092000px;}
._10{width:683.074320px;}
._12{width:919.357440px;}
._e{width:1041.420000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
._f{width:1580.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y92{bottom:2.880000px;}
.y5f{bottom:3.060000px;}
.ya9{bottom:3.240000px;}
.yac{bottom:3.420000px;}
.y94{bottom:5.220000px;}
.y98{bottom:5.580000px;}
.y96{bottom:5.760000px;}
.y9c{bottom:5.805000px;}
.y61{bottom:6.840000px;}
.y63{bottom:7.200000px;}
.y5d{bottom:10.800000px;}
.y5e{bottom:18.540000px;}
.y2{bottom:57.960000px;}
.y1{bottom:76.860000px;}
.y58{bottom:101.700000px;}
.y39{bottom:107.100000px;}
.y8c{bottom:109.260000px;}
.y57{bottom:113.940000px;}
.y38{bottom:122.580000px;}
.y8b{bottom:124.740000px;}
.y37{bottom:138.456000px;}
.y8a{bottom:140.256000px;}
.y36{bottom:154.110000px;}
.y89{bottom:155.730000px;}
.y35{bottom:169.590000px;}
.y88{bottom:171.390000px;}
.y34{bottom:185.070000px;}
.y87{bottom:187.050000px;}
.y33{bottom:200.550000px;}
.y86{bottom:202.530000px;}
.y32{bottom:216.210000px;}
.y85{bottom:218.010000px;}
.y31{bottom:231.690000px;}
.y84{bottom:233.490000px;}
.y30{bottom:247.170000px;}
.y83{bottom:249.150000px;}
.y2f{bottom:262.650000px;}
.y82{bottom:264.810000px;}
.y2e{bottom:278.310000px;}
.y81{bottom:280.290000px;}
.y2d{bottom:293.790000px;}
.y80{bottom:295.950000px;}
.yb0{bottom:300.630000px;}
.y2c{bottom:309.450000px;}
.yaf{bottom:316.290000px;}
.yd4{bottom:319.170000px;}
.y2b{bottom:324.930000px;}
.y7f{bottom:327.090000px;}
.yae{bottom:329.250000px;}
.yd3{bottom:334.830000px;}
.y2a{bottom:340.410000px;}
.y7e{bottom:342.570000px;}
.yd2{bottom:350.310000px;}
.yad{bottom:354.090000px;}
.y56{bottom:354.810000px;}
.y29{bottom:356.070000px;}
.y7d{bottom:358.050000px;}
.yd1{bottom:365.790000px;}
.y28{bottom:371.550000px;}
.y55{bottom:372.990000px;}
.y7c{bottom:373.530000px;}
.yab{bottom:378.930000px;}
.yd0{bottom:381.270000px;}
.y54{bottom:385.230000px;}
.y27{bottom:387.210000px;}
.y7b{bottom:389.235000px;}
.ycf{bottom:396.795000px;}
.y26{bottom:402.735000px;}
.yaa{bottom:403.995000px;}
.y7a{bottom:404.715000px;}
.yce{bottom:412.455000px;}
.y25{bottom:418.215000px;}
.y79{bottom:420.195000px;}
.ycd{bottom:427.935000px;}
.ya8{bottom:428.835000px;}
.y24{bottom:433.695000px;}
.y78{bottom:435.675000px;}
.ycc{bottom:443.415000px;}
.y23{bottom:449.355000px;}
.y77{bottom:451.335000px;}
.ya7{bottom:453.675000px;}
.ycb{bottom:458.895000px;}
.y22{bottom:464.835000px;}
.y76{bottom:466.815000px;}
.yca{bottom:474.555000px;}
.y21{bottom:480.315000px;}
.y75{bottom:482.295000px;}
.yc9{bottom:490.035000px;}
.y74{bottom:497.955000px;}
.ya6{bottom:504.435000px;}
.yc8{bottom:505.335000px;}
.y20{bottom:511.095000px;}
.y73{bottom:513.435000px;}
.ya5{bottom:520.095000px;}
.y72{bottom:529.095000px;}
.ya4{bottom:535.575000px;}
.yc7{bottom:536.835000px;}
.y1f{bottom:542.235000px;}
.y71{bottom:544.575000px;}
.ya3{bottom:551.055000px;}
.yc6{bottom:552.495000px;}
.y70{bottom:560.055000px;}
.y1e{bottom:560.415000px;}
.ya2{bottom:566.535000px;}
.yc5{bottom:567.975000px;}
.y6f{bottom:575.535000px;}
.ya1{bottom:582.195000px;}
.y1d{bottom:589.395000px;}
.y6e{bottom:591.195000px;}
.ya0{bottom:597.855000px;}
.yc4{bottom:599.295000px;}
.y6d{bottom:606.675000px;}
.y1c{bottom:607.575000px;}
.y9f{bottom:613.335000px;}
.yc3{bottom:614.775000px;}
.y6c{bottom:622.335000px;}
.y1b{bottom:623.055000px;}
.y9e{bottom:625.575000px;}
.yc2{bottom:630.255000px;}
.y6b{bottom:637.815000px;}
.y1a{bottom:638.715000px;}
.yc1{bottom:645.765000px;}
.y6a{bottom:650.265000px;}
.y19{bottom:654.405000px;}
.yc0{bottom:661.425000px;}
.y18{bottom:676.545000px;}
.ybf{bottom:676.905000px;}
.y53{bottom:683.745000px;}
.ybe{bottom:692.385000px;}
.y52{bottom:699.225000px;}
.y17{bottom:703.185000px;}
.ybd{bottom:707.865000px;}
.y51{bottom:714.885000px;}
.y16{bottom:718.665000px;}
.ybc{bottom:723.525000px;}
.y50{bottom:730.005000px;}
.y15{bottom:734.325000px;}
.ybb{bottom:739.005000px;}
.yba{bottom:754.485000px;}
.y4f{bottom:761.685000px;}
.y14{bottom:768.885000px;}
.yb9{bottom:769.785000px;}
.y4e{bottom:777.165000px;}
.y13{bottom:789.045000px;}
.y4d{bottom:792.645000px;}
.yb8{bottom:801.285000px;}
.y4c{bottom:808.125000px;}
.yb7{bottom:816.945000px;}
.y12{bottom:821.445000px;}
.y4b{bottom:823.785000px;}
.yb6{bottom:832.425000px;}
.y11{bottom:839.265000px;}
.yb5{bottom:847.905000px;}
.y10{bottom:852.405000px;}
.y4a{bottom:854.925000px;}
.yb4{bottom:863.565000px;}
.y49{bottom:870.405000px;}
.y9d{bottom:875.085000px;}
.yf{bottom:877.785000px;}
.yb3{bottom:879.045000px;}
.y48{bottom:886.065000px;}
.y69{bottom:886.245000px;}
.y9b{bottom:888.045000px;}
.yb2{bottom:894.750000px;}
.y47{bottom:898.350000px;}
.y68{bottom:904.470000px;}
.yb1{bottom:907.170000px;}
.y9a{bottom:909.330000px;}
.ye{bottom:916.890000px;}
.y67{bottom:917.430000px;}
.y99{bottom:930.390000px;}
.yd{bottom:941.190000px;}
.y66{bottom:941.550000px;}
.y97{bottom:951.630000px;}
.y65{bottom:965.490000px;}
.y95{bottom:972.690000px;}
.y64{bottom:989.430000px;}
.y93{bottom:993.930000px;}
.yc{bottom:1000.590000px;}
.y46{bottom:1003.290000px;}
.y62{bottom:1013.550000px;}
.y91{bottom:1014.990000px;}
.y45{bottom:1018.770000px;}
.y9{bottom:1034.070000px;}
.y44{bottom:1034.430000px;}
.y60{bottom:1037.490000px;}
.yb{bottom:1039.290000px;}
.y43{bottom:1049.910000px;}
.y8{bottom:1057.290000px;}
.y5c{bottom:1061.430000px;}
.y42{bottom:1065.390000px;}
.y90{bottom:1065.750000px;}
.ya{bottom:1071.330000px;}
.y41{bottom:1081.050000px;}
.y8f{bottom:1081.230000px;}
.y7{bottom:1086.630000px;}
.y40{bottom:1096.530000px;}
.y8e{bottom:1096.710000px;}
.y6{bottom:1105.710000px;}
.y3f{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.y3e{bottom:1127.310000px;}
.y5b{bottom:1127.670000px;}
.y8d{bottom:1127.850000px;}
.y4{bottom:1140.270000px;}
.y3d{bottom:1142.970000px;}
.y5a{bottom:1143.330000px;}
.y3{bottom:1158.300000px;}
.y3c{bottom:1158.660000px;}
.y59{bottom:1159.020000px;}
.y3b{bottom:1175.220000px;}
.y3a{bottom:1193.760000px;}
.hb{height:12.006914px;}
.h18{height:20.340000px;}
.h19{height:20.520000px;}
.h1a{height:20.556000px;}
.h16{height:23.220000px;}
.h17{height:23.400000px;}
.h1b{height:24.120000px;}
.h1c{height:24.336000px;}
.h15{height:31.140000px;}
.hd{height:35.314453px;}
.h11{height:38.158594px;}
.h12{height:47.344922px;}
.h7{height:48.616875px;}
.he{height:52.971680px;}
.h13{height:52.998047px;}
.hc{height:53.314453px;}
.h14{height:53.332031px;}
.hf{height:54.421875px;}
.h1d{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h4{height:60.226875px;}
.h10{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:128.376000px;}
.wc{width:135.720000px;}
.wb{width:135.756000px;}
.wa{width:135.936000px;}
.w3{width:162.570000px;}
.w5{width:169.230000px;}
.w4{width:170.490000px;}
.w7{width:173.370000px;}
.w9{width:174.630000px;}
.w8{width:191.370000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x27{left:8.280000px;}
.x17{left:11.700000px;}
.x20{left:12.780000px;}
.x1b{left:16.920000px;}
.x19{left:26.640000px;}
.x2{left:30.059987px;}
.x1c{left:33.120000px;}
.x1e{left:38.340000px;}
.x15{left:39.774000px;}
.x2a{left:43.740000px;}
.x21{left:45.720000px;}
.xc{left:46.799987px;}
.x1f{left:48.600000px;}
.xe{left:50.399987px;}
.x8{left:51.479987px;}
.x2c{left:61.560000px;}
.x1a{left:66.780000px;}
.x22{left:70.200000px;}
.x2d{left:71.460000px;}
.x1d{left:74.874000px;}
.x2e{left:77.250000px;}
.x2b{left:80.325000px;}
.x28{left:83.550000px;}
.x34{left:86.400000px;}
.x35{left:90.900000px;}
.x36{left:93.090000px;}
.x3a{left:101.375987px;}
.x14{left:137.196000px;}
.x30{left:161.490000px;}
.x25{left:174.630000px;}
.x5{left:244.109987px;}
.x3{left:270.254987px;}
.xa{left:285.374987px;}
.x4{left:290.594987px;}
.x16{left:300.135000px;}
.x24{left:302.654987px;}
.x2f{left:319.034987px;}
.x13{left:320.294987px;}
.x38{left:323.714987px;}
.x31{left:336.495000px;}
.x26{left:348.375000px;}
.xf{left:355.754987px;}
.xd{left:412.454987px;}
.x9{left:422.534987px;}
.x39{left:430.844987px;}
.x1{left:440.744987px;}
.xb{left:449.204987px;}
.x18{left:470.985000px;}
.x32{left:472.785000px;}
.x6{left:478.904987px;}
.x7{left:506.444987px;}
.x29{left:540.105000px;}
.x33{left:608.910000px;}
.x10{left:640.949987px;}
.x12{left:651.749987px;}
.x37{left:657.329987px;}
.x11{left:667.409987px;}
.x23{left:677.669987px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v6{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-53.760000pt;}
.v5{vertical-align:-16.000000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.528000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.196267pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.024320pt;}
.lsb{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.010667pt;}
.ls7{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:2.080000pt;}
.ls1e{letter-spacing:2.656000pt;}
.ls5{letter-spacing:4.000000pt;}
.ls1d{letter-spacing:26.976000pt;}
.ls8{letter-spacing:46.720000pt;}
.lsa{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls16{letter-spacing:189.728000pt;}
.ls1a{letter-spacing:500.106667pt;}
.ls19{letter-spacing:744.746667pt;}
.ls13{letter-spacing:1096.746667pt;}
.ls9{letter-spacing:1215.146667pt;}
.ls1c{letter-spacing:1229.866667pt;}
.ls1b{letter-spacing:1254.186667pt;}
.ws10{word-spacing:-48.016000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.192000pt;}
.ws11{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.888000pt;}
.wsa{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.472000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._5{width:2.137173pt;}
._8{width:3.044480pt;}
._9{width:4.227840pt;}
._d{width:5.137920pt;}
._b{width:6.432000pt;}
._a{width:7.392000pt;}
._c{width:8.525227pt;}
._11{width:10.164053pt;}
._7{width:20.794667pt;}
._6{width:22.304000pt;}
._10{width:607.177173pt;}
._12{width:817.206613pt;}
._e{width:925.706667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
._f{width:1404.853333pt;}
.fs8{font-size:10.880000pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:2.560000pt;}
.y5f{bottom:2.720000pt;}
.ya9{bottom:2.880000pt;}
.yac{bottom:3.040000pt;}
.y94{bottom:4.640000pt;}
.y98{bottom:4.960000pt;}
.y96{bottom:5.120000pt;}
.y9c{bottom:5.160000pt;}
.y61{bottom:6.080000pt;}
.y63{bottom:6.400000pt;}
.y5d{bottom:9.600000pt;}
.y5e{bottom:16.480000pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:68.320000pt;}
.y58{bottom:90.400000pt;}
.y39{bottom:95.200000pt;}
.y8c{bottom:97.120000pt;}
.y57{bottom:101.280000pt;}
.y38{bottom:108.960000pt;}
.y8b{bottom:110.880000pt;}
.y37{bottom:123.072000pt;}
.y8a{bottom:124.672000pt;}
.y36{bottom:136.986667pt;}
.y89{bottom:138.426667pt;}
.y35{bottom:150.746667pt;}
.y88{bottom:152.346667pt;}
.y34{bottom:164.506667pt;}
.y87{bottom:166.266667pt;}
.y33{bottom:178.266667pt;}
.y86{bottom:180.026667pt;}
.y32{bottom:192.186667pt;}
.y85{bottom:193.786667pt;}
.y31{bottom:205.946667pt;}
.y84{bottom:207.546667pt;}
.y30{bottom:219.706667pt;}
.y83{bottom:221.466667pt;}
.y2f{bottom:233.466667pt;}
.y82{bottom:235.386667pt;}
.y2e{bottom:247.386667pt;}
.y81{bottom:249.146667pt;}
.y2d{bottom:261.146667pt;}
.y80{bottom:263.066667pt;}
.yb0{bottom:267.226667pt;}
.y2c{bottom:275.066667pt;}
.yaf{bottom:281.146667pt;}
.yd4{bottom:283.706667pt;}
.y2b{bottom:288.826667pt;}
.y7f{bottom:290.746667pt;}
.yae{bottom:292.666667pt;}
.yd3{bottom:297.626667pt;}
.y2a{bottom:302.586667pt;}
.y7e{bottom:304.506667pt;}
.yd2{bottom:311.386667pt;}
.yad{bottom:314.746667pt;}
.y56{bottom:315.386667pt;}
.y29{bottom:316.506667pt;}
.y7d{bottom:318.266667pt;}
.yd1{bottom:325.146667pt;}
.y28{bottom:330.266667pt;}
.y55{bottom:331.546667pt;}
.y7c{bottom:332.026667pt;}
.yab{bottom:336.826667pt;}
.yd0{bottom:338.906667pt;}
.y54{bottom:342.426667pt;}
.y27{bottom:344.186667pt;}
.y7b{bottom:345.986667pt;}
.ycf{bottom:352.706667pt;}
.y26{bottom:357.986667pt;}
.yaa{bottom:359.106667pt;}
.y7a{bottom:359.746667pt;}
.yce{bottom:366.626667pt;}
.y25{bottom:371.746667pt;}
.y79{bottom:373.506667pt;}
.ycd{bottom:380.386667pt;}
.ya8{bottom:381.186667pt;}
.y24{bottom:385.506667pt;}
.y78{bottom:387.266667pt;}
.ycc{bottom:394.146667pt;}
.y23{bottom:399.426667pt;}
.y77{bottom:401.186667pt;}
.ya7{bottom:403.266667pt;}
.ycb{bottom:407.906667pt;}
.y22{bottom:413.186667pt;}
.y76{bottom:414.946667pt;}
.yca{bottom:421.826667pt;}
.y21{bottom:426.946667pt;}
.y75{bottom:428.706667pt;}
.yc9{bottom:435.586667pt;}
.y74{bottom:442.626667pt;}
.ya6{bottom:448.386667pt;}
.yc8{bottom:449.186667pt;}
.y20{bottom:454.306667pt;}
.y73{bottom:456.386667pt;}
.ya5{bottom:462.306667pt;}
.y72{bottom:470.306667pt;}
.ya4{bottom:476.066667pt;}
.yc7{bottom:477.186667pt;}
.y1f{bottom:481.986667pt;}
.y71{bottom:484.066667pt;}
.ya3{bottom:489.826667pt;}
.yc6{bottom:491.106667pt;}
.y70{bottom:497.826667pt;}
.y1e{bottom:498.146667pt;}
.ya2{bottom:503.586667pt;}
.yc5{bottom:504.866667pt;}
.y6f{bottom:511.586667pt;}
.ya1{bottom:517.506667pt;}
.y1d{bottom:523.906667pt;}
.y6e{bottom:525.506667pt;}
.ya0{bottom:531.426667pt;}
.yc4{bottom:532.706667pt;}
.y6d{bottom:539.266667pt;}
.y1c{bottom:540.066667pt;}
.y9f{bottom:545.186667pt;}
.yc3{bottom:546.466667pt;}
.y6c{bottom:553.186667pt;}
.y1b{bottom:553.826667pt;}
.y9e{bottom:556.066667pt;}
.yc2{bottom:560.226667pt;}
.y6b{bottom:566.946667pt;}
.y1a{bottom:567.746667pt;}
.yc1{bottom:574.013333pt;}
.y6a{bottom:578.013333pt;}
.y19{bottom:581.693333pt;}
.yc0{bottom:587.933333pt;}
.y18{bottom:601.373333pt;}
.ybf{bottom:601.693333pt;}
.y53{bottom:607.773333pt;}
.ybe{bottom:615.453333pt;}
.y52{bottom:621.533333pt;}
.y17{bottom:625.053333pt;}
.ybd{bottom:629.213333pt;}
.y51{bottom:635.453333pt;}
.y16{bottom:638.813333pt;}
.ybc{bottom:643.133333pt;}
.y50{bottom:648.893333pt;}
.y15{bottom:652.733333pt;}
.ybb{bottom:656.893333pt;}
.yba{bottom:670.653333pt;}
.y4f{bottom:677.053333pt;}
.y14{bottom:683.453333pt;}
.yb9{bottom:684.253333pt;}
.y4e{bottom:690.813333pt;}
.y13{bottom:701.373333pt;}
.y4d{bottom:704.573333pt;}
.yb8{bottom:712.253333pt;}
.y4c{bottom:718.333333pt;}
.yb7{bottom:726.173333pt;}
.y12{bottom:730.173333pt;}
.y4b{bottom:732.253333pt;}
.yb6{bottom:739.933333pt;}
.y11{bottom:746.013333pt;}
.yb5{bottom:753.693333pt;}
.y10{bottom:757.693333pt;}
.y4a{bottom:759.933333pt;}
.yb4{bottom:767.613333pt;}
.y49{bottom:773.693333pt;}
.y9d{bottom:777.853333pt;}
.yf{bottom:780.253333pt;}
.yb3{bottom:781.373333pt;}
.y48{bottom:787.613333pt;}
.y69{bottom:787.773333pt;}
.y9b{bottom:789.373333pt;}
.yb2{bottom:795.333333pt;}
.y47{bottom:798.533333pt;}
.y68{bottom:803.973333pt;}
.yb1{bottom:806.373333pt;}
.y9a{bottom:808.293333pt;}
.ye{bottom:815.013333pt;}
.y67{bottom:815.493333pt;}
.y99{bottom:827.013333pt;}
.yd{bottom:836.613333pt;}
.y66{bottom:836.933333pt;}
.y97{bottom:845.893333pt;}
.y65{bottom:858.213333pt;}
.y95{bottom:864.613333pt;}
.y64{bottom:879.493333pt;}
.y93{bottom:883.493333pt;}
.yc{bottom:889.413333pt;}
.y46{bottom:891.813333pt;}
.y62{bottom:900.933333pt;}
.y91{bottom:902.213333pt;}
.y45{bottom:905.573333pt;}
.y9{bottom:919.173333pt;}
.y44{bottom:919.493333pt;}
.y60{bottom:922.213333pt;}
.yb{bottom:923.813333pt;}
.y43{bottom:933.253333pt;}
.y8{bottom:939.813333pt;}
.y5c{bottom:943.493333pt;}
.y42{bottom:947.013333pt;}
.y90{bottom:947.333333pt;}
.ya{bottom:952.293333pt;}
.y41{bottom:960.933333pt;}
.y8f{bottom:961.093333pt;}
.y7{bottom:965.893333pt;}
.y40{bottom:974.693333pt;}
.y8e{bottom:974.853333pt;}
.y6{bottom:982.853333pt;}
.y3f{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.y3e{bottom:1002.053333pt;}
.y5b{bottom:1002.373333pt;}
.y8d{bottom:1002.533333pt;}
.y4{bottom:1013.573333pt;}
.y3d{bottom:1015.973333pt;}
.y5a{bottom:1016.293333pt;}
.y3{bottom:1029.600000pt;}
.y3c{bottom:1029.920000pt;}
.y59{bottom:1030.240000pt;}
.y3b{bottom:1044.640000pt;}
.y3a{bottom:1061.120000pt;}
.hb{height:10.672812pt;}
.h18{height:18.080000pt;}
.h19{height:18.240000pt;}
.h1a{height:18.272000pt;}
.h16{height:20.640000pt;}
.h17{height:20.800000pt;}
.h1b{height:21.440000pt;}
.h1c{height:21.632000pt;}
.h15{height:27.680000pt;}
.hd{height:31.390625pt;}
.h11{height:33.918750pt;}
.h12{height:42.084375pt;}
.h7{height:43.215000pt;}
.he{height:47.085938pt;}
.h13{height:47.109375pt;}
.hc{height:47.390625pt;}
.h14{height:47.406250pt;}
.hf{height:48.375000pt;}
.h1d{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h4{height:53.535000pt;}
.h10{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:114.112000pt;}
.wc{width:120.640000pt;}
.wb{width:120.672000pt;}
.wa{width:120.832000pt;}
.w3{width:144.506667pt;}
.w5{width:150.426667pt;}
.w4{width:151.546667pt;}
.w7{width:154.106667pt;}
.w9{width:155.226667pt;}
.w8{width:170.106667pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x27{left:7.360000pt;}
.x17{left:10.400000pt;}
.x20{left:11.360000pt;}
.x1b{left:15.040000pt;}
.x19{left:23.680000pt;}
.x2{left:26.719988pt;}
.x1c{left:29.440000pt;}
.x1e{left:34.080000pt;}
.x15{left:35.354667pt;}
.x2a{left:38.880000pt;}
.x21{left:40.640000pt;}
.xc{left:41.599988pt;}
.x1f{left:43.200000pt;}
.xe{left:44.799988pt;}
.x8{left:45.759988pt;}
.x2c{left:54.720000pt;}
.x1a{left:59.360000pt;}
.x22{left:62.400000pt;}
.x2d{left:63.520000pt;}
.x1d{left:66.554667pt;}
.x2e{left:68.666667pt;}
.x2b{left:71.400000pt;}
.x28{left:74.266667pt;}
.x34{left:76.800000pt;}
.x35{left:80.800000pt;}
.x36{left:82.746667pt;}
.x3a{left:90.111988pt;}
.x14{left:121.952000pt;}
.x30{left:143.546667pt;}
.x25{left:155.226667pt;}
.x5{left:216.986655pt;}
.x3{left:240.226655pt;}
.xa{left:253.666655pt;}
.x4{left:258.306655pt;}
.x16{left:266.786667pt;}
.x24{left:269.026655pt;}
.x2f{left:283.586655pt;}
.x13{left:284.706655pt;}
.x38{left:287.746655pt;}
.x31{left:299.106667pt;}
.x26{left:309.666667pt;}
.xf{left:316.226655pt;}
.xd{left:366.626655pt;}
.x9{left:375.586655pt;}
.x39{left:382.973321pt;}
.x1{left:391.773321pt;}
.xb{left:399.293321pt;}
.x18{left:418.653333pt;}
.x32{left:420.253333pt;}
.x6{left:425.693321pt;}
.x7{left:450.173321pt;}
.x29{left:480.093333pt;}
.x33{left:541.253333pt;}
.x10{left:569.733321pt;}
.x12{left:579.333321pt;}
.x37{left:584.293321pt;}
.x11{left:593.253321pt;}
.x23{left:602.373321pt;}
}




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