
    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_127d57f1eb2d0afff02049af.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_216bf80168a535816906731b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_a8f56cae9a0deb0cae85d50b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.813477;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_3f8fb19753ecb6712c5d5b8c.woff')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_46e2f7101d11c418c87bef0a.woff')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_84c24719ccb857f5bcc66e73.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37a1a1aca8ae336faa8d0ee5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8407b08005d76409f3b77531.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.182000px;}
.lsd{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.119520px;}
.ls6{letter-spacing:0.153600px;}
.lse{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.900000px;}
.ls3{letter-spacing:10.980000px;}
.ls26{letter-spacing:16.506720px;}
.ls17{letter-spacing:29.700000px;}
.ls1e{letter-spacing:31.140000px;}
.ls24{letter-spacing:44.100000px;}
.ls25{letter-spacing:46.026720px;}
.ls12{letter-spacing:46.260000px;}
.ls14{letter-spacing:60.660000px;}
.lsf{letter-spacing:63.540000px;}
.ls2{letter-spacing:64.956000px;}
.ls16{letter-spacing:65.700000px;}
.ls13{letter-spacing:95.940000px;}
.ls19{letter-spacing:98.100000px;}
.ls1a{letter-spacing:111.780000px;}
.ls10{letter-spacing:126.180000px;}
.ls1d{letter-spacing:126.900000px;}
.ls15{letter-spacing:141.300000px;}
.ls1c{letter-spacing:142.020000px;}
.ls21{letter-spacing:157.140000px;}
.ls1b{letter-spacing:172.260000px;}
.ls1f{letter-spacing:175.140000px;}
.ls23{letter-spacing:182.340000px;}
.ls22{letter-spacing:188.820000px;}
.ls20{letter-spacing:196.020000px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.093600px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._5{margin-left:-8.618400px;}
._1e{margin-left:-7.548720px;}
._2{margin-left:-6.287760px;}
._3{margin-left:-4.309200px;}
._4{margin-left:-3.101040px;}
._18{margin-left:-2.076480px;}
._1{margin-left:-1.059840px;}
._0{width:1.185840px;}
._b{width:2.696400px;}
._a{width:3.877200px;}
._17{width:4.923360px;}
._14{width:5.925600px;}
._16{width:7.397280px;}
._d{width:9.046080px;}
._c{width:10.863360px;}
._19{width:12.370320px;}
._f{width:13.565520px;}
._15{width:15.965280px;}
._1f{width:17.238480px;}
._12{width:18.286560px;}
._11{width:20.258640px;}
._10{width:24.253200px;}
._8{width:26.004960px;}
._9{width:29.056320px;}
._13{width:30.059280px;}
._1d{width:31.405920px;}
._e{width:38.101680px;}
._1c{width:60.719280px;}
._6{width:65.746080px;}
._7{width:152.148960px;}
._1a{width:157.113840px;}
._1b{width:201.060000px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y16{bottom:5.760000px;}
.y7{bottom:14.760000px;}
.y25{bottom:25.560000px;}
.y6{bottom:43.920000px;}
.y24{bottom:45.540000px;}
.yd{bottom:58.320000px;}
.y5{bottom:64.080000px;}
.y23{bottom:65.340000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.ya3{bottom:84.240000px;}
.y22{bottom:85.140000px;}
.y4{bottom:86.400000px;}
.y3c{bottom:89.820000px;}
.yc4{bottom:97.200000px;}
.y73{bottom:99.180000px;}
.ya2{bottom:104.040000px;}
.y21{bottom:104.940000px;}
.y9{bottom:107.490000px;}
.y3b{bottom:109.800000px;}
.yc3{bottom:117.180000px;}
.y72{bottom:118.980000px;}
.y3{bottom:122.610000px;}
.ya1{bottom:123.840000px;}
.y20{bottom:124.770000px;}
.y3a{bottom:129.600000px;}
.y8{bottom:136.650000px;}
.yc2{bottom:136.980000px;}
.y71{bottom:138.780000px;}
.ya0{bottom:143.820000px;}
.y1f{bottom:144.750000px;}
.y39{bottom:149.400000px;}
.yc1{bottom:156.810000px;}
.y70{bottom:158.610000px;}
.y9f{bottom:163.650000px;}
.y1e{bottom:164.550000px;}
.y38{bottom:169.230000px;}
.yc0{bottom:176.610000px;}
.y6f{bottom:178.410000px;}
.y9e{bottom:180.930000px;}
.y1d{bottom:184.350000px;}
.y37{bottom:189.030000px;}
.ybf{bottom:196.410000px;}
.y9d{bottom:198.210000px;}
.y6e{bottom:198.390000px;}
.y1c{bottom:204.150000px;}
.y36{bottom:209.010000px;}
.ybe{bottom:216.390000px;}
.y6d{bottom:218.190000px;}
.y9c{bottom:221.610000px;}
.y1b{bottom:223.950000px;}
.y35{bottom:228.810000px;}
.ybd{bottom:236.190000px;}
.y6c{bottom:237.990000px;}
.y9b{bottom:241.590000px;}
.y1a{bottom:243.750000px;}
.y34{bottom:248.610000px;}
.ybc{bottom:255.990000px;}
.y6b{bottom:257.790000px;}
.y9a{bottom:261.390000px;}
.y19{bottom:263.730000px;}
.y33{bottom:268.410000px;}
.ybb{bottom:275.790000px;}
.y6a{bottom:277.590000px;}
.y99{bottom:281.190000px;}
.y18{bottom:283.530000px;}
.y32{bottom:288.210000px;}
.yba{bottom:295.590000px;}
.y69{bottom:297.570000px;}
.y98{bottom:300.990000px;}
.y31{bottom:308.190000px;}
.yb9{bottom:315.570000px;}
.y68{bottom:317.370000px;}
.y97{bottom:320.790000px;}
.y30{bottom:327.990000px;}
.yb8{bottom:335.370000px;}
.y67{bottom:337.170000px;}
.y96{bottom:344.370000px;}
.y2f{bottom:347.790000px;}
.yb7{bottom:355.170000px;}
.y66{bottom:356.970000px;}
.y2e{bottom:367.590000px;}
.y95{bottom:367.950000px;}
.yb6{bottom:374.970000px;}
.y65{bottom:376.770000px;}
.y94{bottom:385.230000px;}
.y2d{bottom:387.390000px;}
.yb5{bottom:394.770000px;}
.y64{bottom:396.750000px;}
.y93{bottom:405.075000px;}
.y2c{bottom:407.415000px;}
.yb4{bottom:414.795000px;}
.y63{bottom:416.595000px;}
.y92{bottom:425.055000px;}
.y2b{bottom:427.215000px;}
.yb3{bottom:434.595000px;}
.y62{bottom:436.395000px;}
.y91{bottom:444.855000px;}
.y2a{bottom:447.015000px;}
.yb2{bottom:454.395000px;}
.y61{bottom:456.195000px;}
.y90{bottom:464.655000px;}
.y29{bottom:466.815000px;}
.yb1{bottom:474.195000px;}
.y60{bottom:475.995000px;}
.y8f{bottom:484.455000px;}
.y28{bottom:486.615000px;}
.yb0{bottom:493.995000px;}
.y5f{bottom:495.975000px;}
.y8e{bottom:504.255000px;}
.y27{bottom:506.595000px;}
.yaf{bottom:513.975000px;}
.y5e{bottom:515.775000px;}
.y8d{bottom:521.535000px;}
.y26{bottom:526.395000px;}
.yae{bottom:533.775000px;}
.y5d{bottom:535.575000px;}
.y8c{bottom:538.815000px;}
.y17{bottom:541.155000px;}
.yad{bottom:553.575000px;}
.y5c{bottom:555.375000px;}
.y8b{bottom:562.395000px;}
.yac{bottom:573.375000px;}
.y5b{bottom:575.175000px;}
.y8a{bottom:582.195000px;}
.yab{bottom:593.175000px;}
.y5a{bottom:595.155000px;}
.y89{bottom:602.175000px;}
.yaa{bottom:613.155000px;}
.y59{bottom:614.955000px;}
.y88{bottom:621.975000px;}
.ya9{bottom:632.955000px;}
.y87{bottom:641.775000px;}
.y58{bottom:643.755000px;}
.ya8{bottom:652.785000px;}
.y86{bottom:661.605000px;}
.y57{bottom:663.585000px;}
.ya7{bottom:672.585000px;}
.y85{bottom:681.405000px;}
.y56{bottom:683.385000px;}
.ya6{bottom:692.385000px;}
.y55{bottom:703.365000px;}
.y84{bottom:704.985000px;}
.ya5{bottom:712.365000px;}
.y54{bottom:723.165000px;}
.y83{bottom:728.565000px;}
.ya4{bottom:732.165000px;}
.y82{bottom:745.845000px;}
.y53{bottom:751.965000px;}
.y81{bottom:765.645000px;}
.y52{bottom:771.765000px;}
.y80{bottom:785.625000px;}
.y51{bottom:791.565000px;}
.y7f{bottom:805.425000px;}
.y50{bottom:811.545000px;}
.y7e{bottom:825.225000px;}
.y4f{bottom:831.345000px;}
.y15{bottom:839.445000px;}
.y7d{bottom:842.505000px;}
.y4e{bottom:851.145000px;}
.y7c{bottom:862.305000px;}
.y14{bottom:865.005000px;}
.y4d{bottom:870.945000px;}
.y7b{bottom:885.885000px;}
.y13{bottom:890.205000px;}
.y4c{bottom:890.745000px;}
.y7a{bottom:905.730000px;}
.y12{bottom:910.050000px;}
.y4b{bottom:910.770000px;}
.y11{bottom:925.170000px;}
.y79{bottom:925.530000px;}
.y4a{bottom:930.570000px;}
.y78{bottom:945.510000px;}
.y10{bottom:946.950000px;}
.y49{bottom:950.370000px;}
.y77{bottom:965.310000px;}
.y48{bottom:970.170000px;}
.yf{bottom:971.970000px;}
.y76{bottom:985.110000px;}
.y47{bottom:989.970000px;}
.ye{bottom:1003.650000px;}
.y75{bottom:1008.690000px;}
.y46{bottom:1009.950000px;}
.y45{bottom:1029.750000px;}
.yc{bottom:1030.470000px;}
.y74{bottom:1032.270000px;}
.y1{bottom:1046.850000px;}
.y44{bottom:1049.550000px;}
.y43{bottom:1069.350000px;}
.y42{bottom:1089.150000px;}
.y41{bottom:1109.130000px;}
.y40{bottom:1128.930000px;}
.y3f{bottom:1148.760000px;}
.y3e{bottom:1168.560000px;}
.y3d{bottom:1194.840000px;}
.h3{height:2.010938px;}
.hd{height:19.800000px;}
.hb{height:27.147656px;}
.h10{height:41.726953px;}
.he{height:42.164648px;}
.h11{height:43.506914px;}
.hc{height:45.549492px;}
.h7{height:46.251562px;}
.h9{height:46.736719px;}
.ha{height:53.224453px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.hf{height:297.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.xd{left:80.999987px;}
.xe{left:108.035987px;}
.x8{left:109.485000px;}
.x7{left:116.865000px;}
.x5{left:119.385000px;}
.x2{left:136.290000px;}
.x3{left:208.470000px;}
.x6{left:236.385000px;}
.xc{left:268.634987px;}
.xb{left:343.875000px;}
.x9{left:681.270000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-1.050667pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.106240pt;}
.ls6{letter-spacing:0.136533pt;}
.lse{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.800000pt;}
.ls3{letter-spacing:9.760000pt;}
.ls26{letter-spacing:14.672640pt;}
.ls17{letter-spacing:26.400000pt;}
.ls1e{letter-spacing:27.680000pt;}
.ls24{letter-spacing:39.200000pt;}
.ls25{letter-spacing:40.912640pt;}
.ls12{letter-spacing:41.120000pt;}
.ls14{letter-spacing:53.920000pt;}
.lsf{letter-spacing:56.480000pt;}
.ls2{letter-spacing:57.738667pt;}
.ls16{letter-spacing:58.400000pt;}
.ls13{letter-spacing:85.280000pt;}
.ls19{letter-spacing:87.200000pt;}
.ls1a{letter-spacing:99.360000pt;}
.ls10{letter-spacing:112.160000pt;}
.ls1d{letter-spacing:112.800000pt;}
.ls15{letter-spacing:125.600000pt;}
.ls1c{letter-spacing:126.240000pt;}
.ls21{letter-spacing:139.680000pt;}
.ls1b{letter-spacing:153.120000pt;}
.ls1f{letter-spacing:155.680000pt;}
.ls23{letter-spacing:162.080000pt;}
.ls22{letter-spacing:167.840000pt;}
.ls20{letter-spacing:174.240000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._5{margin-left:-7.660800pt;}
._1e{margin-left:-6.709973pt;}
._2{margin-left:-5.589120pt;}
._3{margin-left:-3.830400pt;}
._4{margin-left:-2.756480pt;}
._18{margin-left:-1.845760pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._b{width:2.396800pt;}
._a{width:3.446400pt;}
._17{width:4.376320pt;}
._14{width:5.267200pt;}
._16{width:6.575360pt;}
._d{width:8.040960pt;}
._c{width:9.656320pt;}
._19{width:10.995840pt;}
._f{width:12.058240pt;}
._15{width:14.191360pt;}
._1f{width:15.323093pt;}
._12{width:16.254720pt;}
._11{width:18.007680pt;}
._10{width:21.558400pt;}
._8{width:23.115520pt;}
._9{width:25.827840pt;}
._13{width:26.719360pt;}
._1d{width:27.916373pt;}
._e{width:33.868160pt;}
._1c{width:53.972693pt;}
._6{width:58.440960pt;}
._7{width:135.243520pt;}
._1a{width:139.656747pt;}
._1b{width:178.720000pt;}
.fs0{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y16{bottom:5.120000pt;}
.y7{bottom:13.120000pt;}
.y25{bottom:22.720000pt;}
.y6{bottom:39.040000pt;}
.y24{bottom:40.480000pt;}
.yd{bottom:51.840000pt;}
.y5{bottom:56.960000pt;}
.y23{bottom:58.080000pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.ya3{bottom:74.880000pt;}
.y22{bottom:75.680000pt;}
.y4{bottom:76.800000pt;}
.y3c{bottom:79.840000pt;}
.yc4{bottom:86.400000pt;}
.y73{bottom:88.160000pt;}
.ya2{bottom:92.480000pt;}
.y21{bottom:93.280000pt;}
.y9{bottom:95.546667pt;}
.y3b{bottom:97.600000pt;}
.yc3{bottom:104.160000pt;}
.y72{bottom:105.760000pt;}
.y3{bottom:108.986667pt;}
.ya1{bottom:110.080000pt;}
.y20{bottom:110.906667pt;}
.y3a{bottom:115.200000pt;}
.y8{bottom:121.466667pt;}
.yc2{bottom:121.760000pt;}
.y71{bottom:123.360000pt;}
.ya0{bottom:127.840000pt;}
.y1f{bottom:128.666667pt;}
.y39{bottom:132.800000pt;}
.yc1{bottom:139.386667pt;}
.y70{bottom:140.986667pt;}
.y9f{bottom:145.466667pt;}
.y1e{bottom:146.266667pt;}
.y38{bottom:150.426667pt;}
.yc0{bottom:156.986667pt;}
.y6f{bottom:158.586667pt;}
.y9e{bottom:160.826667pt;}
.y1d{bottom:163.866667pt;}
.y37{bottom:168.026667pt;}
.ybf{bottom:174.586667pt;}
.y9d{bottom:176.186667pt;}
.y6e{bottom:176.346667pt;}
.y1c{bottom:181.466667pt;}
.y36{bottom:185.786667pt;}
.ybe{bottom:192.346667pt;}
.y6d{bottom:193.946667pt;}
.y9c{bottom:196.986667pt;}
.y1b{bottom:199.066667pt;}
.y35{bottom:203.386667pt;}
.ybd{bottom:209.946667pt;}
.y6c{bottom:211.546667pt;}
.y9b{bottom:214.746667pt;}
.y1a{bottom:216.666667pt;}
.y34{bottom:220.986667pt;}
.ybc{bottom:227.546667pt;}
.y6b{bottom:229.146667pt;}
.y9a{bottom:232.346667pt;}
.y19{bottom:234.426667pt;}
.y33{bottom:238.586667pt;}
.ybb{bottom:245.146667pt;}
.y6a{bottom:246.746667pt;}
.y99{bottom:249.946667pt;}
.y18{bottom:252.026667pt;}
.y32{bottom:256.186667pt;}
.yba{bottom:262.746667pt;}
.y69{bottom:264.506667pt;}
.y98{bottom:267.546667pt;}
.y31{bottom:273.946667pt;}
.yb9{bottom:280.506667pt;}
.y68{bottom:282.106667pt;}
.y97{bottom:285.146667pt;}
.y30{bottom:291.546667pt;}
.yb8{bottom:298.106667pt;}
.y67{bottom:299.706667pt;}
.y96{bottom:306.106667pt;}
.y2f{bottom:309.146667pt;}
.yb7{bottom:315.706667pt;}
.y66{bottom:317.306667pt;}
.y2e{bottom:326.746667pt;}
.y95{bottom:327.066667pt;}
.yb6{bottom:333.306667pt;}
.y65{bottom:334.906667pt;}
.y94{bottom:342.426667pt;}
.y2d{bottom:344.346667pt;}
.yb5{bottom:350.906667pt;}
.y64{bottom:352.666667pt;}
.y93{bottom:360.066667pt;}
.y2c{bottom:362.146667pt;}
.yb4{bottom:368.706667pt;}
.y63{bottom:370.306667pt;}
.y92{bottom:377.826667pt;}
.y2b{bottom:379.746667pt;}
.yb3{bottom:386.306667pt;}
.y62{bottom:387.906667pt;}
.y91{bottom:395.426667pt;}
.y2a{bottom:397.346667pt;}
.yb2{bottom:403.906667pt;}
.y61{bottom:405.506667pt;}
.y90{bottom:413.026667pt;}
.y29{bottom:414.946667pt;}
.yb1{bottom:421.506667pt;}
.y60{bottom:423.106667pt;}
.y8f{bottom:430.626667pt;}
.y28{bottom:432.546667pt;}
.yb0{bottom:439.106667pt;}
.y5f{bottom:440.866667pt;}
.y8e{bottom:448.226667pt;}
.y27{bottom:450.306667pt;}
.yaf{bottom:456.866667pt;}
.y5e{bottom:458.466667pt;}
.y8d{bottom:463.586667pt;}
.y26{bottom:467.906667pt;}
.yae{bottom:474.466667pt;}
.y5d{bottom:476.066667pt;}
.y8c{bottom:478.946667pt;}
.y17{bottom:481.026667pt;}
.yad{bottom:492.066667pt;}
.y5c{bottom:493.666667pt;}
.y8b{bottom:499.906667pt;}
.yac{bottom:509.666667pt;}
.y5b{bottom:511.266667pt;}
.y8a{bottom:517.506667pt;}
.yab{bottom:527.266667pt;}
.y5a{bottom:529.026667pt;}
.y89{bottom:535.266667pt;}
.yaa{bottom:545.026667pt;}
.y59{bottom:546.626667pt;}
.y88{bottom:552.866667pt;}
.ya9{bottom:562.626667pt;}
.y87{bottom:570.466667pt;}
.y58{bottom:572.226667pt;}
.ya8{bottom:580.253333pt;}
.y86{bottom:588.093333pt;}
.y57{bottom:589.853333pt;}
.ya7{bottom:597.853333pt;}
.y85{bottom:605.693333pt;}
.y56{bottom:607.453333pt;}
.ya6{bottom:615.453333pt;}
.y55{bottom:625.213333pt;}
.y84{bottom:626.653333pt;}
.ya5{bottom:633.213333pt;}
.y54{bottom:642.813333pt;}
.y83{bottom:647.613333pt;}
.ya4{bottom:650.813333pt;}
.y82{bottom:662.973333pt;}
.y53{bottom:668.413333pt;}
.y81{bottom:680.573333pt;}
.y52{bottom:686.013333pt;}
.y80{bottom:698.333333pt;}
.y51{bottom:703.613333pt;}
.y7f{bottom:715.933333pt;}
.y50{bottom:721.373333pt;}
.y7e{bottom:733.533333pt;}
.y4f{bottom:738.973333pt;}
.y15{bottom:746.173333pt;}
.y7d{bottom:748.893333pt;}
.y4e{bottom:756.573333pt;}
.y7c{bottom:766.493333pt;}
.y14{bottom:768.893333pt;}
.y4d{bottom:774.173333pt;}
.y7b{bottom:787.453333pt;}
.y13{bottom:791.293333pt;}
.y4c{bottom:791.773333pt;}
.y7a{bottom:805.093333pt;}
.y12{bottom:808.933333pt;}
.y4b{bottom:809.573333pt;}
.y11{bottom:822.373333pt;}
.y79{bottom:822.693333pt;}
.y4a{bottom:827.173333pt;}
.y78{bottom:840.453333pt;}
.y10{bottom:841.733333pt;}
.y49{bottom:844.773333pt;}
.y77{bottom:858.053333pt;}
.y48{bottom:862.373333pt;}
.yf{bottom:863.973333pt;}
.y76{bottom:875.653333pt;}
.y47{bottom:879.973333pt;}
.ye{bottom:892.133333pt;}
.y75{bottom:896.613333pt;}
.y46{bottom:897.733333pt;}
.y45{bottom:915.333333pt;}
.yc{bottom:915.973333pt;}
.y74{bottom:917.573333pt;}
.y1{bottom:930.533333pt;}
.y44{bottom:932.933333pt;}
.y43{bottom:950.533333pt;}
.y42{bottom:968.133333pt;}
.y41{bottom:985.893333pt;}
.y40{bottom:1003.493333pt;}
.y3f{bottom:1021.120000pt;}
.y3e{bottom:1038.720000pt;}
.y3d{bottom:1062.080000pt;}
.h3{height:1.787500pt;}
.hd{height:17.600000pt;}
.hb{height:24.131250pt;}
.h10{height:37.090625pt;}
.he{height:37.479688pt;}
.h11{height:38.672812pt;}
.hc{height:40.488438pt;}
.h7{height:41.112500pt;}
.h9{height:41.543750pt;}
.ha{height:47.310625pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.hf{height:264.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.xd{left:71.999988pt;}
.xe{left:96.031988pt;}
.x8{left:97.320000pt;}
.x7{left:103.880000pt;}
.x5{left:106.120000pt;}
.x2{left:121.146667pt;}
.x3{left:185.306667pt;}
.x6{left:210.120000pt;}
.xc{left:238.786655pt;}
.xb{left:305.666667pt;}
.x9{left:605.573333pt;}
}




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