
    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_5fcea790dee8b29b186512ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_f524b5091b496f21e91d5b89.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1536eed61883d81b6f49ecd2.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_818276a6cdc4716408fc4b03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_eac98bf9e92cb1db58672701.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_4060590b25d4afa3c8a159ba.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0187df9b1b0373ea1c010039.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_febbdba8ce1e50eed1791237.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.184082;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_0f5cc5243b244cb24beee7b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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:-67.680000px;}
.v2{vertical-align:-66.240000px;}
.v1{vertical-align:-61.200000px;}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-0.774000px;}
.ls12{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls21{letter-spacing:0.053280px;}
.ls28{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.262080px;}
.ls29{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:1.440000px;}
.ls16{letter-spacing:2.160000px;}
.ls1d{letter-spacing:2.880000px;}
.lsc{letter-spacing:3.600000px;}
.ls13{letter-spacing:4.320000px;}
.ls11{letter-spacing:5.040000px;}
.ls23{letter-spacing:5.220000px;}
.ls1b{letter-spacing:6.480000px;}
.ls1c{letter-spacing:7.200000px;}
.ls22{letter-spacing:7.380000px;}
.ls5{letter-spacing:10.260000px;}
.lsf{letter-spacing:11.700000px;}
.ls20{letter-spacing:12.240000px;}
.ls10{letter-spacing:12.960000px;}
.ls19{letter-spacing:15.120000px;}
.ls2b{letter-spacing:16.020000px;}
.ls14{letter-spacing:18.000000px;}
.ls6{letter-spacing:18.180000px;}
.ls9{letter-spacing:18.720000px;}
.lsd{letter-spacing:19.440000px;}
.ls15{letter-spacing:21.600000px;}
.ls1e{letter-spacing:26.640000px;}
.ls1f{letter-spacing:28.080000px;}
.ls17{letter-spacing:38.880000px;}
.ls8{letter-spacing:46.200000px;}
.ls1a{letter-spacing:46.800000px;}
.ls4{letter-spacing:158.004000px;}
.ls2a{letter-spacing:787.980000px;}
.ls2{letter-spacing:919.920000px;}
.ls24{letter-spacing:1293.456000px;}
.ls2c{letter-spacing:2194.440000px;}
.ls0{letter-spacing:2289.480000px;}
.ls2d{letter-spacing:2879.340000px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws3{word-spacing:0.000000px;}
._22{margin-left:-3.301440px;}
._3{margin-left:-2.270880px;}
._1{margin-left:-1.195200px;}
._0{width:1.135440px;}
._2{width:2.956800px;}
._f{width:4.183200px;}
._d{width:5.497920px;}
._e{width:6.633360px;}
._10{width:8.007840px;}
._9{width:9.083520px;}
._7{width:10.297440px;}
._8{width:11.354640px;}
._a{width:12.870720px;}
._1c{width:14.807040px;}
._27{width:15.996000px;}
._c{width:17.351280px;}
._b{width:18.684000px;}
._12{width:19.805760px;}
._13{width:21.395520px;}
._23{width:22.557600px;}
._24{width:23.928480px;}
._16{width:25.044480px;}
._11{width:26.593200px;}
._1f{width:28.353360px;}
._20{width:29.476800px;}
._1d{width:31.199040px;}
._1e{width:32.258880px;}
._21{width:36.752640px;}
._15{width:38.021760px;}
._25{width:39.218160px;}
._4{width:43.086960px;}
._5{width:44.156640px;}
._6{width:45.363840px;}
._26{width:47.184000px;}
._14{width:52.992000px;}
._1b{width:71.174160px;}
._1a{width:77.150160px;}
._19{width:97.289280px;}
._17{width:98.424720px;}
._18{width:99.530640px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.y56{bottom:3.780000px;}
.y59{bottom:12.240000px;}
.y53{bottom:12.420000px;}
.y5b{bottom:20.880000px;}
.y5e{bottom:21.060000px;}
.y55{bottom:21.105000px;}
.y58{bottom:29.520000px;}
.y60{bottom:29.700000px;}
.y52{bottom:29.745000px;}
.y5a{bottom:38.160000px;}
.y5d{bottom:38.340000px;}
.y54{bottom:38.385000px;}
.y5f{bottom:46.980000px;}
.y61{bottom:55.620000px;}
.y40{bottom:56.700000px;}
.y82{bottom:89.136000px;}
.y3f{bottom:91.656000px;}
.yae{bottom:102.816000px;}
.ye2{bottom:102.996000px;}
.y3e{bottom:107.136000px;}
.y81{bottom:108.036000px;}
.ye1{bottom:120.276000px;}
.yad{bottom:121.716000px;}
.y3d{bottom:122.436000px;}
.y80{bottom:127.116000px;}
.y3c{bottom:137.196000px;}
.ye0{bottom:137.556000px;}
.yac{bottom:140.796000px;}
.y7f{bottom:146.016000px;}
.ydf{bottom:154.830000px;}
.y3b{bottom:156.270000px;}
.yab{bottom:159.690000px;}
.y7e{bottom:165.090000px;}
.yde{bottom:172.110000px;}
.y3a{bottom:175.170000px;}
.yaa{bottom:178.590000px;}
.y7d{bottom:183.990000px;}
.ydd{bottom:189.210000px;}
.y39{bottom:194.250000px;}
.ya9{bottom:197.670000px;}
.y7c{bottom:202.890000px;}
.y38{bottom:213.150000px;}
.ya8{bottom:216.570000px;}
.y7b{bottom:221.970000px;}
.ydc{bottom:223.050000px;}
.y37{bottom:232.230000px;}
.ya7{bottom:235.650000px;}
.ydb{bottom:237.630000px;}
.y7a{bottom:240.870000px;}
.y36{bottom:251.130000px;}
.ya6{bottom:254.550000px;}
.yda{bottom:254.910000px;}
.y79{bottom:259.950000px;}
.y35{bottom:270.030000px;}
.yd9{bottom:272.010000px;}
.ya5{bottom:273.630000px;}
.y78{bottom:278.850000px;}
.y34{bottom:289.110000px;}
.yd8{bottom:289.290000px;}
.ya4{bottom:292.530000px;}
.y77{bottom:297.750000px;}
.yd7{bottom:306.570000px;}
.y33{bottom:308.010000px;}
.ya3{bottom:311.430000px;}
.y76{bottom:316.830000px;}
.yd6{bottom:323.850000px;}
.y32{bottom:327.090000px;}
.ya2{bottom:330.555000px;}
.y75{bottom:335.775000px;}
.yd5{bottom:341.175000px;}
.y31{bottom:346.035000px;}
.ya1{bottom:349.455000px;}
.y74{bottom:354.855000px;}
.yd4{bottom:358.455000px;}
.y30{bottom:364.935000px;}
.ya0{bottom:368.535000px;}
.y73{bottom:373.755000px;}
.yd3{bottom:375.555000px;}
.y2f{bottom:384.015000px;}
.y9f{bottom:387.435000px;}
.y72{bottom:392.835000px;}
.y2e{bottom:402.915000px;}
.y9e{bottom:406.335000px;}
.yd2{bottom:410.115000px;}
.y71{bottom:411.735000px;}
.y2d{bottom:421.995000px;}
.y9d{bottom:425.415000px;}
.yd1{bottom:427.395000px;}
.y70{bottom:430.635000px;}
.y2c{bottom:440.895000px;}
.y9c{bottom:444.315000px;}
.yd0{bottom:444.675000px;}
.y6f{bottom:449.715000px;}
.y2b{bottom:459.795000px;}
.ycf{bottom:461.955000px;}
.y9b{bottom:463.395000px;}
.y6e{bottom:468.615000px;}
.y2a{bottom:478.875000px;}
.yce{bottom:479.055000px;}
.y9a{bottom:482.295000px;}
.y6d{bottom:487.695000px;}
.ycd{bottom:496.335000px;}
.y29{bottom:497.775000px;}
.y99{bottom:501.195000px;}
.y6c{bottom:506.595000px;}
.ycc{bottom:513.615000px;}
.y28{bottom:516.855000px;}
.y98{bottom:520.275000px;}
.y6b{bottom:525.495000px;}
.ycb{bottom:530.895000px;}
.y27{bottom:535.755000px;}
.y97{bottom:539.175000px;}
.yfe{bottom:543.315000px;}
.y6a{bottom:544.575000px;}
.yca{bottom:548.175000px;}
.y26{bottom:554.655000px;}
.yfd{bottom:557.895000px;}
.y96{bottom:558.255000px;}
.y69{bottom:563.475000px;}
.yc9{bottom:565.275000px;}
.y25{bottom:573.735000px;}
.yfc{bottom:575.175000px;}
.y95{bottom:577.155000px;}
.yc8{bottom:582.195000px;}
.y68{bottom:582.555000px;}
.y24{bottom:592.635000px;}
.y94{bottom:596.085000px;}
.yc7{bottom:599.145000px;}
.y67{bottom:601.485000px;}
.yfb{bottom:608.865000px;}
.y23{bottom:611.745000px;}
.yc6{bottom:613.905000px;}
.y93{bottom:615.165000px;}
.y66{bottom:620.385000px;}
.yfa{bottom:623.445000px;}
.y22{bottom:630.645000px;}
.yc5{bottom:632.985000px;}
.y92{bottom:634.065000px;}
.y65{bottom:639.465000px;}
.yf9{bottom:640.725000px;}
.y21{bottom:649.725000px;}
.yc4{bottom:651.885000px;}
.y91{bottom:653.145000px;}
.yf8{bottom:658.005000px;}
.y64{bottom:658.365000px;}
.y20{bottom:668.625000px;}
.yc3{bottom:670.965000px;}
.y90{bottom:672.045000px;}
.yf7{bottom:675.285000px;}
.y63{bottom:677.445000px;}
.y1f{bottom:687.525000px;}
.yc2{bottom:689.865000px;}
.y8f{bottom:690.945000px;}
.yf6{bottom:692.385000px;}
.y62{bottom:695.265000px;}
.y1e{bottom:705.525000px;}
.yc1{bottom:708.765000px;}
.yf5{bottom:709.665000px;}
.y8e{bottom:710.025000px;}
.y5c{bottom:710.205000px;}
.y1d{bottom:720.105000px;}
.yf4{bottom:726.945000px;}
.yc0{bottom:727.845000px;}
.y8d{bottom:728.925000px;}
.y1c{bottom:737.385000px;}
.yf3{bottom:744.225000px;}
.ybf{bottom:746.745000px;}
.y8c{bottom:748.005000px;}
.y1b{bottom:754.485000px;}
.yf2{bottom:761.505000px;}
.ybe{bottom:765.825000px;}
.y8b{bottom:766.905000px;}
.y1a{bottom:771.765000px;}
.yf1{bottom:778.785000px;}
.y57{bottom:784.545000px;}
.ybd{bottom:784.725000px;}
.y8a{bottom:785.985000px;}
.y19{bottom:789.045000px;}
.yf0{bottom:795.885000px;}
.ybc{bottom:803.625000px;}
.y89{bottom:804.885000px;}
.y18{bottom:806.325000px;}
.yef{bottom:812.265000px;}
.ybb{bottom:822.705000px;}
.y17{bottom:823.605000px;}
.y88{bottom:823.785000px;}
.yee{bottom:827.025000px;}
.y16{bottom:840.885000px;}
.y51{bottom:841.425000px;}
.yba{bottom:841.605000px;}
.y87{bottom:842.865000px;}
.y15{bottom:857.985000px;}
.yb9{bottom:860.685000px;}
.y86{bottom:861.765000px;}
.yed{bottom:874.950000px;}
.y14{bottom:875.310000px;}
.yb8{bottom:879.630000px;}
.y85{bottom:880.890000px;}
.yec{bottom:892.230000px;}
.y4f{bottom:898.530000px;}
.y84{bottom:899.790000px;}
.yeb{bottom:908.970000px;}
.y13{bottom:909.150000px;}
.yb7{bottom:917.610000px;}
.y83{bottom:918.690000px;}
.y4e{bottom:922.830000px;}
.y12{bottom:923.730000px;}
.yb6{bottom:936.510000px;}
.y4d{bottom:937.770000px;}
.y11{bottom:940.830000px;}
.yb5{bottom:955.590000px;}
.y4c{bottom:956.670000px;}
.y10{bottom:958.110000px;}
.yb4{bottom:974.490000px;}
.yf{bottom:975.390000px;}
.y4b{bottom:975.750000px;}
.yea{bottom:992.670000px;}
.yb3{bottom:993.570000px;}
.y4a{bottom:994.650000px;}
.ye{bottom:1009.230000px;}
.ye9{bottom:1009.950000px;}
.yb2{bottom:1012.470000px;}
.y49{bottom:1013.550000px;}
.yd{bottom:1023.270000px;}
.ye8{bottom:1027.050000px;}
.yb1{bottom:1031.370000px;}
.y48{bottom:1032.630000px;}
.yc{bottom:1040.550000px;}
.ye7{bottom:1044.330000px;}
.yb0{bottom:1050.450000px;}
.y47{bottom:1051.530000px;}
.yb{bottom:1056.930000px;}
.ye6{bottom:1061.610000px;}
.ya{bottom:1069.710000px;}
.yaf{bottom:1070.070000px;}
.y46{bottom:1070.610000px;}
.ye5{bottom:1078.890000px;}
.y9{bottom:1085.370000px;}
.y45{bottom:1089.510000px;}
.ye4{bottom:1096.170000px;}
.y44{bottom:1108.410000px;}
.ye3{bottom:1113.450000px;}
.y8{bottom:1116.150000px;}
.y43{bottom:1127.490000px;}
.y7{bottom:1130.580000px;}
.y42{bottom:1146.420000px;}
.y6{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y41{bottom:1189.260000px;}
.y4{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h5{height:17.280000px;}
.h8{height:40.985156px;}
.hb{height:47.321367px;}
.h6{height:47.344922px;}
.h14{height:48.616875px;}
.h4{height:49.583118px;}
.hf{height:51.660000px;}
.he{height:51.876000px;}
.h7{height:52.998047px;}
.ha{height:53.252930px;}
.h2{height:58.651172px;}
.hc{height:59.027344px;}
.h9{height:60.226875px;}
.h3{height:61.423863px;}
.h11{height:64.978594px;}
.hd{height:65.010937px;}
.h12{height:66.757500px;}
.h13{height:67.824844px;}
.h10{height:69.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:14.940000px;}
.w4{width:16.920000px;}
.w5{width:98.460000px;}
.w6{width:286.455000px;}
.w7{width:333.930000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.080000px;}
.x11{left:47.514000px;}
.x4{left:63.900000px;}
.x8{left:90.899987px;}
.x10{left:105.336000px;}
.x5{left:106.415987px;}
.xd{left:117.035987px;}
.x13{left:125.865000px;}
.x18{left:133.235987px;}
.x15{left:145.980000px;}
.xf{left:148.895987px;}
.x12{left:206.850000px;}
.x1{left:262.109987px;}
.x9{left:275.609987px;}
.x19{left:348.374987px;}
.x17{left:355.574987px;}
.x2{left:441.254987px;}
.x1a{left:451.874987px;}
.x14{left:496.365000px;}
.xa{left:551.444987px;}
.x1c{left:582.944987px;}
.x7{left:603.284987px;}
.x1b{left:608.684987px;}
.x6{left:626.504987px;}
.xc{left:630.284987px;}
.xb{left:767.489987px;}
.x3{left:786.749987px;}
.xe{left:819.150000px;}
@media print{
.v3{vertical-align:-60.160000pt;}
.v2{vertical-align:-58.880000pt;}
.v1{vertical-align:-54.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-0.688000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls21{letter-spacing:0.047360pt;}
.ls28{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.232960pt;}
.ls29{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:2.560000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.840000pt;}
.ls11{letter-spacing:4.480000pt;}
.ls23{letter-spacing:4.640000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls22{letter-spacing:6.560000pt;}
.ls5{letter-spacing:9.120000pt;}
.lsf{letter-spacing:10.400000pt;}
.ls20{letter-spacing:10.880000pt;}
.ls10{letter-spacing:11.520000pt;}
.ls19{letter-spacing:13.440000pt;}
.ls2b{letter-spacing:14.240000pt;}
.ls14{letter-spacing:16.000000pt;}
.ls6{letter-spacing:16.160000pt;}
.ls9{letter-spacing:16.640000pt;}
.lsd{letter-spacing:17.280000pt;}
.ls15{letter-spacing:19.200000pt;}
.ls1e{letter-spacing:23.680000pt;}
.ls1f{letter-spacing:24.960000pt;}
.ls17{letter-spacing:34.560000pt;}
.ls8{letter-spacing:41.066667pt;}
.ls1a{letter-spacing:41.600000pt;}
.ls4{letter-spacing:140.448000pt;}
.ls2a{letter-spacing:700.426667pt;}
.ls2{letter-spacing:817.706667pt;}
.ls24{letter-spacing:1149.738667pt;}
.ls2c{letter-spacing:1950.613333pt;}
.ls0{letter-spacing:2035.093333pt;}
.ls2d{letter-spacing:2559.413333pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws3{word-spacing:0.000000pt;}
._22{margin-left:-2.934613pt;}
._3{margin-left:-2.018560pt;}
._1{margin-left:-1.062400pt;}
._0{width:1.009280pt;}
._2{width:2.628267pt;}
._f{width:3.718400pt;}
._d{width:4.887040pt;}
._e{width:5.896320pt;}
._10{width:7.118080pt;}
._9{width:8.074240pt;}
._7{width:9.153280pt;}
._8{width:10.093013pt;}
._a{width:11.440640pt;}
._1c{width:13.161813pt;}
._27{width:14.218667pt;}
._c{width:15.423360pt;}
._b{width:16.608000pt;}
._12{width:17.605120pt;}
._13{width:19.018240pt;}
._23{width:20.051200pt;}
._24{width:21.269760pt;}
._16{width:22.261760pt;}
._11{width:23.638400pt;}
._1f{width:25.202987pt;}
._20{width:26.201600pt;}
._1d{width:27.732480pt;}
._1e{width:28.674560pt;}
._21{width:32.669013pt;}
._15{width:33.797120pt;}
._25{width:34.860587pt;}
._4{width:38.299520pt;}
._5{width:39.250347pt;}
._6{width:40.323413pt;}
._26{width:41.941333pt;}
._14{width:47.104000pt;}
._1b{width:63.265920pt;}
._1a{width:68.577920pt;}
._19{width:86.479360pt;}
._17{width:87.488640pt;}
._18{width:88.471680pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.y56{bottom:3.360000pt;}
.y59{bottom:10.880000pt;}
.y53{bottom:11.040000pt;}
.y5b{bottom:18.560000pt;}
.y5e{bottom:18.720000pt;}
.y55{bottom:18.760000pt;}
.y58{bottom:26.240000pt;}
.y60{bottom:26.400000pt;}
.y52{bottom:26.440000pt;}
.y5a{bottom:33.920000pt;}
.y5d{bottom:34.080000pt;}
.y54{bottom:34.120000pt;}
.y5f{bottom:41.760000pt;}
.y61{bottom:49.440000pt;}
.y40{bottom:50.400000pt;}
.y82{bottom:79.232000pt;}
.y3f{bottom:81.472000pt;}
.yae{bottom:91.392000pt;}
.ye2{bottom:91.552000pt;}
.y3e{bottom:95.232000pt;}
.y81{bottom:96.032000pt;}
.ye1{bottom:106.912000pt;}
.yad{bottom:108.192000pt;}
.y3d{bottom:108.832000pt;}
.y80{bottom:112.992000pt;}
.y3c{bottom:121.952000pt;}
.ye0{bottom:122.272000pt;}
.yac{bottom:125.152000pt;}
.y7f{bottom:129.792000pt;}
.ydf{bottom:137.626667pt;}
.y3b{bottom:138.906667pt;}
.yab{bottom:141.946667pt;}
.y7e{bottom:146.746667pt;}
.yde{bottom:152.986667pt;}
.y3a{bottom:155.706667pt;}
.yaa{bottom:158.746667pt;}
.y7d{bottom:163.546667pt;}
.ydd{bottom:168.186667pt;}
.y39{bottom:172.666667pt;}
.ya9{bottom:175.706667pt;}
.y7c{bottom:180.346667pt;}
.y38{bottom:189.466667pt;}
.ya8{bottom:192.506667pt;}
.y7b{bottom:197.306667pt;}
.ydc{bottom:198.266667pt;}
.y37{bottom:206.426667pt;}
.ya7{bottom:209.466667pt;}
.ydb{bottom:211.226667pt;}
.y7a{bottom:214.106667pt;}
.y36{bottom:223.226667pt;}
.ya6{bottom:226.266667pt;}
.yda{bottom:226.586667pt;}
.y79{bottom:231.066667pt;}
.y35{bottom:240.026667pt;}
.yd9{bottom:241.786667pt;}
.ya5{bottom:243.226667pt;}
.y78{bottom:247.866667pt;}
.y34{bottom:256.986667pt;}
.yd8{bottom:257.146667pt;}
.ya4{bottom:260.026667pt;}
.y77{bottom:264.666667pt;}
.yd7{bottom:272.506667pt;}
.y33{bottom:273.786667pt;}
.ya3{bottom:276.826667pt;}
.y76{bottom:281.626667pt;}
.yd6{bottom:287.866667pt;}
.y32{bottom:290.746667pt;}
.ya2{bottom:293.826667pt;}
.y75{bottom:298.466667pt;}
.yd5{bottom:303.266667pt;}
.y31{bottom:307.586667pt;}
.ya1{bottom:310.626667pt;}
.y74{bottom:315.426667pt;}
.yd4{bottom:318.626667pt;}
.y30{bottom:324.386667pt;}
.ya0{bottom:327.586667pt;}
.y73{bottom:332.226667pt;}
.yd3{bottom:333.826667pt;}
.y2f{bottom:341.346667pt;}
.y9f{bottom:344.386667pt;}
.y72{bottom:349.186667pt;}
.y2e{bottom:358.146667pt;}
.y9e{bottom:361.186667pt;}
.yd2{bottom:364.546667pt;}
.y71{bottom:365.986667pt;}
.y2d{bottom:375.106667pt;}
.y9d{bottom:378.146667pt;}
.yd1{bottom:379.906667pt;}
.y70{bottom:382.786667pt;}
.y2c{bottom:391.906667pt;}
.y9c{bottom:394.946667pt;}
.yd0{bottom:395.266667pt;}
.y6f{bottom:399.746667pt;}
.y2b{bottom:408.706667pt;}
.ycf{bottom:410.626667pt;}
.y9b{bottom:411.906667pt;}
.y6e{bottom:416.546667pt;}
.y2a{bottom:425.666667pt;}
.yce{bottom:425.826667pt;}
.y9a{bottom:428.706667pt;}
.y6d{bottom:433.506667pt;}
.ycd{bottom:441.186667pt;}
.y29{bottom:442.466667pt;}
.y99{bottom:445.506667pt;}
.y6c{bottom:450.306667pt;}
.ycc{bottom:456.546667pt;}
.y28{bottom:459.426667pt;}
.y98{bottom:462.466667pt;}
.y6b{bottom:467.106667pt;}
.ycb{bottom:471.906667pt;}
.y27{bottom:476.226667pt;}
.y97{bottom:479.266667pt;}
.yfe{bottom:482.946667pt;}
.y6a{bottom:484.066667pt;}
.yca{bottom:487.266667pt;}
.y26{bottom:493.026667pt;}
.yfd{bottom:495.906667pt;}
.y96{bottom:496.226667pt;}
.y69{bottom:500.866667pt;}
.yc9{bottom:502.466667pt;}
.y25{bottom:509.986667pt;}
.yfc{bottom:511.266667pt;}
.y95{bottom:513.026667pt;}
.yc8{bottom:517.506667pt;}
.y68{bottom:517.826667pt;}
.y24{bottom:526.786667pt;}
.y94{bottom:529.853333pt;}
.yc7{bottom:532.573333pt;}
.y67{bottom:534.653333pt;}
.yfb{bottom:541.213333pt;}
.y23{bottom:543.773333pt;}
.yc6{bottom:545.693333pt;}
.y93{bottom:546.813333pt;}
.y66{bottom:551.453333pt;}
.yfa{bottom:554.173333pt;}
.y22{bottom:560.573333pt;}
.yc5{bottom:562.653333pt;}
.y92{bottom:563.613333pt;}
.y65{bottom:568.413333pt;}
.yf9{bottom:569.533333pt;}
.y21{bottom:577.533333pt;}
.yc4{bottom:579.453333pt;}
.y91{bottom:580.573333pt;}
.yf8{bottom:584.893333pt;}
.y64{bottom:585.213333pt;}
.y20{bottom:594.333333pt;}
.yc3{bottom:596.413333pt;}
.y90{bottom:597.373333pt;}
.yf7{bottom:600.253333pt;}
.y63{bottom:602.173333pt;}
.y1f{bottom:611.133333pt;}
.yc2{bottom:613.213333pt;}
.y8f{bottom:614.173333pt;}
.yf6{bottom:615.453333pt;}
.y62{bottom:618.013333pt;}
.y1e{bottom:627.133333pt;}
.yc1{bottom:630.013333pt;}
.yf5{bottom:630.813333pt;}
.y8e{bottom:631.133333pt;}
.y5c{bottom:631.293333pt;}
.y1d{bottom:640.093333pt;}
.yf4{bottom:646.173333pt;}
.yc0{bottom:646.973333pt;}
.y8d{bottom:647.933333pt;}
.y1c{bottom:655.453333pt;}
.yf3{bottom:661.533333pt;}
.ybf{bottom:663.773333pt;}
.y8c{bottom:664.893333pt;}
.y1b{bottom:670.653333pt;}
.yf2{bottom:676.893333pt;}
.ybe{bottom:680.733333pt;}
.y8b{bottom:681.693333pt;}
.y1a{bottom:686.013333pt;}
.yf1{bottom:692.253333pt;}
.y57{bottom:697.373333pt;}
.ybd{bottom:697.533333pt;}
.y8a{bottom:698.653333pt;}
.y19{bottom:701.373333pt;}
.yf0{bottom:707.453333pt;}
.ybc{bottom:714.333333pt;}
.y89{bottom:715.453333pt;}
.y18{bottom:716.733333pt;}
.yef{bottom:722.013333pt;}
.ybb{bottom:731.293333pt;}
.y17{bottom:732.093333pt;}
.y88{bottom:732.253333pt;}
.yee{bottom:735.133333pt;}
.y16{bottom:747.453333pt;}
.y51{bottom:747.933333pt;}
.yba{bottom:748.093333pt;}
.y87{bottom:749.213333pt;}
.y15{bottom:762.653333pt;}
.yb9{bottom:765.053333pt;}
.y86{bottom:766.013333pt;}
.yed{bottom:777.733333pt;}
.y14{bottom:778.053333pt;}
.yb8{bottom:781.893333pt;}
.y85{bottom:783.013333pt;}
.yec{bottom:793.093333pt;}
.y4f{bottom:798.693333pt;}
.y84{bottom:799.813333pt;}
.yeb{bottom:807.973333pt;}
.y13{bottom:808.133333pt;}
.yb7{bottom:815.653333pt;}
.y83{bottom:816.613333pt;}
.y4e{bottom:820.293333pt;}
.y12{bottom:821.093333pt;}
.yb6{bottom:832.453333pt;}
.y4d{bottom:833.573333pt;}
.y11{bottom:836.293333pt;}
.yb5{bottom:849.413333pt;}
.y4c{bottom:850.373333pt;}
.y10{bottom:851.653333pt;}
.yb4{bottom:866.213333pt;}
.yf{bottom:867.013333pt;}
.y4b{bottom:867.333333pt;}
.yea{bottom:882.373333pt;}
.yb3{bottom:883.173333pt;}
.y4a{bottom:884.133333pt;}
.ye{bottom:897.093333pt;}
.ye9{bottom:897.733333pt;}
.yb2{bottom:899.973333pt;}
.y49{bottom:900.933333pt;}
.yd{bottom:909.573333pt;}
.ye8{bottom:912.933333pt;}
.yb1{bottom:916.773333pt;}
.y48{bottom:917.893333pt;}
.yc{bottom:924.933333pt;}
.ye7{bottom:928.293333pt;}
.yb0{bottom:933.733333pt;}
.y47{bottom:934.693333pt;}
.yb{bottom:939.493333pt;}
.ye6{bottom:943.653333pt;}
.ya{bottom:950.853333pt;}
.yaf{bottom:951.173333pt;}
.y46{bottom:951.653333pt;}
.ye5{bottom:959.013333pt;}
.y9{bottom:964.773333pt;}
.y45{bottom:968.453333pt;}
.ye4{bottom:974.373333pt;}
.y44{bottom:985.253333pt;}
.ye3{bottom:989.733333pt;}
.y8{bottom:992.133333pt;}
.y43{bottom:1002.213333pt;}
.y7{bottom:1004.960000pt;}
.y42{bottom:1019.040000pt;}
.y6{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y41{bottom:1057.120000pt;}
.y4{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h5{height:15.360000pt;}
.h8{height:36.431250pt;}
.hb{height:42.063437pt;}
.h6{height:42.084375pt;}
.h14{height:43.215000pt;}
.h4{height:44.073883pt;}
.hf{height:45.920000pt;}
.he{height:46.112000pt;}
.h7{height:47.109375pt;}
.ha{height:47.335938pt;}
.h2{height:52.134375pt;}
.hc{height:52.468750pt;}
.h9{height:53.535000pt;}
.h3{height:54.598989pt;}
.h11{height:57.758750pt;}
.hd{height:57.787500pt;}
.h12{height:59.340000pt;}
.h13{height:60.288750pt;}
.h10{height:61.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:13.280000pt;}
.w4{width:15.040000pt;}
.w5{width:87.520000pt;}
.w6{width:254.626667pt;}
.w7{width:296.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:0.960000pt;}
.x11{left:42.234667pt;}
.x4{left:56.800000pt;}
.x8{left:80.799988pt;}
.x10{left:93.632000pt;}
.x5{left:94.591988pt;}
.xd{left:104.031988pt;}
.x13{left:111.880000pt;}
.x18{left:118.431988pt;}
.x15{left:129.760000pt;}
.xf{left:132.351988pt;}
.x12{left:183.866667pt;}
.x1{left:232.986655pt;}
.x9{left:244.986655pt;}
.x19{left:309.666655pt;}
.x17{left:316.066655pt;}
.x2{left:392.226655pt;}
.x1a{left:401.666655pt;}
.x14{left:441.213333pt;}
.xa{left:490.173322pt;}
.x1c{left:518.173322pt;}
.x7{left:536.253322pt;}
.x1b{left:541.053322pt;}
.x6{left:556.893322pt;}
.xc{left:560.253322pt;}
.xb{left:682.213322pt;}
.x3{left:699.333322pt;}
.xe{left:728.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; }
  