
    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_2325c3b139abd0b07f680d40.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b5222f31b1eea45c66dba7da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_c74c4b1ebf83f61da46dc831.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_0158232c4e1b65b0797490be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_8dd70e096cc0cb7f0de23cc4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_a2efefd35d7a386274513f89.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d712368672271e60af87271d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e3fa9c90eadc02d9e7464008.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6b0c14f82a6c40ec69e913c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-1.596000px;}
.ls9{letter-spacing:-1.500000px;}
.lse{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls7{letter-spacing:-0.127200px;}
.ls11{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.038160px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls10{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.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;}
}
.ws4{word-spacing:-22.087200px;}
.ws3{word-spacing:-21.991200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsc{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.wse{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.505760px;}
.ws9{word-spacing:-12.854880px;}
.ws8{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws5{word-spacing:-8.786880px;}
.ws7{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._e{margin-left:-7.449840px;}
._17{margin-left:-6.035760px;}
._4{margin-left:-4.840560px;}
._3{margin-left:-2.939760px;}
._0{margin-left:-1.188000px;}
._1{width:1.038000px;}
._2{width:2.808000px;}
._b{width:4.245840px;}
._5{width:5.516880px;}
._13{width:6.522720px;}
._c{width:7.602000px;}
._a{width:9.245520px;}
._7{width:10.391040px;}
._6{width:11.414160px;}
._d{width:12.728880px;}
._12{width:13.864320px;}
._10{width:16.314480px;}
._f{width:17.390160px;}
._11{width:18.584880px;}
._9{width:19.985040px;}
._8{width:21.219840px;}
._1b{width:22.241760px;}
._14{width:23.346000px;}
._16{width:25.240800px;}
._15{width:26.750400px;}
._1f{width:28.065840px;}
._1e{width:29.102400px;}
._1a{width:44.678400px;}
._19{width:50.377680px;}
._18{width:96.094080px;}
._1d{width:151.113120px;}
._1c{width:154.717920px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:3.240000px;}
.y95{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y49{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y47{bottom:10.665000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y96{bottom:17.325000px;}
.y2{bottom:20.160000px;}
.y43{bottom:20.520000px;}
.y48{bottom:22.185000px;}
.y1a{bottom:23.760000px;}
.y46{bottom:25.245000px;}
.yb{bottom:30.240000px;}
.y42{bottom:37.800000px;}
.y19{bottom:40.365000px;}
.ya{bottom:46.650000px;}
.y41{bottom:55.080000px;}
.y18{bottom:56.745000px;}
.y5{bottom:58.680000px;}
.y40{bottom:72.180000px;}
.y17{bottom:73.305000px;}
.y9{bottom:73.470000px;}
.y1{bottom:81.216000px;}
.y16{bottom:86.445000px;}
.y3f{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y15{bottom:104.625000px;}
.y3e{bottom:106.740000px;}
.y7{bottom:111.450000px;}
.y14{bottom:122.985000px;}
.y3d{bottom:124.020000px;}
.ybf{bottom:132.156000px;}
.ybe{bottom:140.256000px;}
.y54{bottom:140.976000px;}
.y3c{bottom:141.300000px;}
.y13{bottom:141.345000px;}
.y90{bottom:149.256000px;}
.ybd{bottom:157.530000px;}
.y53{bottom:158.250000px;}
.y3b{bottom:158.580000px;}
.y12{bottom:160.245000px;}
.y8f{bottom:166.530000px;}
.ybc{bottom:174.810000px;}
.y52{bottom:175.350000px;}
.y3a{bottom:175.680000px;}
.y8e{bottom:183.810000px;}
.y11{bottom:185.985000px;}
.ybb{bottom:192.090000px;}
.y51{bottom:192.630000px;}
.y39{bottom:192.960000px;}
.y8d{bottom:201.090000px;}
.yba{bottom:209.370000px;}
.y50{bottom:209.910000px;}
.y38{bottom:210.240000px;}
.y10{bottom:210.465000px;}
.y8c{bottom:218.370000px;}
.y2a{bottom:219.240000px;}
.yb9{bottom:224.130000px;}
.y4f{bottom:227.190000px;}
.y37{bottom:227.520000px;}
.y29{bottom:234.540000px;}
.y8b{bottom:235.470000px;}
.yb8{bottom:242.130000px;}
.y4e{bottom:244.470000px;}
.y36{bottom:244.830000px;}
.y28{bottom:252.750000px;}
.yb7{bottom:260.130000px;}
.y4d{bottom:261.570000px;}
.y35{bottom:262.110000px;}
.y27{bottom:270.030000px;}
.y4c{bottom:278.850000px;}
.y34{bottom:279.210000px;}
.yb6{bottom:281.370000px;}
.y8a{bottom:287.310000px;}
.y26{bottom:287.490000px;}
.y4b{bottom:296.130000px;}
.y33{bottom:296.490000px;}
.yb5{bottom:298.470000px;}
.y89{bottom:304.590000px;}
.y25{bottom:304.950000px;}
.yb4{bottom:313.230000px;}
.y32{bottom:313.770000px;}
.y4a{bottom:314.130000px;}
.y88{bottom:321.870000px;}
.y24{bottom:322.230000px;}
.y45{bottom:328.530000px;}
.y31{bottom:331.050000px;}
.yb3{bottom:331.230000px;}
.y87{bottom:339.015000px;}
.y23{bottom:339.690000px;}
.y30{bottom:348.330000px;}
.yb2{bottom:349.275000px;}
.y86{bottom:356.295000px;}
.y22{bottom:357.150000px;}
.y1d{bottom:365.115000px;}
.y2f{bottom:365.430000px;}
.yb1{bottom:367.275000px;}
.y85{bottom:373.575000px;}
.y21{bottom:374.430000px;}
.y2e{bottom:382.710000px;}
.yb0{bottom:385.275000px;}
.y84{bottom:390.855000px;}
.y20{bottom:392.070000px;}
.y2d{bottom:399.990000px;}
.yaf{bottom:403.275000px;}
.y83{bottom:408.135000px;}
.y2c{bottom:417.270000px;}
.y1f{bottom:419.430000px;}
.yae{bottom:424.515000px;}
.y82{bottom:425.415000px;}
.y2b{bottom:434.550000px;}
.y1e{bottom:437.250000px;}
.yad{bottom:441.795000px;}
.y81{bottom:442.515000px;}
.yac{bottom:456.555000px;}
.y80{bottom:459.795000px;}
.yab{bottom:474.555000px;}
.y7f{bottom:477.075000px;}
.yaa{bottom:492.555000px;}
.y7e{bottom:494.355000px;}
.y7d{bottom:511.635000px;}
.ya9{bottom:513.795000px;}
.y7c{bottom:528.735000px;}
.ya8{bottom:531.075000px;}
.ya7{bottom:545.835000px;}
.y7b{bottom:546.015000px;}
.y7a{bottom:563.295000px;}
.ya6{bottom:563.835000px;}
.y79{bottom:580.575000px;}
.ya5{bottom:581.835000px;}
.y78{bottom:597.855000px;}
.y77{bottom:615.165000px;}
.ya4{bottom:620.385000px;}
.y76{bottom:632.265000px;}
.ya3{bottom:637.665000px;}
.y75{bottom:649.545000px;}
.ya2{bottom:652.425000px;}
.y74{bottom:666.825000px;}
.ya1{bottom:670.425000px;}
.y73{bottom:684.105000px;}
.ya0{bottom:688.425000px;}
.y72{bottom:701.385000px;}
.y9f{bottom:709.665000px;}
.y71{bottom:718.665000px;}
.y9e{bottom:726.765000px;}
.y70{bottom:735.765000px;}
.y9d{bottom:741.525000px;}
.y6f{bottom:753.045000px;}
.y9c{bottom:759.525000px;}
.y6e{bottom:770.325000px;}
.y9b{bottom:777.525000px;}
.y6d{bottom:787.605000px;}
.y9a{bottom:795.525000px;}
.y6c{bottom:804.885000px;}
.y99{bottom:813.525000px;}
.y1b{bottom:813.705000px;}
.y6b{bottom:822.165000px;}
.y98{bottom:831.525000px;}
.y6a{bottom:839.265000px;}
.yf{bottom:843.225000px;}
.y97{bottom:849.525000px;}
.y69{bottom:856.545000px;}
.y94{bottom:867.525000px;}
.y68{bottom:873.870000px;}
.y93{bottom:885.570000px;}
.y67{bottom:891.150000px;}
.y92{bottom:903.570000px;}
.y66{bottom:908.430000px;}
.y91{bottom:921.570000px;}
.y65{bottom:925.530000px;}
.y64{bottom:942.810000px;}
.y63{bottom:960.090000px;}
.y62{bottom:977.370000px;}
.y61{bottom:994.650000px;}
.y60{bottom:1011.930000px;}
.y5f{bottom:1029.030000px;}
.y5e{bottom:1046.310000px;}
.y5d{bottom:1063.590000px;}
.yd{bottom:1068.810000px;}
.y5c{bottom:1080.870000px;}
.y6{bottom:1094.010000px;}
.y5b{bottom:1098.150000px;}
.y5a{bottom:1115.430000px;}
.y59{bottom:1132.530000px;}
.y58{bottom:1149.840000px;}
.y57{bottom:1167.120000px;}
.y56{bottom:1184.400000px;}
.y55{bottom:1201.680000px;}
.h1e{height:17.100000px;}
.h1c{height:17.280000px;}
.h1d{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.940000px;}
.h1f{height:34.596000px;}
.h8{height:36.180000px;}
.h1a{height:36.576000px;}
.h17{height:38.818125px;}
.h19{height:41.726953px;}
.h18{height:42.164648px;}
.h20{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h16{height:45.770625px;}
.h15{height:47.980898px;}
.h1b{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:225.570000px;}
.h14{height:448.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:56.196000px;}
.w15{width:72.720000px;}
.w3{width:74.880000px;}
.w1a{width:78.840000px;}
.w11{width:81.180000px;}
.w25{width:82.800000px;}
.w1e{width:84.960000px;}
.wd{width:86.220000px;}
.w18{width:89.136000px;}
.w23{width:93.600000px;}
.w24{width:93.816000px;}
.w21{width:100.440000px;}
.w22{width:114.156000px;}
.w5{width:151.950000px;}
.w13{width:158.790000px;}
.w14{width:165.270000px;}
.wa{width:173.550000px;}
.w16{width:180.030000px;}
.w1b{width:181.110000px;}
.w17{width:185.070000px;}
.w12{width:188.130000px;}
.w1f{width:201.090000px;}
.we{width:206.355000px;}
.w19{width:210.450000px;}
.w8{width:223.275000px;}
.wf{width:225.570000px;}
.w10{width:231.330000px;}
.w1c{width:236.055000px;}
.wb{width:239.295000px;}
.w1d{width:242.310000px;}
.wc{width:245.370000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.560000px;}
.x2{left:8.640000px;}
.xc{left:10.440000px;}
.x15{left:12.600000px;}
.xe{left:29.196000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x33{left:102.275987px;}
.x34{left:129.275987px;}
.xd{left:210.495000px;}
.x13{left:215.175000px;}
.x1e{left:217.829987px;}
.x23{left:222.329987px;}
.x6{left:224.850000px;}
.x2d{left:232.589987px;}
.x1a{left:245.909987px;}
.x17{left:247.530000px;}
.x24{left:254.010000px;}
.x2a{left:255.090000px;}
.x11{left:260.175000px;}
.x1f{left:262.110000px;}
.x12{left:270.255000px;}
.x10{left:273.495000px;}
.x16{left:275.609987px;}
.x1b{left:280.335000px;}
.x9{left:288.435000px;}
.x14{left:296.175000px;}
.x29{left:326.954987px;}
.x2e{left:331.995000px;}
.xf{left:347.115000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x20{left:421.635000px;}
.x2f{left:433.155000px;}
.x25{left:439.815000px;}
.xa{left:455.700000px;}
.x18{left:487.545000px;}
.x2b{left:491.865000px;}
.x1c{left:506.625000px;}
.x26{left:529.845000px;}
.x30{left:548.205000px;}
.x21{left:581.145000px;}
.x31{left:642.525000px;}
.x19{left:733.650000px;}
.x2c{left:734.910000px;}
.x32{left:737.070000px;}
.x1d{left:738.690000px;}
.x28{left:741.030000px;}
.x3{left:745.890000px;}
.x22{left:747.150000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-1.418667pt;}
.ls9{letter-spacing:-1.333333pt;}
.lse{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.033920pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls10{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws4{word-spacing:-19.633067pt;}
.ws3{word-spacing:-19.547733pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsc{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.426560pt;}
.ws8{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws5{word-spacing:-7.810560pt;}
.ws7{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._e{margin-left:-6.622080pt;}
._17{margin-left:-5.365120pt;}
._4{margin-left:-4.302720pt;}
._3{margin-left:-2.613120pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.922667pt;}
._2{width:2.496000pt;}
._b{width:3.774080pt;}
._5{width:4.903893pt;}
._13{width:5.797973pt;}
._c{width:6.757333pt;}
._a{width:8.218240pt;}
._7{width:9.236480pt;}
._6{width:10.145920pt;}
._d{width:11.314560pt;}
._12{width:12.323840pt;}
._10{width:14.501760pt;}
._f{width:15.457920pt;}
._11{width:16.519893pt;}
._9{width:17.764480pt;}
._8{width:18.862080pt;}
._1b{width:19.770453pt;}
._14{width:20.752000pt;}
._16{width:22.436267pt;}
._15{width:23.778133pt;}
._1f{width:24.947413pt;}
._1e{width:25.868800pt;}
._1a{width:39.714133pt;}
._19{width:44.780160pt;}
._18{width:85.416960pt;}
._1d{width:134.322773pt;}
._1c{width:137.527040pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.880000pt;}
.y95{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y49{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y47{bottom:9.480000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y96{bottom:15.400000pt;}
.y2{bottom:17.920000pt;}
.y43{bottom:18.240000pt;}
.y48{bottom:19.720000pt;}
.y1a{bottom:21.120000pt;}
.y46{bottom:22.440000pt;}
.yb{bottom:26.880000pt;}
.y42{bottom:33.600000pt;}
.y19{bottom:35.880000pt;}
.ya{bottom:41.466667pt;}
.y41{bottom:48.960000pt;}
.y18{bottom:50.440000pt;}
.y5{bottom:52.160000pt;}
.y40{bottom:64.160000pt;}
.y17{bottom:65.160000pt;}
.y9{bottom:65.306667pt;}
.y1{bottom:72.192000pt;}
.y16{bottom:76.840000pt;}
.y3f{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:93.000000pt;}
.y3e{bottom:94.880000pt;}
.y7{bottom:99.066667pt;}
.y14{bottom:109.320000pt;}
.y3d{bottom:110.240000pt;}
.ybf{bottom:117.472000pt;}
.ybe{bottom:124.672000pt;}
.y54{bottom:125.312000pt;}
.y3c{bottom:125.600000pt;}
.y13{bottom:125.640000pt;}
.y90{bottom:132.672000pt;}
.ybd{bottom:140.026667pt;}
.y53{bottom:140.666667pt;}
.y3b{bottom:140.960000pt;}
.y12{bottom:142.440000pt;}
.y8f{bottom:148.026667pt;}
.ybc{bottom:155.386667pt;}
.y52{bottom:155.866667pt;}
.y3a{bottom:156.160000pt;}
.y8e{bottom:163.386667pt;}
.y11{bottom:165.320000pt;}
.ybb{bottom:170.746667pt;}
.y51{bottom:171.226667pt;}
.y39{bottom:171.520000pt;}
.y8d{bottom:178.746667pt;}
.yba{bottom:186.106667pt;}
.y50{bottom:186.586667pt;}
.y38{bottom:186.880000pt;}
.y10{bottom:187.080000pt;}
.y8c{bottom:194.106667pt;}
.y2a{bottom:194.880000pt;}
.yb9{bottom:199.226667pt;}
.y4f{bottom:201.946667pt;}
.y37{bottom:202.240000pt;}
.y29{bottom:208.480000pt;}
.y8b{bottom:209.306667pt;}
.yb8{bottom:215.226667pt;}
.y4e{bottom:217.306667pt;}
.y36{bottom:217.626667pt;}
.y28{bottom:224.666667pt;}
.yb7{bottom:231.226667pt;}
.y4d{bottom:232.506667pt;}
.y35{bottom:232.986667pt;}
.y27{bottom:240.026667pt;}
.y4c{bottom:247.866667pt;}
.y34{bottom:248.186667pt;}
.yb6{bottom:250.106667pt;}
.y8a{bottom:255.386667pt;}
.y26{bottom:255.546667pt;}
.y4b{bottom:263.226667pt;}
.y33{bottom:263.546667pt;}
.yb5{bottom:265.306667pt;}
.y89{bottom:270.746667pt;}
.y25{bottom:271.066667pt;}
.yb4{bottom:278.426667pt;}
.y32{bottom:278.906667pt;}
.y4a{bottom:279.226667pt;}
.y88{bottom:286.106667pt;}
.y24{bottom:286.426667pt;}
.y45{bottom:292.026667pt;}
.y31{bottom:294.266667pt;}
.yb3{bottom:294.426667pt;}
.y87{bottom:301.346667pt;}
.y23{bottom:301.946667pt;}
.y30{bottom:309.626667pt;}
.yb2{bottom:310.466667pt;}
.y86{bottom:316.706667pt;}
.y22{bottom:317.466667pt;}
.y1d{bottom:324.546667pt;}
.y2f{bottom:324.826667pt;}
.yb1{bottom:326.466667pt;}
.y85{bottom:332.066667pt;}
.y21{bottom:332.826667pt;}
.y2e{bottom:340.186667pt;}
.yb0{bottom:342.466667pt;}
.y84{bottom:347.426667pt;}
.y20{bottom:348.506667pt;}
.y2d{bottom:355.546667pt;}
.yaf{bottom:358.466667pt;}
.y83{bottom:362.786667pt;}
.y2c{bottom:370.906667pt;}
.y1f{bottom:372.826667pt;}
.yae{bottom:377.346667pt;}
.y82{bottom:378.146667pt;}
.y2b{bottom:386.266667pt;}
.y1e{bottom:388.666667pt;}
.yad{bottom:392.706667pt;}
.y81{bottom:393.346667pt;}
.yac{bottom:405.826667pt;}
.y80{bottom:408.706667pt;}
.yab{bottom:421.826667pt;}
.y7f{bottom:424.066667pt;}
.yaa{bottom:437.826667pt;}
.y7e{bottom:439.426667pt;}
.y7d{bottom:454.786667pt;}
.ya9{bottom:456.706667pt;}
.y7c{bottom:469.986667pt;}
.ya8{bottom:472.066667pt;}
.ya7{bottom:485.186667pt;}
.y7b{bottom:485.346667pt;}
.y7a{bottom:500.706667pt;}
.ya6{bottom:501.186667pt;}
.y79{bottom:516.066667pt;}
.ya5{bottom:517.186667pt;}
.y78{bottom:531.426667pt;}
.y77{bottom:546.813333pt;}
.ya4{bottom:551.453333pt;}
.y76{bottom:562.013333pt;}
.ya3{bottom:566.813333pt;}
.y75{bottom:577.373333pt;}
.ya2{bottom:579.933333pt;}
.y74{bottom:592.733333pt;}
.ya1{bottom:595.933333pt;}
.y73{bottom:608.093333pt;}
.ya0{bottom:611.933333pt;}
.y72{bottom:623.453333pt;}
.y9f{bottom:630.813333pt;}
.y71{bottom:638.813333pt;}
.y9e{bottom:646.013333pt;}
.y70{bottom:654.013333pt;}
.y9d{bottom:659.133333pt;}
.y6f{bottom:669.373333pt;}
.y9c{bottom:675.133333pt;}
.y6e{bottom:684.733333pt;}
.y9b{bottom:691.133333pt;}
.y6d{bottom:700.093333pt;}
.y9a{bottom:707.133333pt;}
.y6c{bottom:715.453333pt;}
.y99{bottom:723.133333pt;}
.y1b{bottom:723.293333pt;}
.y6b{bottom:730.813333pt;}
.y98{bottom:739.133333pt;}
.y6a{bottom:746.013333pt;}
.yf{bottom:749.533333pt;}
.y97{bottom:755.133333pt;}
.y69{bottom:761.373333pt;}
.y94{bottom:771.133333pt;}
.y68{bottom:776.773333pt;}
.y93{bottom:787.173333pt;}
.y67{bottom:792.133333pt;}
.y92{bottom:803.173333pt;}
.y66{bottom:807.493333pt;}
.y91{bottom:819.173333pt;}
.y65{bottom:822.693333pt;}
.y64{bottom:838.053333pt;}
.y63{bottom:853.413333pt;}
.y62{bottom:868.773333pt;}
.y61{bottom:884.133333pt;}
.y60{bottom:899.493333pt;}
.y5f{bottom:914.693333pt;}
.y5e{bottom:930.053333pt;}
.y5d{bottom:945.413333pt;}
.yd{bottom:950.053333pt;}
.y5c{bottom:960.773333pt;}
.y6{bottom:972.453333pt;}
.y5b{bottom:976.133333pt;}
.y5a{bottom:991.493333pt;}
.y59{bottom:1006.693333pt;}
.y58{bottom:1022.080000pt;}
.y57{bottom:1037.440000pt;}
.y56{bottom:1052.800000pt;}
.y55{bottom:1068.160000pt;}
.h1e{height:15.200000pt;}
.h1c{height:15.360000pt;}
.h1d{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.280000pt;}
.h1f{height:30.752000pt;}
.h8{height:32.160000pt;}
.h1a{height:32.512000pt;}
.h17{height:34.505000pt;}
.h19{height:37.090625pt;}
.h18{height:37.479688pt;}
.h20{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h16{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1b{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:200.506667pt;}
.h14{height:398.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:49.952000pt;}
.w15{width:64.640000pt;}
.w3{width:66.560000pt;}
.w1a{width:70.080000pt;}
.w11{width:72.160000pt;}
.w25{width:73.600000pt;}
.w1e{width:75.520000pt;}
.wd{width:76.640000pt;}
.w18{width:79.232000pt;}
.w23{width:83.200000pt;}
.w24{width:83.392000pt;}
.w21{width:89.280000pt;}
.w22{width:101.472000pt;}
.w5{width:135.066667pt;}
.w13{width:141.146667pt;}
.w14{width:146.906667pt;}
.wa{width:154.266667pt;}
.w16{width:160.026667pt;}
.w1b{width:160.986667pt;}
.w17{width:164.506667pt;}
.w12{width:167.226667pt;}
.w1f{width:178.746667pt;}
.we{width:183.426667pt;}
.w19{width:187.066667pt;}
.w8{width:198.466667pt;}
.wf{width:200.506667pt;}
.w10{width:205.626667pt;}
.w1c{width:209.826667pt;}
.wb{width:212.706667pt;}
.w1d{width:215.386667pt;}
.wc{width:218.106667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.720000pt;}
.x2{left:7.680000pt;}
.xc{left:9.280000pt;}
.x15{left:11.200000pt;}
.xe{left:25.952000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x33{left:90.911988pt;}
.x34{left:114.911988pt;}
.xd{left:187.106667pt;}
.x13{left:191.266667pt;}
.x1e{left:193.626655pt;}
.x23{left:197.626655pt;}
.x6{left:199.866667pt;}
.x2d{left:206.746655pt;}
.x1a{left:218.586655pt;}
.x17{left:220.026667pt;}
.x24{left:225.786667pt;}
.x2a{left:226.746667pt;}
.x11{left:231.266667pt;}
.x1f{left:232.986667pt;}
.x12{left:240.226667pt;}
.x10{left:243.106667pt;}
.x16{left:244.986655pt;}
.x1b{left:249.186667pt;}
.x9{left:256.386667pt;}
.x14{left:263.266667pt;}
.x29{left:290.626655pt;}
.x2e{left:295.106667pt;}
.xf{left:308.546667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x20{left:374.786667pt;}
.x2f{left:385.026667pt;}
.x25{left:390.946667pt;}
.xa{left:405.066667pt;}
.x18{left:433.373333pt;}
.x2b{left:437.213333pt;}
.x1c{left:450.333333pt;}
.x26{left:470.973333pt;}
.x30{left:487.293333pt;}
.x21{left:516.573333pt;}
.x31{left:571.133333pt;}
.x19{left:652.133333pt;}
.x2c{left:653.253333pt;}
.x32{left:655.173333pt;}
.x1d{left:656.613333pt;}
.x28{left:658.693333pt;}
.x3{left:663.013333pt;}
.x22{left:664.133333pt;}
}




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