
    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_fa3c06bd32ba32138734a1e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980957;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_b8295c75dc4e32aa4f5c3e94.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_bd8b8d91b93778a78b140cd8.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_3910a7958682d450eef77814.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_07cf0238d2ed9ddf1cc16802.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5f44da66c38b483d24491b37.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_f730e1a8fa192f8f3ef3825e.woff2')format("woff");}.ff7{font-family:ff7;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:-76.320000px;}
.v2{vertical-align:-75.000000px;}
.v6{vertical-align:-70.560000px;}
.v4{vertical-align:-60.480000px;}
.v3{vertical-align:-59.040000px;}
.v5{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-3.066000px;}
.ls1c{letter-spacing:-2.568000px;}
.ls22{letter-spacing:-2.376000px;}
.ls9{letter-spacing:-2.052000px;}
.lsf{letter-spacing:-1.908000px;}
.ls6{letter-spacing:-1.902000px;}
.ls18{letter-spacing:-1.746000px;}
.ls1d{letter-spacing:-1.626000px;}
.lsa{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.128000px;}
.ls17{letter-spacing:-0.990000px;}
.ls27{letter-spacing:-0.954000px;}
.lsb{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.630000px;}
.ls28{letter-spacing:-0.507000px;}
.ls4{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.313800px;}
.ls8{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.025920px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls15{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.020160px;}
.ls13{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.466800px;}
.lse{letter-spacing:0.486600px;}
.ls16{letter-spacing:0.507000px;}
.ls14{letter-spacing:0.720000px;}
.ls24{letter-spacing:10.800000px;}
.ls23{letter-spacing:12.240000px;}
.ls12{letter-spacing:16.560000px;}
.ls26{letter-spacing:17.746560px;}
.ls11{letter-spacing:18.000000px;}
.ls10{letter-spacing:19.440000px;}
.ls2{letter-spacing:28.080000px;}
.ls25{letter-spacing:46.558560px;}
.ls20{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;}
}
.ws5{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.448640px;}
.ws6{word-spacing:-19.414080px;}
.wsa{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.627000px;}
.wsf{word-spacing:-15.606600px;}
.ws1a{word-spacing:-15.586800px;}
.wse{word-spacing:-15.140160px;}
.wsb{word-spacing:-15.120000px;}
.ws12{word-spacing:-14.814000px;}
.ws1b{word-spacing:-14.653200px;}
.ws1e{word-spacing:-14.613000px;}
.ws8{word-spacing:-14.508000px;}
.ws2{word-spacing:-14.506440px;}
.wsc{word-spacing:-14.184000px;}
.ws1d{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.366200px;}
.ws10{word-spacing:-13.212000px;}
.ws3{word-spacing:-13.068240px;}
.ws13{word-spacing:-13.050000px;}
.ws1c{word-spacing:-12.744000px;}
.ws14{word-spacing:-12.552000px;}
.ws17{word-spacing:-12.240000px;}
.ws18{word-spacing:-12.054000px;}
.ws16{word-spacing:-11.112000px;}
.ws19{word-spacing:-10.614000px;}
.wsd{word-spacing:0.000000px;}
._5{margin-left:-6.549120px;}
._3{margin-left:-4.956000px;}
._2{margin-left:-3.528000px;}
._0{margin-left:-2.520000px;}
._1{margin-left:-1.080000px;}
._4{width:1.560000px;}
._6{width:2.710920px;}
._a{width:4.532760px;}
._11{width:6.402240px;}
._16{width:7.960320px;}
._9{width:9.044160px;}
._12{width:10.149600px;}
._b{width:11.523840px;}
._c{width:12.972000px;}
._10{width:14.017920px;}
._14{width:17.055360px;}
._13{width:18.854400px;}
._15{width:19.973760px;}
._17{width:21.719040px;}
._f{width:23.182080px;}
._e{width:24.836160px;}
._d{width:26.523360px;}
._8{width:32.246880px;}
._7{width:33.656160px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,174,238);}
.fc2{color:rgb(0,173,237);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(124,124,124);}
.fs7{font-size:5.760000px;}
.fs5{font-size:30.240000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs6{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y76{bottom:3.240000px;}
.y8d{bottom:3.600000px;}
.y73{bottom:3.960000px;}
.y6d{bottom:4.320000px;}
.y5{bottom:4.680000px;}
.y3{bottom:5.760000px;}
.y9a{bottom:6.120000px;}
.y7d{bottom:18.360000px;}
.y7b{bottom:18.405000px;}
.y70{bottom:18.720000px;}
.y75{bottom:18.750000px;}
.y83{bottom:18.765000px;}
.y6e{bottom:19.080000px;}
.y88{bottom:19.110000px;}
.y90{bottom:19.440000px;}
.y2{bottom:28.800000px;}
.y72{bottom:34.200000px;}
.y8c{bottom:34.560000px;}
.y7{bottom:93.636000px;}
.y4{bottom:95.436000px;}
.ydc{bottom:118.836000px;}
.y7e{bottom:120.636000px;}
.yc6{bottom:120.996000px;}
.ya8{bottom:127.116000px;}
.y51{bottom:128.916000px;}
.ydb{bottom:144.396000px;}
.yc5{bottom:146.556000px;}
.y7c{bottom:152.670000px;}
.ya7{bottom:153.030000px;}
.y50{bottom:163.470000px;}
.yda{bottom:169.950000px;}
.yc4{bottom:172.470000px;}
.ya6{bottom:178.950000px;}
.y7a{bottom:184.350000px;}
.y4f{bottom:189.390000px;}
.yd9{bottom:195.915000px;}
.yc3{bottom:198.435000px;}
.ya5{bottom:204.915000px;}
.y4e{bottom:215.355000px;}
.y79{bottom:215.715000px;}
.yd8{bottom:221.835000px;}
.yc2{bottom:224.355000px;}
.ya4{bottom:230.835000px;}
.y2a{bottom:234.075000px;}
.y4d{bottom:241.275000px;}
.y78{bottom:247.755000px;}
.yc1{bottom:250.275000px;}
.ya3{bottom:256.755000px;}
.y29{bottom:262.155000px;}
.y4c{bottom:266.835000px;}
.yd7{bottom:273.675000px;}
.yc0{bottom:276.195000px;}
.y77{bottom:279.435000px;}
.ya2{bottom:282.675000px;}
.y28{bottom:288.075000px;}
.y4b{bottom:293.115000px;}
.ybf{bottom:302.115000px;}
.y74{bottom:311.115000px;}
.y27{bottom:313.995000px;}
.ya1{bottom:315.075000px;}
.yd6{bottom:318.675000px;}
.ybe{bottom:327.705000px;}
.y4a{bottom:337.785000px;}
.y26{bottom:339.945000px;}
.ya0{bottom:341.025000px;}
.y71{bottom:343.185000px;}
.ybd{bottom:353.625000px;}
.yd5{bottom:359.745000px;}
.y49{bottom:364.065000px;}
.y25{bottom:365.865000px;}
.y9f{bottom:366.585000px;}
.yd4{bottom:385.665000px;}
.y48{bottom:389.985000px;}
.y6f{bottom:390.345000px;}
.y24{bottom:391.785000px;}
.ybc{bottom:397.185000px;}
.y9e{bottom:410.145000px;}
.ybb{bottom:414.465000px;}
.y47{bottom:415.905000px;}
.y23{bottom:417.705000px;}
.y6c{bottom:422.025000px;}
.yd3{bottom:430.665000px;}
.yba{bottom:431.385000px;}
.y9d{bottom:435.345000px;}
.y46{bottom:441.825000px;}
.y22{bottom:443.625000px;}
.y9c{bottom:449.790000px;}
.yd2{bottom:465.990000px;}
.y6b{bottom:466.350000px;}
.y45{bottom:467.790000px;}
.y21{bottom:469.230000px;}
.y9b{bottom:481.830000px;}
.yd1{bottom:491.910000px;}
.y6a{bottom:492.270000px;}
.y44{bottom:493.350000px;}
.y20{bottom:494.790000px;}
.y99{bottom:498.390000px;}
.y98{bottom:514.590000px;}
.yd0{bottom:517.470000px;}
.y69{bottom:518.190000px;}
.y43{bottom:519.270000px;}
.y1f{bottom:520.710000px;}
.y97{bottom:532.590000px;}
.ycf{bottom:543.390000px;}
.y68{bottom:544.110000px;}
.y42{bottom:545.190000px;}
.y1e{bottom:546.630000px;}
.y96{bottom:561.390000px;}
.yce{bottom:569.310000px;}
.y67{bottom:569.670000px;}
.y41{bottom:571.110000px;}
.y1d{bottom:572.580000px;}
.y95{bottom:576.540000px;}
.ycd{bottom:595.260000px;}
.y66{bottom:595.620000px;}
.y40{bottom:597.060000px;}
.y1c{bottom:598.500000px;}
.y94{bottom:608.220000px;}
.ycc{bottom:621.180000px;}
.y65{bottom:621.540000px;}
.y3f{bottom:622.980000px;}
.y1b{bottom:624.420000px;}
.y93{bottom:639.900000px;}
.y64{bottom:647.460000px;}
.y3e{bottom:649.260000px;}
.y1a{bottom:650.340000px;}
.ycb{bottom:666.180000px;}
.y92{bottom:671.940000px;}
.y63{bottom:673.380000px;}
.y3d{bottom:675.180000px;}
.y19{bottom:676.260000px;}
.yca{bottom:692.460000px;}
.y62{bottom:699.330000px;}
.y3c{bottom:700.770000px;}
.y18{bottom:702.210000px;}
.yb9{bottom:702.570000px;}
.y91{bottom:703.290000px;}
.yc9{bottom:718.410000px;}
.y61{bottom:725.250000px;}
.y3b{bottom:726.690000px;}
.y17{bottom:728.130000px;}
.yb8{bottom:735.330000px;}
.yc8{bottom:744.330000px;}
.y8f{bottom:750.450000px;}
.y3a{bottom:752.610000px;}
.yb7{bottom:761.250000px;}
.y60{bottom:770.250000px;}
.y16{bottom:773.130000px;}
.y39{bottom:778.530000px;}
.yb6{bottom:787.170000px;}
.yc7{bottom:791.130000px;}
.y8e{bottom:797.970000px;}
.y5f{bottom:798.330000px;}
.y15{bottom:803.370000px;}
.y38{bottom:804.450000px;}
.ye8{bottom:806.250000px;}
.yb5{bottom:813.090000px;}
.y5e{bottom:824.250000px;}
.y14{bottom:828.975000px;}
.y8b{bottom:829.695000px;}
.y37{bottom:830.415000px;}
.ye7{bottom:832.215000px;}
.yb4{bottom:839.055000px;}
.y5d{bottom:850.215000px;}
.y13{bottom:855.255000px;}
.y36{bottom:856.335000px;}
.yb3{bottom:864.975000px;}
.ye6{bottom:866.775000px;}
.y5c{bottom:876.135000px;}
.y8a{bottom:877.215000px;}
.y12{bottom:881.175000px;}
.y35{bottom:882.255000px;}
.yb2{bottom:890.535000px;}
.ye5{bottom:892.695000px;}
.y5b{bottom:902.055000px;}
.y11{bottom:906.375000px;}
.y34{bottom:908.175000px;}
.y89{bottom:908.895000px;}
.yb1{bottom:916.455000px;}
.ye4{bottom:918.255000px;}
.y5a{bottom:927.975000px;}
.y10{bottom:932.295000px;}
.y33{bottom:934.095000px;}
.y87{bottom:940.575000px;}
.yb0{bottom:942.375000px;}
.ye3{bottom:944.175000px;}
.y59{bottom:953.565000px;}
.yf{bottom:957.885000px;}
.y32{bottom:959.685000px;}
.yaf{bottom:968.325000px;}
.ye2{bottom:970.125000px;}
.y86{bottom:972.645000px;}
.y58{bottom:979.485000px;}
.ye{bottom:983.445000px;}
.y31{bottom:985.605000px;}
.yae{bottom:994.245000px;}
.ye1{bottom:996.045000px;}
.yd{bottom:1003.245000px;}
.y85{bottom:1004.325000px;}
.y57{bottom:1005.405000px;}
.y30{bottom:1011.525000px;}
.yc{bottom:1014.405000px;}
.yad{bottom:1020.165000px;}
.ye0{bottom:1022.325000px;}
.y56{bottom:1031.685000px;}
.y84{bottom:1036.005000px;}
.y2f{bottom:1037.445000px;}
.yb{bottom:1040.325000px;}
.yac{bottom:1046.085000px;}
.ydf{bottom:1047.885000px;}
.y2e{bottom:1063.365000px;}
.y55{bottom:1065.165000px;}
.y82{bottom:1068.045000px;}
.ya{bottom:1071.285000px;}
.yab{bottom:1072.005000px;}
.yde{bottom:1073.805000px;}
.y2d{bottom:1089.330000px;}
.y54{bottom:1091.130000px;}
.yaa{bottom:1097.970000px;}
.y81{bottom:1099.410000px;}
.ydd{bottom:1099.770000px;}
.y80{bottom:1101.570000px;}
.y9{bottom:1105.170000px;}
.y2c{bottom:1115.250000px;}
.y53{bottom:1117.050000px;}
.ya9{bottom:1125.690000px;}
.y7f{bottom:1133.610000px;}
.y8{bottom:1138.650000px;}
.y2b{bottom:1141.170000px;}
.y52{bottom:1151.610000px;}
.y1{bottom:1163.490000px;}
.y6{bottom:1208.160000px;}
.h14{height:5.653125px;}
.h1a{height:14.760000px;}
.h17{height:15.480000px;}
.h19{height:15.840000px;}
.h4{height:19.440000px;}
.ha{height:29.678906px;}
.h13{height:30.600000px;}
.h12{height:30.636000px;}
.hf{height:30.960000px;}
.h15{height:30.996000px;}
.h11{height:31.320000px;}
.hd{height:31.356000px;}
.h18{height:40.985156px;}
.hc{height:42.229688px;}
.h2{height:44.676000px;}
.h10{height:46.440000px;}
.h7{height:46.638281px;}
.h16{height:46.800000px;}
.h5{height:53.302500px;}
.he{height:53.704687px;}
.h3{height:57.867188px;}
.h6{height:59.357813px;}
.hb{height:60.952500px;}
.h1b{height:62.163910px;}
.h9{height:66.757500px;}
.h8{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:51.156000px;}
.w7{width:83.196000px;}
.wd{width:88.956000px;}
.wa{width:90.396000px;}
.we{width:91.476000px;}
.w9{width:109.116000px;}
.w6{width:110.916000px;}
.wf{width:131.076000px;}
.wc{width:149.472000px;}
.w8{width:269.745000px;}
.w2{width:407.340000px;}
.w3{width:427.860000px;}
.wb{width:463.500000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x9{left:8.280000px;}
.x3{left:84.995987px;}
.x8{left:87.876000px;}
.x7{left:95.795987px;}
.xf{left:100.116000px;}
.x1{left:106.596000px;}
.x6{left:108.035987px;}
.x4{left:134.351987px;}
.xa{left:139.752000px;}
.x14{left:162.434987px;}
.x10{left:250.305000px;}
.xb{left:251.745000px;}
.x5{left:318.029987px;}
.xc{left:335.670000px;}
.x11{left:340.350000px;}
.x12{left:432.540000px;}
.xd{left:606.135000px;}
.xe{left:716.325000px;}
.x13{left:787.649987px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v2{vertical-align:-66.666667pt;}
.v6{vertical-align:-62.720000pt;}
.v4{vertical-align:-53.760000pt;}
.v3{vertical-align:-52.480000pt;}
.v5{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-2.725333pt;}
.ls1c{letter-spacing:-2.282667pt;}
.ls22{letter-spacing:-2.112000pt;}
.ls9{letter-spacing:-1.824000pt;}
.lsf{letter-spacing:-1.696000pt;}
.ls6{letter-spacing:-1.690667pt;}
.ls18{letter-spacing:-1.552000pt;}
.ls1d{letter-spacing:-1.445333pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.002667pt;}
.ls17{letter-spacing:-0.880000pt;}
.ls27{letter-spacing:-0.848000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.560000pt;}
.ls28{letter-spacing:-0.450667pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.278933pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.023040pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls15{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.017920pt;}
.ls13{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.414933pt;}
.lse{letter-spacing:0.432533pt;}
.ls16{letter-spacing:0.450667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls24{letter-spacing:9.600000pt;}
.ls23{letter-spacing:10.880000pt;}
.ls12{letter-spacing:14.720000pt;}
.ls26{letter-spacing:15.774720pt;}
.ls11{letter-spacing:16.000000pt;}
.ls10{letter-spacing:17.280000pt;}
.ls2{letter-spacing:24.960000pt;}
.ls25{letter-spacing:41.385387pt;}
.ls20{letter-spacing:42.665387pt;}
.ws5{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.287680pt;}
.ws6{word-spacing:-17.256960pt;}
.wsa{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.448533pt;}
.ws0{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.890667pt;}
.wsf{word-spacing:-13.872533pt;}
.ws1a{word-spacing:-13.854933pt;}
.wse{word-spacing:-13.457920pt;}
.wsb{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.168000pt;}
.ws1b{word-spacing:-13.025067pt;}
.ws1e{word-spacing:-12.989333pt;}
.ws8{word-spacing:-12.896000pt;}
.ws2{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.608000pt;}
.ws1d{word-spacing:-12.592000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws15{word-spacing:-11.881067pt;}
.ws10{word-spacing:-11.744000pt;}
.ws3{word-spacing:-11.616213pt;}
.ws13{word-spacing:-11.600000pt;}
.ws1c{word-spacing:-11.328000pt;}
.ws14{word-spacing:-11.157333pt;}
.ws17{word-spacing:-10.880000pt;}
.ws18{word-spacing:-10.714667pt;}
.ws16{word-spacing:-9.877333pt;}
.ws19{word-spacing:-9.434667pt;}
.wsd{word-spacing:0.000000pt;}
._5{margin-left:-5.821440pt;}
._3{margin-left:-4.405333pt;}
._2{margin-left:-3.136000pt;}
._0{margin-left:-2.240000pt;}
._1{margin-left:-0.960000pt;}
._4{width:1.386667pt;}
._6{width:2.409707pt;}
._a{width:4.029120pt;}
._11{width:5.690880pt;}
._16{width:7.075840pt;}
._9{width:8.039253pt;}
._12{width:9.021867pt;}
._b{width:10.243413pt;}
._c{width:11.530667pt;}
._10{width:12.460373pt;}
._14{width:15.160320pt;}
._13{width:16.759467pt;}
._15{width:17.754453pt;}
._17{width:19.305813pt;}
._f{width:20.606293pt;}
._e{width:22.076587pt;}
._d{width:23.576320pt;}
._8{width:28.663893pt;}
._7{width:29.916587pt;}
.fs7{font-size:5.120000pt;}
.fs5{font-size:26.880000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs6{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:2.880000pt;}
.y8d{bottom:3.200000pt;}
.y73{bottom:3.520000pt;}
.y6d{bottom:3.840000pt;}
.y5{bottom:4.160000pt;}
.y3{bottom:5.120000pt;}
.y9a{bottom:5.440000pt;}
.y7d{bottom:16.320000pt;}
.y7b{bottom:16.360000pt;}
.y70{bottom:16.640000pt;}
.y75{bottom:16.666667pt;}
.y83{bottom:16.680000pt;}
.y6e{bottom:16.960000pt;}
.y88{bottom:16.986667pt;}
.y90{bottom:17.280000pt;}
.y2{bottom:25.600000pt;}
.y72{bottom:30.400000pt;}
.y8c{bottom:30.720000pt;}
.y7{bottom:83.232000pt;}
.y4{bottom:84.832000pt;}
.ydc{bottom:105.632000pt;}
.y7e{bottom:107.232000pt;}
.yc6{bottom:107.552000pt;}
.ya8{bottom:112.992000pt;}
.y51{bottom:114.592000pt;}
.ydb{bottom:128.352000pt;}
.yc5{bottom:130.272000pt;}
.y7c{bottom:135.706667pt;}
.ya7{bottom:136.026667pt;}
.y50{bottom:145.306667pt;}
.yda{bottom:151.066667pt;}
.yc4{bottom:153.306667pt;}
.ya6{bottom:159.066667pt;}
.y7a{bottom:163.866667pt;}
.y4f{bottom:168.346667pt;}
.yd9{bottom:174.146667pt;}
.yc3{bottom:176.386667pt;}
.ya5{bottom:182.146667pt;}
.y4e{bottom:191.426667pt;}
.y79{bottom:191.746667pt;}
.yd8{bottom:197.186667pt;}
.yc2{bottom:199.426667pt;}
.ya4{bottom:205.186667pt;}
.y2a{bottom:208.066667pt;}
.y4d{bottom:214.466667pt;}
.y78{bottom:220.226667pt;}
.yc1{bottom:222.466667pt;}
.ya3{bottom:228.226667pt;}
.y29{bottom:233.026667pt;}
.y4c{bottom:237.186667pt;}
.yd7{bottom:243.266667pt;}
.yc0{bottom:245.506667pt;}
.y77{bottom:248.386667pt;}
.ya2{bottom:251.266667pt;}
.y28{bottom:256.066667pt;}
.y4b{bottom:260.546667pt;}
.ybf{bottom:268.546667pt;}
.y74{bottom:276.546667pt;}
.y27{bottom:279.106667pt;}
.ya1{bottom:280.066667pt;}
.yd6{bottom:283.266667pt;}
.ybe{bottom:291.293333pt;}
.y4a{bottom:300.253333pt;}
.y26{bottom:302.173333pt;}
.ya0{bottom:303.133333pt;}
.y71{bottom:305.053333pt;}
.ybd{bottom:314.333333pt;}
.yd5{bottom:319.773333pt;}
.y49{bottom:323.613333pt;}
.y25{bottom:325.213333pt;}
.y9f{bottom:325.853333pt;}
.yd4{bottom:342.813333pt;}
.y48{bottom:346.653333pt;}
.y6f{bottom:346.973333pt;}
.y24{bottom:348.253333pt;}
.ybc{bottom:353.053333pt;}
.y9e{bottom:364.573333pt;}
.ybb{bottom:368.413333pt;}
.y47{bottom:369.693333pt;}
.y23{bottom:371.293333pt;}
.y6c{bottom:375.133333pt;}
.yd3{bottom:382.813333pt;}
.yba{bottom:383.453333pt;}
.y9d{bottom:386.973333pt;}
.y46{bottom:392.733333pt;}
.y22{bottom:394.333333pt;}
.y9c{bottom:399.813333pt;}
.yd2{bottom:414.213333pt;}
.y6b{bottom:414.533333pt;}
.y45{bottom:415.813333pt;}
.y21{bottom:417.093333pt;}
.y9b{bottom:428.293333pt;}
.yd1{bottom:437.253333pt;}
.y6a{bottom:437.573333pt;}
.y44{bottom:438.533333pt;}
.y20{bottom:439.813333pt;}
.y99{bottom:443.013333pt;}
.y98{bottom:457.413333pt;}
.yd0{bottom:459.973333pt;}
.y69{bottom:460.613333pt;}
.y43{bottom:461.573333pt;}
.y1f{bottom:462.853333pt;}
.y97{bottom:473.413333pt;}
.ycf{bottom:483.013333pt;}
.y68{bottom:483.653333pt;}
.y42{bottom:484.613333pt;}
.y1e{bottom:485.893333pt;}
.y96{bottom:499.013333pt;}
.yce{bottom:506.053333pt;}
.y67{bottom:506.373333pt;}
.y41{bottom:507.653333pt;}
.y1d{bottom:508.960000pt;}
.y95{bottom:512.480000pt;}
.ycd{bottom:529.120000pt;}
.y66{bottom:529.440000pt;}
.y40{bottom:530.720000pt;}
.y1c{bottom:532.000000pt;}
.y94{bottom:540.640000pt;}
.ycc{bottom:552.160000pt;}
.y65{bottom:552.480000pt;}
.y3f{bottom:553.760000pt;}
.y1b{bottom:555.040000pt;}
.y93{bottom:568.800000pt;}
.y64{bottom:575.520000pt;}
.y3e{bottom:577.120000pt;}
.y1a{bottom:578.080000pt;}
.ycb{bottom:592.160000pt;}
.y92{bottom:597.280000pt;}
.y63{bottom:598.560000pt;}
.y3d{bottom:600.160000pt;}
.y19{bottom:601.120000pt;}
.yca{bottom:615.520000pt;}
.y62{bottom:621.626667pt;}
.y3c{bottom:622.906667pt;}
.y18{bottom:624.186667pt;}
.yb9{bottom:624.506667pt;}
.y91{bottom:625.146667pt;}
.yc9{bottom:638.586667pt;}
.y61{bottom:644.666667pt;}
.y3b{bottom:645.946667pt;}
.y17{bottom:647.226667pt;}
.yb8{bottom:653.626667pt;}
.yc8{bottom:661.626667pt;}
.y8f{bottom:667.066667pt;}
.y3a{bottom:668.986667pt;}
.yb7{bottom:676.666667pt;}
.y60{bottom:684.666667pt;}
.y16{bottom:687.226667pt;}
.y39{bottom:692.026667pt;}
.yb6{bottom:699.706667pt;}
.yc7{bottom:703.226667pt;}
.y8e{bottom:709.306667pt;}
.y5f{bottom:709.626667pt;}
.y15{bottom:714.106667pt;}
.y38{bottom:715.066667pt;}
.ye8{bottom:716.666667pt;}
.yb5{bottom:722.746667pt;}
.y5e{bottom:732.666667pt;}
.y14{bottom:736.866667pt;}
.y8b{bottom:737.506667pt;}
.y37{bottom:738.146667pt;}
.ye7{bottom:739.746667pt;}
.yb4{bottom:745.826667pt;}
.y5d{bottom:755.746667pt;}
.y13{bottom:760.226667pt;}
.y36{bottom:761.186667pt;}
.yb3{bottom:768.866667pt;}
.ye6{bottom:770.466667pt;}
.y5c{bottom:778.786667pt;}
.y8a{bottom:779.746667pt;}
.y12{bottom:783.266667pt;}
.y35{bottom:784.226667pt;}
.yb2{bottom:791.586667pt;}
.ye5{bottom:793.506667pt;}
.y5b{bottom:801.826667pt;}
.y11{bottom:805.666667pt;}
.y34{bottom:807.266667pt;}
.y89{bottom:807.906667pt;}
.yb1{bottom:814.626667pt;}
.ye4{bottom:816.226667pt;}
.y5a{bottom:824.866667pt;}
.y10{bottom:828.706667pt;}
.y33{bottom:830.306667pt;}
.y87{bottom:836.066667pt;}
.yb0{bottom:837.666667pt;}
.ye3{bottom:839.266667pt;}
.y59{bottom:847.613333pt;}
.yf{bottom:851.453333pt;}
.y32{bottom:853.053333pt;}
.yaf{bottom:860.733333pt;}
.ye2{bottom:862.333333pt;}
.y86{bottom:864.573333pt;}
.y58{bottom:870.653333pt;}
.ye{bottom:874.173333pt;}
.y31{bottom:876.093333pt;}
.yae{bottom:883.773333pt;}
.ye1{bottom:885.373333pt;}
.yd{bottom:891.773333pt;}
.y85{bottom:892.733333pt;}
.y57{bottom:893.693333pt;}
.y30{bottom:899.133333pt;}
.yc{bottom:901.693333pt;}
.yad{bottom:906.813333pt;}
.ye0{bottom:908.733333pt;}
.y56{bottom:917.053333pt;}
.y84{bottom:920.893333pt;}
.y2f{bottom:922.173333pt;}
.yb{bottom:924.733333pt;}
.yac{bottom:929.853333pt;}
.ydf{bottom:931.453333pt;}
.y2e{bottom:945.213333pt;}
.y55{bottom:946.813333pt;}
.y82{bottom:949.373333pt;}
.ya{bottom:952.253333pt;}
.yab{bottom:952.893333pt;}
.yde{bottom:954.493333pt;}
.y2d{bottom:968.293333pt;}
.y54{bottom:969.893333pt;}
.yaa{bottom:975.973333pt;}
.y81{bottom:977.253333pt;}
.ydd{bottom:977.573333pt;}
.y80{bottom:979.173333pt;}
.y9{bottom:982.373333pt;}
.y2c{bottom:991.333333pt;}
.y53{bottom:992.933333pt;}
.ya9{bottom:1000.613333pt;}
.y7f{bottom:1007.653333pt;}
.y8{bottom:1012.133333pt;}
.y2b{bottom:1014.373333pt;}
.y52{bottom:1023.653333pt;}
.y1{bottom:1034.213333pt;}
.y6{bottom:1073.920000pt;}
.h14{height:5.025000pt;}
.h1a{height:13.120000pt;}
.h17{height:13.760000pt;}
.h19{height:14.080000pt;}
.h4{height:17.280000pt;}
.ha{height:26.381250pt;}
.h13{height:27.200000pt;}
.h12{height:27.232000pt;}
.hf{height:27.520000pt;}
.h15{height:27.552000pt;}
.h11{height:27.840000pt;}
.hd{height:27.872000pt;}
.h18{height:36.431250pt;}
.hc{height:37.537500pt;}
.h2{height:39.712000pt;}
.h10{height:41.280000pt;}
.h7{height:41.456250pt;}
.h16{height:41.600000pt;}
.h5{height:47.380000pt;}
.he{height:47.737500pt;}
.h3{height:51.437500pt;}
.h6{height:52.762500pt;}
.hb{height:54.180000pt;}
.h1b{height:55.256809pt;}
.h9{height:59.340000pt;}
.h8{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:45.472000pt;}
.w7{width:73.952000pt;}
.wd{width:79.072000pt;}
.wa{width:80.352000pt;}
.we{width:81.312000pt;}
.w9{width:96.992000pt;}
.w6{width:98.592000pt;}
.wf{width:116.512000pt;}
.wc{width:132.864000pt;}
.w8{width:239.773333pt;}
.w2{width:362.080000pt;}
.w3{width:380.320000pt;}
.wb{width:412.000000pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x9{left:7.360000pt;}
.x3{left:75.551988pt;}
.x8{left:78.112000pt;}
.x7{left:85.151988pt;}
.xf{left:88.992000pt;}
.x1{left:94.752000pt;}
.x6{left:96.031988pt;}
.x4{left:119.423988pt;}
.xa{left:124.224000pt;}
.x14{left:144.386655pt;}
.x10{left:222.493333pt;}
.xb{left:223.773333pt;}
.x5{left:282.693322pt;}
.xc{left:298.373333pt;}
.x11{left:302.533333pt;}
.x12{left:384.480000pt;}
.xd{left:538.786667pt;}
.xe{left:636.733333pt;}
.x13{left:700.133322pt;}
}




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