
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_cb8bb6320f1deae0ed3fd533.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ce8490969db61bc24ae359c7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_10be70072e977449ddd92e5f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2e31196576007f6b85ee847a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_6f472d8e2512f2a07fdd42b1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_268db72589eb7cec697b9710.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_d2081da846ec23b4a848126b.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-74.160000px;}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.ls4{letter-spacing:4.500000px;}
.lse{letter-spacing:5.220000px;}
.lsf{letter-spacing:13.860000px;}
.ls1{letter-spacing:16.740000px;}
.ls3{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;}
}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.146400px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.350600px;}
.ws2{word-spacing:-10.213800px;}
.ws6{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.374480px;}
._2{width:2.851680px;}
._7{width:3.942000px;}
._5{width:5.616000px;}
._8{width:6.750000px;}
._6{width:8.238000px;}
._e{width:9.391920px;}
._13{width:10.398240px;}
._b{width:11.473920px;}
._c{width:12.788640px;}
._d{width:13.924080px;}
._14{width:15.991680px;}
._15{width:17.390160px;}
._10{width:18.406080px;}
._f{width:19.720800px;}
._16{width:20.736720px;}
._4{width:22.374000px;}
._11{width:24.035760px;}
._12{width:25.173600px;}
._a{width:28.521360px;}
._9{width:29.898000px;}
._17{width:32.868000px;}
._3{width:173.943600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.700000px;}
.y42{bottom:3.765000px;}
.y5{bottom:3.780000px;}
.y59{bottom:5.010000px;}
.y2{bottom:8.280000px;}
.y4b{bottom:10.260000px;}
.y57{bottom:20.700000px;}
.y41{bottom:20.865000px;}
.y4{bottom:21.060000px;}
.y40{bottom:38.145000px;}
.y56{bottom:39.240000px;}
.y4a{bottom:40.320000px;}
.y3{bottom:44.670000px;}
.y49{bottom:51.840000px;}
.y3f{bottom:55.425000px;}
.y7{bottom:57.600000px;}
.y55{bottom:61.020000px;}
.y48{bottom:64.980000px;}
.y3e{bottom:72.705000px;}
.y47{bottom:77.940000px;}
.y54{bottom:79.920000px;}
.y43{bottom:89.460000px;}
.y3d{bottom:89.625000px;}
.y53{bottom:95.580000px;}
.y46{bottom:99.720000px;}
.ybe{bottom:101.160000px;}
.y52{bottom:104.940000px;}
.y3c{bottom:116.265000px;}
.ybd{bottom:118.440000px;}
.y8d{bottom:119.160000px;}
.y51{bottom:123.870000px;}
.y3b{bottom:133.365000px;}
.ybc{bottom:135.720000px;}
.y8c{bottom:136.440000px;}
.y50{bottom:139.350000px;}
.y3a{bottom:150.645000px;}
.ybb{bottom:152.460000px;}
.y8b{bottom:153.720000px;}
.y4f{bottom:155.010000px;}
.y45{bottom:162.030000px;}
.y39{bottom:167.610000px;}
.y4e{bottom:170.490000px;}
.y8a{bottom:170.820000px;}
.y44{bottom:172.650000px;}
.yba{bottom:179.100000px;}
.y4d{bottom:185.610000px;}
.y89{bottom:187.740000px;}
.y38{bottom:194.250000px;}
.yb9{bottom:196.380000px;}
.y37{bottom:211.530000px;}
.yb8{bottom:213.690000px;}
.y88{bottom:214.410000px;}
.y36{bottom:228.810000px;}
.yb7{bottom:230.610000px;}
.y87{bottom:231.690000px;}
.y35{bottom:245.910000px;}
.y86{bottom:248.610000px;}
.yb6{bottom:257.070000px;}
.y34{bottom:263.190000px;}
.yb5{bottom:274.350000px;}
.y85{bottom:275.070000px;}
.y33{bottom:280.110000px;}
.yb4{bottom:291.630000px;}
.yd{bottom:292.005000px;}
.y84{bottom:292.350000px;}
.y32{bottom:297.390000px;}
.yb3{bottom:308.550000px;}
.y83{bottom:309.630000px;}
.y31{bottom:324.030000px;}
.y82{bottom:326.910000px;}
.yb2{bottom:335.190000px;}
.y30{bottom:341.130000px;}
.y81{bottom:344.190000px;}
.yb1{bottom:352.470000px;}
.y2f{bottom:358.410000px;}
.y80{bottom:361.110000px;}
.yb0{bottom:369.570000px;}
.y2e{bottom:375.690000px;}
.y1b{bottom:383.430000px;}
.yaf{bottom:386.490000px;}
.y7f{bottom:387.570000px;}
.y2d{bottom:393.000000px;}
.y7e{bottom:404.850000px;}
.y1a{bottom:407.760000px;}
.y2c{bottom:410.280000px;}
.yae{bottom:413.130000px;}
.y7d{bottom:422.130000px;}
.y2b{bottom:427.560000px;}
.yad{bottom:430.410000px;}
.y19{bottom:431.880000px;}
.y7c{bottom:439.410000px;}
.y2a{bottom:444.660000px;}
.yac{bottom:447.735000px;}
.y18{bottom:456.000000px;}
.y7b{bottom:456.735000px;}
.y29{bottom:461.940000px;}
.yab{bottom:464.655000px;}
.y7a{bottom:474.015000px;}
.y28{bottom:479.220000px;}
.y17{bottom:480.120000px;}
.yaa{bottom:481.755000px;}
.y79{bottom:490.755000px;}
.y27{bottom:496.500000px;}
.y16{bottom:504.240000px;}
.ya9{bottom:508.395000px;}
.y26{bottom:513.420000px;}
.y78{bottom:517.395000px;}
.ya8{bottom:525.675000px;}
.y15{bottom:528.360000px;}
.y77{bottom:534.675000px;}
.y25{bottom:539.520000px;}
.ya7{bottom:542.955000px;}
.y76{bottom:551.955000px;}
.y14{bottom:552.480000px;}
.y24{bottom:555.000000px;}
.ya6{bottom:559.875000px;}
.y75{bottom:569.235000px;}
.y23{bottom:570.480000px;}
.y13{bottom:576.780000px;}
.y74{bottom:585.975000px;}
.y22{bottom:586.140000px;}
.ya5{bottom:586.335000px;}
.y12{bottom:600.900000px;}
.y21{bottom:601.620000px;}
.ya4{bottom:603.615000px;}
.yd5{bottom:605.235000px;}
.y73{bottom:612.615000px;}
.y20{bottom:617.100000px;}
.ya3{bottom:620.895000px;}
.yd4{bottom:622.335000px;}
.y11{bottom:625.065000px;}
.y72{bottom:629.895000px;}
.y1f{bottom:632.625000px;}
.ya2{bottom:637.815000px;}
.yd3{bottom:639.615000px;}
.y71{bottom:647.175000px;}
.y1e{bottom:648.285000px;}
.y10{bottom:649.185000px;}
.yd2{bottom:656.895000px;}
.y1d{bottom:663.765000px;}
.y70{bottom:664.455000px;}
.yf{bottom:673.305000px;}
.yd1{bottom:674.175000px;}
.y6f{bottom:681.405000px;}
.ya1{bottom:681.765000px;}
.yd0{bottom:691.485000px;}
.y1c{bottom:694.365000px;}
.ye{bottom:697.425000px;}
.ya0{bottom:698.505000px;}
.y6e{bottom:707.865000px;}
.ycf{bottom:708.765000px;}
.y6d{bottom:725.145000px;}
.yce{bottom:725.865000px;}
.y6c{bottom:742.425000px;}
.ycd{bottom:743.145000px;}
.y6b{bottom:759.705000px;}
.ycc{bottom:760.425000px;}
.y9f{bottom:776.625000px;}
.y6a{bottom:776.985000px;}
.ycb{bottom:777.705000px;}
.y69{bottom:794.265000px;}
.yca{bottom:794.985000px;}
.y9e{bottom:803.265000px;}
.y68{bottom:811.365000px;}
.yc9{bottom:811.905000px;}
.y9d{bottom:820.365000px;}
.y67{bottom:828.645000px;}
.y9c{bottom:837.645000px;}
.yc8{bottom:838.365000px;}
.y66{bottom:845.565000px;}
.y9b{bottom:854.925000px;}
.yc7{bottom:855.645000px;}
.y9a{bottom:871.845000px;}
.y65{bottom:872.205000px;}
.yc6{bottom:872.925000px;}
.y64{bottom:889.485000px;}
.yc5{bottom:890.205000px;}
.y99{bottom:898.485000px;}
.y63{bottom:906.765000px;}
.yc4{bottom:907.485000px;}
.y98{bottom:915.765000px;}
.y62{bottom:923.910000px;}
.yc3{bottom:924.810000px;}
.y97{bottom:932.910000px;}
.y61{bottom:940.830000px;}
.yc2{bottom:941.910000px;}
.y96{bottom:949.830000px;}
.yc1{bottom:959.190000px;}
.y60{bottom:967.470000px;}
.y95{bottom:976.470000px;}
.y5f{bottom:984.750000px;}
.y94{bottom:993.750000px;}
.yc{bottom:1001.670000px;}
.yb{bottom:1007.070000px;}
.y93{bottom:1010.670000px;}
.yc0{bottom:1011.030000px;}
.ya{bottom:1024.350000px;}
.ybf{bottom:1027.770000px;}
.y5e{bottom:1028.130000px;}
.y92{bottom:1037.130000px;}
.y5d{bottom:1045.410000px;}
.y91{bottom:1054.410000px;}
.y9{bottom:1059.810000px;}
.y5c{bottom:1062.690000px;}
.y90{bottom:1071.690000px;}
.y5b{bottom:1079.610000px;}
.y8{bottom:1088.250000px;}
.y8f{bottom:1088.970000px;}
.y58{bottom:1091.700000px;}
.y8e{bottom:1105.890000px;}
.y5a{bottom:1106.250000px;}
.y6{bottom:1121.370000px;}
.y1{bottom:1126.950000px;}
.hb{height:4.165313px;}
.h15{height:5.650313px;}
.h7{height:23.632383px;}
.h17{height:27.540000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.he{height:40.985156px;}
.h19{height:41.726953px;}
.hd{height:42.086250px;}
.hf{height:52.971680px;}
.h14{height:54.421875px;}
.h8{height:57.324375px;}
.h16{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:59.439023px;}
.ha{height:60.226875px;}
.h1a{height:61.423863px;}
.h10{height:62.211094px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:81.570000px;}
.h9{height:84.898125px;}
.h4{height:117.180000px;}
.h11{height:201.810000px;}
.hc{height:706.950000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x17{left:8.085000px;}
.x4{left:12.765000px;}
.x14{left:16.911000px;}
.x5{left:18.885000px;}
.x15{left:23.391000px;}
.x1b{left:29.151000px;}
.x6{left:35.985000px;}
.xe{left:43.731000px;}
.x1a{left:47.691000px;}
.xf{left:50.751000px;}
.xd{left:55.071000px;}
.x1d{left:57.051000px;}
.x18{left:62.130000px;}
.x1c{left:66.225000px;}
.x11{left:67.485000px;}
.x1{left:78.300000px;}
.x13{left:79.545000px;}
.x7{left:86.436000px;}
.x12{left:94.125000px;}
.x2{left:95.790000px;}
.x1e{left:102.765000px;}
.x19{left:106.725000px;}
.x20{left:113.436000px;}
.x10{left:124.545000px;}
.x21{left:140.436000px;}
.x3{left:182.385000px;}
.x16{left:219.105000px;}
.xa{left:440.175000px;}
.xb{left:582.405000px;}
.x9{left:766.050000px;}
.x8{left:799.380000px;}
.xc{left:806.940000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls4{letter-spacing:4.000000pt;}
.lse{letter-spacing:4.640000pt;}
.lsf{letter-spacing:12.320000pt;}
.ls1{letter-spacing:14.880000pt;}
.ls3{letter-spacing:40.912640pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.463467pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.200533pt;}
.ws2{word-spacing:-9.078933pt;}
.ws6{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.221760pt;}
._2{width:2.534827pt;}
._7{width:3.504000pt;}
._5{width:4.992000pt;}
._8{width:6.000000pt;}
._6{width:7.322667pt;}
._e{width:8.348373pt;}
._13{width:9.242880pt;}
._b{width:10.199040pt;}
._c{width:11.367680pt;}
._d{width:12.376960pt;}
._14{width:14.214827pt;}
._15{width:15.457920pt;}
._10{width:16.360960pt;}
._f{width:17.529600pt;}
._16{width:18.432640pt;}
._4{width:19.888000pt;}
._11{width:21.365120pt;}
._12{width:22.376533pt;}
._a{width:25.352320pt;}
._9{width:26.576000pt;}
._17{width:29.216000pt;}
._3{width:154.616533pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.400000pt;}
.y42{bottom:3.346667pt;}
.y5{bottom:3.360000pt;}
.y59{bottom:4.453333pt;}
.y2{bottom:7.360000pt;}
.y4b{bottom:9.120000pt;}
.y57{bottom:18.400000pt;}
.y41{bottom:18.546667pt;}
.y4{bottom:18.720000pt;}
.y40{bottom:33.906667pt;}
.y56{bottom:34.880000pt;}
.y4a{bottom:35.840000pt;}
.y3{bottom:39.706667pt;}
.y49{bottom:46.080000pt;}
.y3f{bottom:49.266667pt;}
.y7{bottom:51.200000pt;}
.y55{bottom:54.240000pt;}
.y48{bottom:57.760000pt;}
.y3e{bottom:64.626667pt;}
.y47{bottom:69.280000pt;}
.y54{bottom:71.040000pt;}
.y43{bottom:79.520000pt;}
.y3d{bottom:79.666667pt;}
.y53{bottom:84.960000pt;}
.y46{bottom:88.640000pt;}
.ybe{bottom:89.920000pt;}
.y52{bottom:93.280000pt;}
.y3c{bottom:103.346667pt;}
.ybd{bottom:105.280000pt;}
.y8d{bottom:105.920000pt;}
.y51{bottom:110.106667pt;}
.y3b{bottom:118.546667pt;}
.ybc{bottom:120.640000pt;}
.y8c{bottom:121.280000pt;}
.y50{bottom:123.866667pt;}
.y3a{bottom:133.906667pt;}
.ybb{bottom:135.520000pt;}
.y8b{bottom:136.640000pt;}
.y4f{bottom:137.786667pt;}
.y45{bottom:144.026667pt;}
.y39{bottom:148.986667pt;}
.y4e{bottom:151.546667pt;}
.y8a{bottom:151.840000pt;}
.y44{bottom:153.466667pt;}
.yba{bottom:159.200000pt;}
.y4d{bottom:164.986667pt;}
.y89{bottom:166.880000pt;}
.y38{bottom:172.666667pt;}
.yb9{bottom:174.560000pt;}
.y37{bottom:188.026667pt;}
.yb8{bottom:189.946667pt;}
.y88{bottom:190.586667pt;}
.y36{bottom:203.386667pt;}
.yb7{bottom:204.986667pt;}
.y87{bottom:205.946667pt;}
.y35{bottom:218.586667pt;}
.y86{bottom:220.986667pt;}
.yb6{bottom:228.506667pt;}
.y34{bottom:233.946667pt;}
.yb5{bottom:243.866667pt;}
.y85{bottom:244.506667pt;}
.y33{bottom:248.986667pt;}
.yb4{bottom:259.226667pt;}
.yd{bottom:259.560000pt;}
.y84{bottom:259.866667pt;}
.y32{bottom:264.346667pt;}
.yb3{bottom:274.266667pt;}
.y83{bottom:275.226667pt;}
.y31{bottom:288.026667pt;}
.y82{bottom:290.586667pt;}
.yb2{bottom:297.946667pt;}
.y30{bottom:303.226667pt;}
.y81{bottom:305.946667pt;}
.yb1{bottom:313.306667pt;}
.y2f{bottom:318.586667pt;}
.y80{bottom:320.986667pt;}
.yb0{bottom:328.506667pt;}
.y2e{bottom:333.946667pt;}
.y1b{bottom:340.826667pt;}
.yaf{bottom:343.546667pt;}
.y7f{bottom:344.506667pt;}
.y2d{bottom:349.333333pt;}
.y7e{bottom:359.866667pt;}
.y1a{bottom:362.453333pt;}
.y2c{bottom:364.693333pt;}
.yae{bottom:367.226667pt;}
.y7d{bottom:375.226667pt;}
.y2b{bottom:380.053333pt;}
.yad{bottom:382.586667pt;}
.y19{bottom:383.893333pt;}
.y7c{bottom:390.586667pt;}
.y2a{bottom:395.253333pt;}
.yac{bottom:397.986667pt;}
.y18{bottom:405.333333pt;}
.y7b{bottom:405.986667pt;}
.y29{bottom:410.613333pt;}
.yab{bottom:413.026667pt;}
.y7a{bottom:421.346667pt;}
.y28{bottom:425.973333pt;}
.y17{bottom:426.773333pt;}
.yaa{bottom:428.226667pt;}
.y79{bottom:436.226667pt;}
.y27{bottom:441.333333pt;}
.y16{bottom:448.213333pt;}
.ya9{bottom:451.906667pt;}
.y26{bottom:456.373333pt;}
.y78{bottom:459.906667pt;}
.ya8{bottom:467.266667pt;}
.y15{bottom:469.653333pt;}
.y77{bottom:475.266667pt;}
.y25{bottom:479.573333pt;}
.ya7{bottom:482.626667pt;}
.y76{bottom:490.626667pt;}
.y14{bottom:491.093333pt;}
.y24{bottom:493.333333pt;}
.ya6{bottom:497.666667pt;}
.y75{bottom:505.986667pt;}
.y23{bottom:507.093333pt;}
.y13{bottom:512.693333pt;}
.y74{bottom:520.866667pt;}
.y22{bottom:521.013333pt;}
.ya5{bottom:521.186667pt;}
.y12{bottom:534.133333pt;}
.y21{bottom:534.773333pt;}
.ya4{bottom:536.546667pt;}
.yd5{bottom:537.986667pt;}
.y73{bottom:544.546667pt;}
.y20{bottom:548.533333pt;}
.ya3{bottom:551.906667pt;}
.yd4{bottom:553.186667pt;}
.y11{bottom:555.613333pt;}
.y72{bottom:559.906667pt;}
.y1f{bottom:562.333333pt;}
.ya2{bottom:566.946667pt;}
.yd3{bottom:568.546667pt;}
.y71{bottom:575.266667pt;}
.y1e{bottom:576.253333pt;}
.y10{bottom:577.053333pt;}
.yd2{bottom:583.906667pt;}
.y1d{bottom:590.013333pt;}
.y70{bottom:590.626667pt;}
.yf{bottom:598.493333pt;}
.yd1{bottom:599.266667pt;}
.y6f{bottom:605.693333pt;}
.ya1{bottom:606.013333pt;}
.yd0{bottom:614.653333pt;}
.y1c{bottom:617.213333pt;}
.ye{bottom:619.933333pt;}
.ya0{bottom:620.893333pt;}
.y6e{bottom:629.213333pt;}
.ycf{bottom:630.013333pt;}
.y6d{bottom:644.573333pt;}
.yce{bottom:645.213333pt;}
.y6c{bottom:659.933333pt;}
.ycd{bottom:660.573333pt;}
.y6b{bottom:675.293333pt;}
.ycc{bottom:675.933333pt;}
.y9f{bottom:690.333333pt;}
.y6a{bottom:690.653333pt;}
.ycb{bottom:691.293333pt;}
.y69{bottom:706.013333pt;}
.yca{bottom:706.653333pt;}
.y9e{bottom:714.013333pt;}
.y68{bottom:721.213333pt;}
.yc9{bottom:721.693333pt;}
.y9d{bottom:729.213333pt;}
.y67{bottom:736.573333pt;}
.y9c{bottom:744.573333pt;}
.yc8{bottom:745.213333pt;}
.y66{bottom:751.613333pt;}
.y9b{bottom:759.933333pt;}
.yc7{bottom:760.573333pt;}
.y9a{bottom:774.973333pt;}
.y65{bottom:775.293333pt;}
.yc6{bottom:775.933333pt;}
.y64{bottom:790.653333pt;}
.yc5{bottom:791.293333pt;}
.y99{bottom:798.653333pt;}
.y63{bottom:806.013333pt;}
.yc4{bottom:806.653333pt;}
.y98{bottom:814.013333pt;}
.y62{bottom:821.253333pt;}
.yc3{bottom:822.053333pt;}
.y97{bottom:829.253333pt;}
.y61{bottom:836.293333pt;}
.yc2{bottom:837.253333pt;}
.y96{bottom:844.293333pt;}
.yc1{bottom:852.613333pt;}
.y60{bottom:859.973333pt;}
.y95{bottom:867.973333pt;}
.y5f{bottom:875.333333pt;}
.y94{bottom:883.333333pt;}
.yc{bottom:890.373333pt;}
.yb{bottom:895.173333pt;}
.y93{bottom:898.373333pt;}
.yc0{bottom:898.693333pt;}
.ya{bottom:910.533333pt;}
.ybf{bottom:913.573333pt;}
.y5e{bottom:913.893333pt;}
.y92{bottom:921.893333pt;}
.y5d{bottom:929.253333pt;}
.y91{bottom:937.253333pt;}
.y9{bottom:942.053333pt;}
.y5c{bottom:944.613333pt;}
.y90{bottom:952.613333pt;}
.y5b{bottom:959.653333pt;}
.y8{bottom:967.333333pt;}
.y8f{bottom:967.973333pt;}
.y58{bottom:970.400000pt;}
.y8e{bottom:983.013333pt;}
.y5a{bottom:983.333333pt;}
.y6{bottom:996.773333pt;}
.y1{bottom:1001.733333pt;}
.hb{height:3.702500pt;}
.h15{height:5.022500pt;}
.h7{height:21.006562pt;}
.h17{height:24.480000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.he{height:36.431250pt;}
.h19{height:37.090625pt;}
.hd{height:37.410000pt;}
.hf{height:47.085938pt;}
.h14{height:48.375000pt;}
.h8{height:50.955000pt;}
.h16{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:52.834688pt;}
.ha{height:53.535000pt;}
.h1a{height:54.598989pt;}
.h10{height:55.298750pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:72.506667pt;}
.h9{height:75.465000pt;}
.h4{height:104.160000pt;}
.h11{height:179.386667pt;}
.hc{height:628.400000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x17{left:7.186667pt;}
.x4{left:11.346667pt;}
.x14{left:15.032000pt;}
.x5{left:16.786667pt;}
.x15{left:20.792000pt;}
.x1b{left:25.912000pt;}
.x6{left:31.986667pt;}
.xe{left:38.872000pt;}
.x1a{left:42.392000pt;}
.xf{left:45.112000pt;}
.xd{left:48.952000pt;}
.x1d{left:50.712000pt;}
.x18{left:55.226667pt;}
.x1c{left:58.866667pt;}
.x11{left:59.986667pt;}
.x1{left:69.600000pt;}
.x13{left:70.706667pt;}
.x7{left:76.832000pt;}
.x12{left:83.666667pt;}
.x2{left:85.146667pt;}
.x1e{left:91.346667pt;}
.x19{left:94.866667pt;}
.x20{left:100.832000pt;}
.x10{left:110.706667pt;}
.x21{left:124.832000pt;}
.x3{left:162.120000pt;}
.x16{left:194.760000pt;}
.xa{left:391.266667pt;}
.xb{left:517.693333pt;}
.x9{left:680.933333pt;}
.x8{left:710.560000pt;}
.xc{left:717.280000pt;}
}




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