
    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_4c4bcbba6c6576592933fa68.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a805df7df5de6f730aa8e1a3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_a2816982d4812d4096d9987b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ce6e15a8031d7e28ee2e5e8.woff')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_5389c01c1c7c6990f7d7b88e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_729cfbd464f78508a7ed3877.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_da0ffb1ce6b92120bed247a9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_e98a97c1627501b775a77a8f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_22bd27e29e0356d63b123528.woff')format("woff");}.ff9{font-family:ff9;line-height:0.919434;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_a9f8f1bd6da80327a540aa3c.woff')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;}
.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:-27.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-1.746000px;}
.ls14{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.507000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.034560px;}
.lsa{letter-spacing:0.178560px;}
.ls9{letter-spacing:0.190560px;}
.ls0{letter-spacing:0.374880px;}
.ls7{letter-spacing:0.452160px;}
.ls8{letter-spacing:0.464160px;}
.ls1{letter-spacing:0.519840px;}
.lsd{letter-spacing:0.630720px;}
.ls5{letter-spacing:0.642720px;}
.ls3{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.809280px;}
.lsc{letter-spacing:0.821280px;}
.ls12{letter-spacing:19.198560px;}
.ls10{letter-spacing:47.998560px;}
.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:-30.399840px;}
.ws0{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.ws9{word-spacing:-21.332160px;}
.ws6{word-spacing:-20.880000px;}
.ws3{word-spacing:-19.474560px;}
.ws4{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.140160px;}
.wsd{word-spacing:-15.120000px;}
.wse{word-spacing:-14.613000px;}
.wsb{word-spacing:-14.400000px;}
.wsf{word-spacing:-14.148000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-2.896800px;}
._0{margin-left:-1.728000px;}
._1{width:1.900800px;}
._4{width:2.940000px;}
._2{width:3.950880px;}
._5{width:5.856960px;}
._11{width:7.080000px;}
._8{width:8.536320px;}
._7{width:9.676320px;}
._6{width:10.765440px;}
._d{width:12.027360px;}
._c{width:13.256160px;}
._12{width:15.117600px;}
._1b{width:17.107680px;}
._10{width:18.664320px;}
._13{width:20.430240px;}
._a{width:21.769440px;}
._b{width:22.922400px;}
._9{width:23.987040px;}
._e{width:25.565280px;}
._f{width:26.682720px;}
._15{width:27.866880px;}
._14{width:28.955040px;}
._18{width:29.994240px;}
._16{width:32.730720px;}
._17{width:34.338240px;}
._1e{width:40.287840px;}
._19{width:63.048480px;}
._1a{width:65.862720px;}
._1c{width:187.306560px;}
._1d{width:188.624640px;}
._1f{width:198.439200px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs9{font-size:63.360000px;}
.fs8{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsa{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:111.276000px;}
.yb2{bottom:139.716000px;}
.y51{bottom:143.316000px;}
.y83{bottom:147.996000px;}
.y72{bottom:148.356000px;}
.y33{bottom:150.510000px;}
.yb1{bottom:158.790000px;}
.y50{bottom:160.590000px;}
.y82{bottom:165.630000px;}
.y92{bottom:166.710000px;}
.y71{bottom:167.430000px;}
.y32{bottom:169.590000px;}
.yc6{bottom:170.310000px;}
.yec{bottom:172.110000px;}
.y4f{bottom:176.070000px;}
.yb0{bottom:177.510000px;}
.y81{bottom:180.750000px;}
.y70{bottom:186.150000px;}
.y91{bottom:186.510000px;}
.y31{bottom:188.670000px;}
.yc5{bottom:189.390000px;}
.yaf{bottom:196.635000px;}
.y90{bottom:204.195000px;}
.y6f{bottom:205.275000px;}
.yeb{bottom:206.715000px;}
.y30{bottom:207.435000px;}
.yc4{bottom:208.155000px;}
.yae{bottom:215.715000px;}
.y8f{bottom:218.955000px;}
.yea{bottom:223.995000px;}
.y6e{bottom:224.355000px;}
.y2f{bottom:226.515000px;}
.yc3{bottom:227.235000px;}
.yad{bottom:234.795000px;}
.ye9{bottom:241.275000px;}
.y6d{bottom:243.435000px;}
.y2e{bottom:245.595000px;}
.yc2{bottom:246.315000px;}
.yac{bottom:253.515000px;}
.ye8{bottom:258.555000px;}
.y6c{bottom:262.875000px;}
.y2d{bottom:264.315000px;}
.yc1{bottom:265.035000px;}
.yab{bottom:272.595000px;}
.ye7{bottom:275.835000px;}
.y2c{bottom:283.395000px;}
.yc0{bottom:284.115000px;}
.y6b{bottom:285.915000px;}
.yaa{bottom:291.675000px;}
.ye6{bottom:292.755000px;}
.y2b{bottom:302.475000px;}
.ybf{bottom:303.195000px;}
.y6a{bottom:305.355000px;}
.ye5{bottom:310.035000px;}
.ya9{bottom:310.395000px;}
.y2a{bottom:321.585000px;}
.ybe{bottom:322.305000px;}
.y69{bottom:324.465000px;}
.ye4{bottom:327.345000px;}
.ya8{bottom:329.505000px;}
.y29{bottom:340.305000px;}
.ybd{bottom:341.025000px;}
.y68{bottom:343.185000px;}
.ye3{bottom:344.625000px;}
.y117{bottom:346.425000px;}
.ya7{bottom:348.585000px;}
.y28{bottom:359.385000px;}
.ybc{bottom:360.105000px;}
.ye2{bottom:361.905000px;}
.y67{bottom:362.265000px;}
.y116{bottom:363.705000px;}
.ya6{bottom:367.305000px;}
.y27{bottom:378.465000px;}
.ybb{bottom:379.185000px;}
.y115{bottom:380.985000px;}
.y66{bottom:381.345000px;}
.ya5{bottom:386.385000px;}
.ye1{bottom:396.465000px;}
.y26{bottom:397.185000px;}
.yba{bottom:397.905000px;}
.y65{bottom:400.425000px;}
.ya4{bottom:405.465000px;}
.ye0{bottom:413.745000px;}
.y114{bottom:415.185000px;}
.y25{bottom:416.265000px;}
.yb9{bottom:416.985000px;}
.y64{bottom:419.145000px;}
.ya3{bottom:424.545000px;}
.ydf{bottom:431.025000px;}
.y113{bottom:433.185000px;}
.y24{bottom:435.345000px;}
.yb8{bottom:435.705000px;}
.y63{bottom:438.225000px;}
.ya2{bottom:443.265000px;}
.yde{bottom:448.350000px;}
.y112{bottom:451.950000px;}
.y23{bottom:454.110000px;}
.y8e{bottom:454.830000px;}
.yb7{bottom:455.910000px;}
.y62{bottom:457.350000px;}
.ya1{bottom:462.390000px;}
.ydd{bottom:465.630000px;}
.y111{bottom:470.670000px;}
.y22{bottom:473.190000px;}
.y8d{bottom:473.910000px;}
.y61{bottom:476.070000px;}
.yb6{bottom:479.310000px;}
.ya0{bottom:481.470000px;}
.ydc{bottom:485.070000px;}
.y110{bottom:487.950000px;}
.y21{bottom:492.270000px;}
.y8c{bottom:492.630000px;}
.y60{bottom:495.150000px;}
.yb5{bottom:497.670000px;}
.y9f{bottom:500.190000px;}
.ydb{bottom:505.230000px;}
.y20{bottom:511.350000px;}
.y80{bottom:511.710000px;}
.y5f{bottom:514.230000px;}
.yb4{bottom:515.310000px;}
.y9e{bottom:519.270000px;}
.y10f{bottom:522.150000px;}
.yda{bottom:524.310000px;}
.y1f{bottom:530.070000px;}
.y7f{bottom:530.430000px;}
.y8b{bottom:530.790000px;}
.y5e{bottom:532.950000px;}
.y9d{bottom:538.350000px;}
.y10e{bottom:539.790000px;}
.yd9{bottom:543.390000px;}
.y7e{bottom:549.510000px;}
.y1e{bottom:549.870000px;}
.y5d{bottom:552.030000px;}
.y10d{bottom:557.070000px;}
.y9c{bottom:557.430000px;}
.yd8{bottom:562.470000px;}
.y7d{bottom:568.590000px;}
.y5c{bottom:571.110000px;}
.y1d{bottom:573.300000px;}
.y10c{bottom:574.020000px;}
.y9b{bottom:576.180000px;}
.yd7{bottom:581.580000px;}
.y7c{bottom:587.340000px;}
.y4e{bottom:590.220000px;}
.y10b{bottom:591.300000px;}
.y1c{bottom:592.020000px;}
.y9a{bottom:595.260000px;}
.yd6{bottom:600.300000px;}
.y8a{bottom:604.980000px;}
.y7b{bottom:606.420000px;}
.y10a{bottom:608.580000px;}
.y4d{bottom:608.940000px;}
.y1b{bottom:609.660000px;}
.y99{bottom:614.340000px;}
.yd5{bottom:619.380000px;}
.y89{bottom:620.100000px;}
.y7a{bottom:625.500000px;}
.y109{bottom:625.860000px;}
.y4c{bottom:628.020000px;}
.y1a{bottom:629.100000px;}
.y98{bottom:633.060000px;}
.yd4{bottom:638.460000px;}
.y108{bottom:643.500000px;}
.y79{bottom:644.580000px;}
.y4b{bottom:647.100000px;}
.y19{bottom:651.060000px;}
.y97{bottom:652.140000px;}
.yd3{bottom:657.180000px;}
.y107{bottom:662.580000px;}
.y78{bottom:663.300000px;}
.y4a{bottom:665.820000px;}
.y5b{bottom:666.540000px;}
.y18{bottom:669.420000px;}
.y96{bottom:671.220000px;}
.yd2{bottom:676.260000px;}
.y77{bottom:682.380000px;}
.y106{bottom:682.740000px;}
.y49{bottom:684.900000px;}
.y17{bottom:686.700000px;}
.y5a{bottom:689.940000px;}
.yd1{bottom:695.340000px;}
.y105{bottom:700.050000px;}
.y76{bottom:701.130000px;}
.y16{bottom:704.010000px;}
.y59{bottom:709.050000px;}
.yd0{bottom:714.450000px;}
.y104{bottom:717.330000px;}
.y75{bottom:718.770000px;}
.y15{bottom:721.290000px;}
.y48{bottom:722.730000px;}
.y58{bottom:728.130000px;}
.ycf{bottom:733.170000px;}
.y74{bottom:733.530000px;}
.y103{bottom:734.610000px;}
.y14{bottom:738.570000px;}
.y47{bottom:742.530000px;}
.y57{bottom:747.210000px;}
.y102{bottom:751.890000px;}
.yce{bottom:752.250000px;}
.y13{bottom:755.850000px;}
.y46{bottom:765.930000px;}
.y101{bottom:769.170000px;}
.ycd{bottom:771.330000px;}
.y12{bottom:773.130000px;}
.y45{bottom:785.010000px;}
.y100{bottom:786.450000px;}
.ycc{bottom:790.050000px;}
.y11{bottom:790.410000px;}
.yff{bottom:803.730000px;}
.y44{bottom:804.090000px;}
.y10{bottom:807.690000px;}
.ycb{bottom:809.130000px;}
.yfe{bottom:821.010000px;}
.y43{bottom:822.810000px;}
.yf{bottom:825.015000px;}
.yca{bottom:828.255000px;}
.yfd{bottom:837.975000px;}
.y42{bottom:841.935000px;}
.ye{bottom:842.655000px;}
.yc9{bottom:846.975000px;}
.yfc{bottom:855.255000px;}
.y41{bottom:861.015000px;}
.yd{bottom:861.735000px;}
.yc8{bottom:866.055000px;}
.yfb{bottom:872.535000px;}
.y40{bottom:879.735000px;}
.yc{bottom:883.695000px;}
.y95{bottom:884.775000px;}
.yc7{bottom:885.135000px;}
.yfa{bottom:889.815000px;}
.y3f{bottom:898.815000px;}
.y94{bottom:904.215000px;}
.yf9{bottom:907.095000px;}
.yb{bottom:910.335000px;}
.y3e{bottom:917.895000px;}
.y93{bottom:922.935000px;}
.ya{bottom:924.015000px;}
.yf8{bottom:924.375000px;}
.y3d{bottom:936.975000px;}
.yf7{bottom:941.655000px;}
.y88{bottom:942.015000px;}
.y9{bottom:951.765000px;}
.y3c{bottom:955.725000px;}
.yf6{bottom:958.965000px;}
.y87{bottom:961.125000px;}
.y8{bottom:965.445000px;}
.y3b{bottom:974.805000px;}
.yf5{bottom:976.245000px;}
.yb3{bottom:979.485000px;}
.y86{bottom:979.845000px;}
.y7{bottom:986.325000px;}
.yf4{bottom:993.525000px;}
.y3a{bottom:993.885000px;}
.y85{bottom:998.925000px;}
.y6{bottom:1009.005000px;}
.yf3{bottom:1010.805000px;}
.y39{bottom:1012.605000px;}
.y84{bottom:1018.005000px;}
.yf2{bottom:1028.085000px;}
.y56{bottom:1031.685000px;}
.y38{bottom:1032.405000px;}
.y5{bottom:1034.565000px;}
.y73{bottom:1036.725000px;}
.yf1{bottom:1045.005000px;}
.y55{bottom:1050.765000px;}
.y37{bottom:1055.805000px;}
.yf0{bottom:1062.285000px;}
.y4{bottom:1068.045000px;}
.y54{bottom:1069.845000px;}
.y36{bottom:1074.885000px;}
.yef{bottom:1079.610000px;}
.y53{bottom:1088.610000px;}
.y35{bottom:1094.010000px;}
.yee{bottom:1096.890000px;}
.y3{bottom:1101.930000px;}
.y52{bottom:1108.410000px;}
.y34{bottom:1112.730000px;}
.yed{bottom:1114.170000px;}
.y1{bottom:1141.890000px;}
.h14{height:42.229688px;}
.h13{height:42.672656px;}
.h8{height:46.638281px;}
.hd{height:47.901094px;}
.h2{height:56.531250px;}
.hb{height:59.328281px;}
.h3{height:59.357813px;}
.h12{height:60.952500px;}
.h11{height:62.163910px;}
.h9{height:65.010937px;}
.hf{height:66.757500px;}
.h7{height:70.664062px;}
.h10{height:72.562500px;}
.ha{height:76.279219px;}
.h5{height:76.317188px;}
.h6{height:76.824844px;}
.h4{height:80.944453px;}
.he{height:84.172500px;}
.hc{height:86.945625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:122.435987px;}
.x2{left:123.515987px;}
.xd{left:128.915987px;}
.x1{left:136.835987px;}
.x9{left:140.471987px;}
.x7{left:145.151987px;}
.x18{left:157.034987px;}
.x6{left:179.354987px;}
.x4{left:222.194987px;}
.xc{left:280.184987px;}
.x17{left:293.864987px;}
.x5{left:310.424987px;}
.x13{left:319.064987px;}
.x11{left:321.944987px;}
.xf{left:336.029987px;}
.x8{left:343.949987px;}
.x15{left:359.789987px;}
.x3{left:446.579987px;}
.x12{left:610.769987px;}
.xe{left:684.254987px;}
.x10{left:703.334987px;}
.x14{left:745.844987px;}
.x16{left:758.084987px;}
.xb{left:760.244987px;}
.xa{left:762.404987px;}
@media print{
.v2{vertical-align:-24.426667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-1.552000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.450667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.030720pt;}
.lsa{letter-spacing:0.158720pt;}
.ls9{letter-spacing:0.169387pt;}
.ls0{letter-spacing:0.333227pt;}
.ls7{letter-spacing:0.401920pt;}
.ls8{letter-spacing:0.412587pt;}
.ls1{letter-spacing:0.462080pt;}
.lsd{letter-spacing:0.560640pt;}
.ls5{letter-spacing:0.571307pt;}
.ls3{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.719360pt;}
.lsc{letter-spacing:0.730027pt;}
.ls12{letter-spacing:17.065387pt;}
.ls10{letter-spacing:42.665387pt;}
.ws1{word-spacing:-27.022080pt;}
.ws0{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws9{word-spacing:-18.961920pt;}
.ws6{word-spacing:-18.560000pt;}
.ws3{word-spacing:-17.310720pt;}
.ws4{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.457920pt;}
.wsd{word-spacing:-13.440000pt;}
.wse{word-spacing:-12.989333pt;}
.wsb{word-spacing:-12.800000pt;}
.wsf{word-spacing:-12.576000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-2.574933pt;}
._0{margin-left:-1.536000pt;}
._1{width:1.689600pt;}
._4{width:2.613333pt;}
._2{width:3.511893pt;}
._5{width:5.206187pt;}
._11{width:6.293333pt;}
._8{width:7.587840pt;}
._7{width:8.601173pt;}
._6{width:9.569280pt;}
._d{width:10.690987pt;}
._c{width:11.783253pt;}
._12{width:13.437867pt;}
._1b{width:15.206827pt;}
._10{width:16.590507pt;}
._13{width:18.160213pt;}
._a{width:19.350613pt;}
._b{width:20.375467pt;}
._9{width:21.321813pt;}
._e{width:22.724693pt;}
._f{width:23.717973pt;}
._15{width:24.770560pt;}
._14{width:25.737813pt;}
._18{width:26.661547pt;}
._16{width:29.093973pt;}
._17{width:30.522880pt;}
._1e{width:35.811413pt;}
._19{width:56.043093pt;}
._1a{width:58.544640pt;}
._1c{width:166.494720pt;}
._1d{width:167.666347pt;}
._1f{width:176.390400pt;}
.fs7{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs9{font-size:56.320000pt;}
.fs8{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsa{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:98.912000pt;}
.yb2{bottom:124.192000pt;}
.y51{bottom:127.392000pt;}
.y83{bottom:131.552000pt;}
.y72{bottom:131.872000pt;}
.y33{bottom:133.786667pt;}
.yb1{bottom:141.146667pt;}
.y50{bottom:142.746667pt;}
.y82{bottom:147.226667pt;}
.y92{bottom:148.186667pt;}
.y71{bottom:148.826667pt;}
.y32{bottom:150.746667pt;}
.yc6{bottom:151.386667pt;}
.yec{bottom:152.986667pt;}
.y4f{bottom:156.506667pt;}
.yb0{bottom:157.786667pt;}
.y81{bottom:160.666667pt;}
.y70{bottom:165.466667pt;}
.y91{bottom:165.786667pt;}
.y31{bottom:167.706667pt;}
.yc5{bottom:168.346667pt;}
.yaf{bottom:174.786667pt;}
.y90{bottom:181.506667pt;}
.y6f{bottom:182.466667pt;}
.yeb{bottom:183.746667pt;}
.y30{bottom:184.386667pt;}
.yc4{bottom:185.026667pt;}
.yae{bottom:191.746667pt;}
.y8f{bottom:194.626667pt;}
.yea{bottom:199.106667pt;}
.y6e{bottom:199.426667pt;}
.y2f{bottom:201.346667pt;}
.yc3{bottom:201.986667pt;}
.yad{bottom:208.706667pt;}
.ye9{bottom:214.466667pt;}
.y6d{bottom:216.386667pt;}
.y2e{bottom:218.306667pt;}
.yc2{bottom:218.946667pt;}
.yac{bottom:225.346667pt;}
.ye8{bottom:229.826667pt;}
.y6c{bottom:233.666667pt;}
.y2d{bottom:234.946667pt;}
.yc1{bottom:235.586667pt;}
.yab{bottom:242.306667pt;}
.ye7{bottom:245.186667pt;}
.y2c{bottom:251.906667pt;}
.yc0{bottom:252.546667pt;}
.y6b{bottom:254.146667pt;}
.yaa{bottom:259.266667pt;}
.ye6{bottom:260.226667pt;}
.y2b{bottom:268.866667pt;}
.ybf{bottom:269.506667pt;}
.y6a{bottom:271.426667pt;}
.ye5{bottom:275.586667pt;}
.ya9{bottom:275.906667pt;}
.y2a{bottom:285.853333pt;}
.ybe{bottom:286.493333pt;}
.y69{bottom:288.413333pt;}
.ye4{bottom:290.973333pt;}
.ya8{bottom:292.893333pt;}
.y29{bottom:302.493333pt;}
.ybd{bottom:303.133333pt;}
.y68{bottom:305.053333pt;}
.ye3{bottom:306.333333pt;}
.y117{bottom:307.933333pt;}
.ya7{bottom:309.853333pt;}
.y28{bottom:319.453333pt;}
.ybc{bottom:320.093333pt;}
.ye2{bottom:321.693333pt;}
.y67{bottom:322.013333pt;}
.y116{bottom:323.293333pt;}
.ya6{bottom:326.493333pt;}
.y27{bottom:336.413333pt;}
.ybb{bottom:337.053333pt;}
.y115{bottom:338.653333pt;}
.y66{bottom:338.973333pt;}
.ya5{bottom:343.453333pt;}
.ye1{bottom:352.413333pt;}
.y26{bottom:353.053333pt;}
.yba{bottom:353.693333pt;}
.y65{bottom:355.933333pt;}
.ya4{bottom:360.413333pt;}
.ye0{bottom:367.773333pt;}
.y114{bottom:369.053333pt;}
.y25{bottom:370.013333pt;}
.yb9{bottom:370.653333pt;}
.y64{bottom:372.573333pt;}
.ya3{bottom:377.373333pt;}
.ydf{bottom:383.133333pt;}
.y113{bottom:385.053333pt;}
.y24{bottom:386.973333pt;}
.yb8{bottom:387.293333pt;}
.y63{bottom:389.533333pt;}
.ya2{bottom:394.013333pt;}
.yde{bottom:398.533333pt;}
.y112{bottom:401.733333pt;}
.y23{bottom:403.653333pt;}
.y8e{bottom:404.293333pt;}
.yb7{bottom:405.253333pt;}
.y62{bottom:406.533333pt;}
.ya1{bottom:411.013333pt;}
.ydd{bottom:413.893333pt;}
.y111{bottom:418.373333pt;}
.y22{bottom:420.613333pt;}
.y8d{bottom:421.253333pt;}
.y61{bottom:423.173333pt;}
.yb6{bottom:426.053333pt;}
.ya0{bottom:427.973333pt;}
.ydc{bottom:431.173333pt;}
.y110{bottom:433.733333pt;}
.y21{bottom:437.573333pt;}
.y8c{bottom:437.893333pt;}
.y60{bottom:440.133333pt;}
.yb5{bottom:442.373333pt;}
.y9f{bottom:444.613333pt;}
.ydb{bottom:449.093333pt;}
.y20{bottom:454.533333pt;}
.y80{bottom:454.853333pt;}
.y5f{bottom:457.093333pt;}
.yb4{bottom:458.053333pt;}
.y9e{bottom:461.573333pt;}
.y10f{bottom:464.133333pt;}
.yda{bottom:466.053333pt;}
.y1f{bottom:471.173333pt;}
.y7f{bottom:471.493333pt;}
.y8b{bottom:471.813333pt;}
.y5e{bottom:473.733333pt;}
.y9d{bottom:478.533333pt;}
.y10e{bottom:479.813333pt;}
.yd9{bottom:483.013333pt;}
.y7e{bottom:488.453333pt;}
.y1e{bottom:488.773333pt;}
.y5d{bottom:490.693333pt;}
.y10d{bottom:495.173333pt;}
.y9c{bottom:495.493333pt;}
.yd8{bottom:499.973333pt;}
.y7d{bottom:505.413333pt;}
.y5c{bottom:507.653333pt;}
.y1d{bottom:509.600000pt;}
.y10c{bottom:510.240000pt;}
.y9b{bottom:512.160000pt;}
.yd7{bottom:516.960000pt;}
.y7c{bottom:522.080000pt;}
.y4e{bottom:524.640000pt;}
.y10b{bottom:525.600000pt;}
.y1c{bottom:526.240000pt;}
.y9a{bottom:529.120000pt;}
.yd6{bottom:533.600000pt;}
.y8a{bottom:537.760000pt;}
.y7b{bottom:539.040000pt;}
.y10a{bottom:540.960000pt;}
.y4d{bottom:541.280000pt;}
.y1b{bottom:541.920000pt;}
.y99{bottom:546.080000pt;}
.yd5{bottom:550.560000pt;}
.y89{bottom:551.200000pt;}
.y7a{bottom:556.000000pt;}
.y109{bottom:556.320000pt;}
.y4c{bottom:558.240000pt;}
.y1a{bottom:559.200000pt;}
.y98{bottom:562.720000pt;}
.yd4{bottom:567.520000pt;}
.y108{bottom:572.000000pt;}
.y79{bottom:572.960000pt;}
.y4b{bottom:575.200000pt;}
.y19{bottom:578.720000pt;}
.y97{bottom:579.680000pt;}
.yd3{bottom:584.160000pt;}
.y107{bottom:588.960000pt;}
.y78{bottom:589.600000pt;}
.y4a{bottom:591.840000pt;}
.y5b{bottom:592.480000pt;}
.y18{bottom:595.040000pt;}
.y96{bottom:596.640000pt;}
.yd2{bottom:601.120000pt;}
.y77{bottom:606.560000pt;}
.y106{bottom:606.880000pt;}
.y49{bottom:608.800000pt;}
.y17{bottom:610.400000pt;}
.y5a{bottom:613.280000pt;}
.yd1{bottom:618.080000pt;}
.y105{bottom:622.266667pt;}
.y76{bottom:623.226667pt;}
.y16{bottom:625.786667pt;}
.y59{bottom:630.266667pt;}
.yd0{bottom:635.066667pt;}
.y104{bottom:637.626667pt;}
.y75{bottom:638.906667pt;}
.y15{bottom:641.146667pt;}
.y48{bottom:642.426667pt;}
.y58{bottom:647.226667pt;}
.ycf{bottom:651.706667pt;}
.y74{bottom:652.026667pt;}
.y103{bottom:652.986667pt;}
.y14{bottom:656.506667pt;}
.y47{bottom:660.026667pt;}
.y57{bottom:664.186667pt;}
.y102{bottom:668.346667pt;}
.yce{bottom:668.666667pt;}
.y13{bottom:671.866667pt;}
.y46{bottom:680.826667pt;}
.y101{bottom:683.706667pt;}
.ycd{bottom:685.626667pt;}
.y12{bottom:687.226667pt;}
.y45{bottom:697.786667pt;}
.y100{bottom:699.066667pt;}
.ycc{bottom:702.266667pt;}
.y11{bottom:702.586667pt;}
.yff{bottom:714.426667pt;}
.y44{bottom:714.746667pt;}
.y10{bottom:717.946667pt;}
.ycb{bottom:719.226667pt;}
.yfe{bottom:729.786667pt;}
.y43{bottom:731.386667pt;}
.yf{bottom:733.346667pt;}
.yca{bottom:736.226667pt;}
.yfd{bottom:744.866667pt;}
.y42{bottom:748.386667pt;}
.ye{bottom:749.026667pt;}
.yc9{bottom:752.866667pt;}
.yfc{bottom:760.226667pt;}
.y41{bottom:765.346667pt;}
.yd{bottom:765.986667pt;}
.yc8{bottom:769.826667pt;}
.yfb{bottom:775.586667pt;}
.y40{bottom:781.986667pt;}
.yc{bottom:785.506667pt;}
.y95{bottom:786.466667pt;}
.yc7{bottom:786.786667pt;}
.yfa{bottom:790.946667pt;}
.y3f{bottom:798.946667pt;}
.y94{bottom:803.746667pt;}
.yf9{bottom:806.306667pt;}
.yb{bottom:809.186667pt;}
.y3e{bottom:815.906667pt;}
.y93{bottom:820.386667pt;}
.ya{bottom:821.346667pt;}
.yf8{bottom:821.666667pt;}
.y3d{bottom:832.866667pt;}
.yf7{bottom:837.026667pt;}
.y88{bottom:837.346667pt;}
.y9{bottom:846.013333pt;}
.y3c{bottom:849.533333pt;}
.yf6{bottom:852.413333pt;}
.y87{bottom:854.333333pt;}
.y8{bottom:858.173333pt;}
.y3b{bottom:866.493333pt;}
.yf5{bottom:867.773333pt;}
.yb3{bottom:870.653333pt;}
.y86{bottom:870.973333pt;}
.y7{bottom:876.733333pt;}
.yf4{bottom:883.133333pt;}
.y3a{bottom:883.453333pt;}
.y85{bottom:887.933333pt;}
.y6{bottom:896.893333pt;}
.yf3{bottom:898.493333pt;}
.y39{bottom:900.093333pt;}
.y84{bottom:904.893333pt;}
.yf2{bottom:913.853333pt;}
.y56{bottom:917.053333pt;}
.y38{bottom:917.693333pt;}
.y5{bottom:919.613333pt;}
.y73{bottom:921.533333pt;}
.yf1{bottom:928.893333pt;}
.y55{bottom:934.013333pt;}
.y37{bottom:938.493333pt;}
.yf0{bottom:944.253333pt;}
.y4{bottom:949.373333pt;}
.y54{bottom:950.973333pt;}
.y36{bottom:955.453333pt;}
.yef{bottom:959.653333pt;}
.y53{bottom:967.653333pt;}
.y35{bottom:972.453333pt;}
.yee{bottom:975.013333pt;}
.y3{bottom:979.493333pt;}
.y52{bottom:985.253333pt;}
.y34{bottom:989.093333pt;}
.yed{bottom:990.373333pt;}
.y1{bottom:1015.013333pt;}
.h14{height:37.537500pt;}
.h13{height:37.931250pt;}
.h8{height:41.456250pt;}
.hd{height:42.578750pt;}
.h2{height:50.250000pt;}
.hb{height:52.736250pt;}
.h3{height:52.762500pt;}
.h12{height:54.180000pt;}
.h11{height:55.256809pt;}
.h9{height:57.787500pt;}
.hf{height:59.340000pt;}
.h7{height:62.812500pt;}
.h10{height:64.500000pt;}
.ha{height:67.803750pt;}
.h5{height:67.837500pt;}
.h6{height:68.288750pt;}
.h4{height:71.950625pt;}
.he{height:74.820000pt;}
.hc{height:77.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:108.831988pt;}
.x2{left:109.791988pt;}
.xd{left:114.591988pt;}
.x1{left:121.631988pt;}
.x9{left:124.863988pt;}
.x7{left:129.023988pt;}
.x18{left:139.586655pt;}
.x6{left:159.426655pt;}
.x4{left:197.506655pt;}
.xc{left:249.053322pt;}
.x17{left:261.213322pt;}
.x5{left:275.933322pt;}
.x13{left:283.613322pt;}
.x11{left:286.173322pt;}
.xf{left:298.693322pt;}
.x8{left:305.733322pt;}
.x15{left:319.813322pt;}
.x3{left:396.959988pt;}
.x12{left:542.906655pt;}
.xe{left:608.226655pt;}
.x10{left:625.186655pt;}
.x14{left:662.973322pt;}
.x16{left:673.853322pt;}
.xb{left:675.773322pt;}
.xa{left:677.693322pt;}
}




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