
    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_9684acba32bfda15c1b7e24d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.034180;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_c3342fe7bae93339f230f0ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f4ba68a41f67a9c62c8f8f79.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854492;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_c41d6814b6ab3a3b5e055ef1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_ea3d516159eacbe1579bd3b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.034180;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_90d3ffe33a425f57a2bc97e4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f45f0956b36df0b2deb0584.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5981600f0216175049f3fab1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_56384cb2780d16035a62d230.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5fda40c87256790a314704d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_869a9fa3dfb70c6f1f7b944f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a64d09348d1e5088eec31a04.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_2037d700bac3aba420cb9f1b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_83e6a175f712f66b381ba3a7.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e6bdaf5b0506f60e165288fe.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893066;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:-80.784000px;}
.v2{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.000001px;}
.ls6{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.345600px;}
.ls20{letter-spacing:0.414600px;}
.ls2d{letter-spacing:0.414720px;}
.ls2a{letter-spacing:0.427800px;}
.ls1c{letter-spacing:0.447600px;}
.ls2b{letter-spacing:0.466800px;}
.ls28{letter-spacing:0.486720px;}
.ls29{letter-spacing:0.561600px;}
.ls9{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.731520px;}
.ls5{letter-spacing:0.864000px;}
.ls1a{letter-spacing:0.900000px;}
.lsf{letter-spacing:2.160000px;}
.ls3{letter-spacing:3.600000px;}
.ls27{letter-spacing:3.611520px;}
.ls11{letter-spacing:5.040000px;}
.ls16{letter-spacing:5.220000px;}
.ls4{letter-spacing:6.480000px;}
.ls12{letter-spacing:6.635520px;}
.ls10{letter-spacing:7.920000px;}
.ls1{letter-spacing:9.360000px;}
.ls2c{letter-spacing:10.800000px;}
.ls2e{letter-spacing:10.920000px;}
.ls1e{letter-spacing:12.240000px;}
.ls26{letter-spacing:13.680000px;}
.ls19{letter-spacing:15.120000px;}
.lse{letter-spacing:19.440000px;}
.ls18{letter-spacing:22.320000px;}
.ls22{letter-spacing:25.344000px;}
.ls1f{letter-spacing:26.640000px;}
.ls1b{letter-spacing:28.080000px;}
.lsd{letter-spacing:29.520000px;}
.ls24{letter-spacing:30.971520px;}
.ls25{letter-spacing:32.400000px;}
.ls17{letter-spacing:36.720000px;}
.lsc{letter-spacing:38.340000px;}
.ls1d{letter-spacing:39.600000px;}
.lsb{letter-spacing:41.220000px;}
.ls21{letter-spacing:42.480000px;}
.lsa{letter-spacing:49.265280px;}
.ls30{letter-spacing:690.756000px;}
.ls23{letter-spacing:728.220000px;}
.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;}
}
.ws0{word-spacing:-18.374400px;}
.ws7{word-spacing:-17.121600px;}
.ws8{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.506440px;}
.ws2{word-spacing:-14.109000px;}
.ws6{word-spacing:-13.680000px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-5.229600px;}
._c{margin-left:-3.971040px;}
._a{margin-left:-2.917920px;}
._1{margin-left:-1.391040px;}
._0{width:1.328160px;}
._4{width:3.007680px;}
._5{width:4.908000px;}
._7{width:6.145920px;}
._6{width:7.583040px;}
._8{width:8.784000px;}
._11{width:9.803520px;}
._18{width:10.838880px;}
._10{width:12.055680px;}
._9{width:13.645440px;}
._d{width:14.837760px;}
._14{width:18.348480px;}
._16{width:19.474560px;}
._13{width:20.865600px;}
._12{width:21.925440px;}
._21{width:23.316480px;}
._25{width:24.361920px;}
._15{width:25.436160px;}
._23{width:26.744640px;}
._22{width:28.178400px;}
._1d{width:29.808000px;}
._1e{width:31.331520px;}
._24{width:32.816640px;}
._29{width:34.567200px;}
._1a{width:36.365760px;}
._19{width:38.021760px;}
._1c{width:40.141440px;}
._1b{width:41.355840px;}
._17{width:42.393600px;}
._2a{width:43.648800px;}
._2d{width:45.633120px;}
._1f{width:47.229120px;}
._20{width:48.737280px;}
._2e{width:50.673600px;}
._2c{width:52.130880px;}
._2b{width:53.853120px;}
._28{width:56.039040px;}
._27{width:57.392640px;}
._26{width:58.556160px;}
._f{width:60.940800px;}
._e{width:62.928000px;}
._2f{width:63.956160px;}
._30{width:171.516000px;}
._3{width:324.120000px;}
._2{width:865.574880px;}
.fc1{color:rgb(19,19,19);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:33.876000px;}
.y3{bottom:54.036000px;}
.y40{bottom:73.116000px;}
.y94{bottom:73.836000px;}
.y3f{bottom:78.516000px;}
.y93{bottom:79.236000px;}
.y3e{bottom:90.396000px;}
.y85{bottom:91.116000px;}
.y92{bottom:91.476000px;}
.y98{bottom:92.196000px;}
.y3d{bottom:95.796000px;}
.y84{bottom:96.516000px;}
.y97{bottom:97.596000px;}
.y3c{bottom:108.756000px;}
.y83{bottom:109.116000px;}
.y79{bottom:110.196000px;}
.y96{bottom:110.556000px;}
.y82{bottom:114.516000px;}
.ya4{bottom:115.956000px;}
.y81{bottom:126.756000px;}
.ya3{bottom:127.476000px;}
.y78{bottom:129.276000px;}
.ya2{bottom:132.912000px;}
.y91{bottom:144.072000px;}
.y80{bottom:144.792000px;}
.y3b{bottom:145.152000px;}
.y77{bottom:148.032000px;}
.y90{bottom:149.472000px;}
.y7f{bottom:150.195000px;}
.y8f{bottom:161.355000px;}
.ya1{bottom:162.075000px;}
.y7e{bottom:163.515000px;}
.y3a{bottom:164.235000px;}
.y8e{bottom:166.755000px;}
.y76{bottom:167.115000px;}
.y8d{bottom:178.635000px;}
.ya0{bottom:180.075000px;}
.y39{bottom:183.315000px;}
.y8c{bottom:184.035000px;}
.y9f{bottom:185.475000px;}
.y75{bottom:186.195000px;}
.y8b{bottom:196.635000px;}
.y9e{bottom:198.795000px;}
.y38{bottom:202.035000px;}
.y74{bottom:205.275000px;}
.y8a{bottom:215.355000px;}
.y37{bottom:221.115000px;}
.y73{bottom:223.995000px;}
.y7d{bottom:230.835000px;}
.y36{bottom:240.195000px;}
.y72{bottom:243.075000px;}
.y89{bottom:249.915000px;}
.y35{bottom:259.275000px;}
.y71{bottom:262.155000px;}
.y34{bottom:278.025000px;}
.y70{bottom:280.905000px;}
.y33{bottom:297.105000px;}
.y6f{bottom:299.985000px;}
.y32{bottom:316.185000px;}
.y6e{bottom:319.065000px;}
.y31{bottom:334.905000px;}
.y6d{bottom:337.785000px;}
.y30{bottom:353.985000px;}
.y6c{bottom:356.865000px;}
.y7c{bottom:363.705000px;}
.y2e{bottom:373.065000px;}
.y6b{bottom:375.945000px;}
.y2f{bottom:379.905000px;}
.y2c{bottom:391.785000px;}
.y6a{bottom:395.025000px;}
.y2d{bottom:398.670000px;}
.y2b{bottom:410.910000px;}
.y69{bottom:413.790000px;}
.y7b{bottom:420.630000px;}
.y2a{bottom:429.990000px;}
.y68{bottom:432.870000px;}
.y9a{bottom:439.710000px;}
.y29{bottom:449.070000px;}
.y67{bottom:451.950000px;}
.y28{bottom:467.790000px;}
.y66{bottom:470.670000px;}
.y9d{bottom:477.510000px;}
.y27{bottom:486.870000px;}
.y65{bottom:489.750000px;}
.y26{bottom:505.950000px;}
.y64{bottom:508.830000px;}
.y25{bottom:524.670000px;}
.y63{bottom:527.550000px;}
.y24{bottom:543.780000px;}
.y62{bottom:546.660000px;}
.y23{bottom:562.860000px;}
.y61{bottom:565.740000px;}
.y22{bottom:581.580000px;}
.y60{bottom:584.820000px;}
.y21{bottom:600.660000px;}
.y5f{bottom:603.540000px;}
.y20{bottom:619.740000px;}
.y5e{bottom:622.620000px;}
.y1f{bottom:638.820000px;}
.y5d{bottom:641.700000px;}
.y1e{bottom:657.540000px;}
.y5c{bottom:660.420000px;}
.y1d{bottom:676.650000px;}
.y5b{bottom:679.530000px;}
.y88{bottom:686.370000px;}
.y1c{bottom:695.730000px;}
.y5a{bottom:698.610000px;}
.y1b{bottom:714.450000px;}
.y59{bottom:717.690000px;}
.y1a{bottom:733.530000px;}
.y58{bottom:736.410000px;}
.y19{bottom:752.610000px;}
.y57{bottom:755.490000px;}
.y18{bottom:771.690000px;}
.y56{bottom:774.570000px;}
.y99{bottom:781.410000px;}
.y17{bottom:790.410000px;}
.y55{bottom:793.290000px;}
.y16{bottom:809.535000px;}
.y54{bottom:812.415000px;}
.y15{bottom:828.615000px;}
.y53{bottom:831.495000px;}
.y87{bottom:838.335000px;}
.y14{bottom:847.335000px;}
.y52{bottom:850.215000px;}
.y13{bottom:866.415000px;}
.y51{bottom:869.295000px;}
.y7a{bottom:876.135000px;}
.y12{bottom:885.495000px;}
.y50{bottom:888.375000px;}
.y4f{bottom:907.455000px;}
.y11{bottom:915.015000px;}
.y4e{bottom:926.175000px;}
.y9c{bottom:933.045000px;}
.y10{bottom:936.285000px;}
.y4d{bottom:945.285000px;}
.y9b{bottom:952.125000px;}
.yf{bottom:957.525000px;}
.y4c{bottom:964.365000px;}
.y95{bottom:971.205000px;}
.ye{bottom:978.765000px;}
.y4b{bottom:983.085000px;}
.yd{bottom:999.645000px;}
.y4a{bottom:1002.165000px;}
.y86{bottom:1009.005000px;}
.yc{bottom:1020.885000px;}
.y49{bottom:1021.245000px;}
.y48{bottom:1039.965000px;}
.yb{bottom:1041.765000px;}
.y47{bottom:1059.045000px;}
.ya{bottom:1063.005000px;}
.y46{bottom:1078.170000px;}
.y9{bottom:1084.290000px;}
.y45{bottom:1097.250000px;}
.y8{bottom:1114.530000px;}
.y44{bottom:1115.970000px;}
.y7{bottom:1133.970000px;}
.y43{bottom:1135.050000px;}
.y6{bottom:1153.410000px;}
.y42{bottom:1154.130000px;}
.y5{bottom:1172.490000px;}
.y41{bottom:1172.850000px;}
.y2{bottom:1199.850000px;}
.y1{bottom:1221.840000px;}
.ha{height:38.158594px;}
.hf{height:38.671172px;}
.h9{height:40.985156px;}
.h13{height:41.535703px;}
.h8{height:46.445625px;}
.h4{height:56.084062px;}
.he{height:57.280781px;}
.hc{height:59.357813px;}
.h10{height:60.155156px;}
.hb{height:60.332344px;}
.h5{height:60.679688px;}
.h12{height:60.952500px;}
.h6{height:60.960938px;}
.h14{height:64.978594px;}
.h7{height:65.010937px;}
.h3{height:65.884219px;}
.h11{height:66.757500px;}
.hd{height:68.084282px;}
.h2{height:70.714687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:84.995987px;}
.x8{left:120.995987px;}
.x1{left:127.475987px;}
.xe{left:132.515987px;}
.x24{left:137.591987px;}
.x15{left:143.351973px;}
.x1f{left:147.671973px;}
.x16{left:148.751987px;}
.x1d{left:153.434973px;}
.xf{left:154.514987px;}
.x1e{left:158.834987px;}
.x33{left:176.474973px;}
.x10{left:181.514987px;}
.x34{left:187.274987px;}
.x25{left:213.914973px;}
.x26{left:224.714987px;}
.x2d{left:245.264973px;}
.x2e{left:256.064987px;}
.x31{left:285.584973px;}
.x32{left:296.384987px;}
.x9{left:303.944973px;}
.x27{left:306.824973px;}
.xa{left:309.344987px;}
.x28{left:317.624987px;}
.xd{left:343.589987px;}
.x29{left:437.939973px;}
.x2a{left:448.739987px;}
.xb{left:502.379973px;}
.xc{left:507.809987px;}
.x4{left:521.489987px;}
.x11{left:584.849973px;}
.x12{left:590.249987px;}
.x20{left:629.174973px;}
.x21{left:639.974987px;}
.x5{left:641.774987px;}
.x3{left:663.014987px;}
.x17{left:697.604973px;}
.x18{left:703.004987px;}
.x19{left:715.244973px;}
.x1a{left:720.644987px;}
.x13{left:761.684973px;}
.x14{left:767.084987px;}
.x2f{left:782.924973px;}
.x30{left:793.769987px;}
.x2b{left:799.169973px;}
.x2c{left:809.969987px;}
.x1b{left:811.769973px;}
.x35{left:812.849987px;}
.x1c{left:817.169987px;}
.x2{left:821.129987px;}
.x22{left:827.249973px;}
.x23{left:838.049987px;}
.x6{left:850.649987px;}
@media print{
.v1{vertical-align:-71.808000pt;}
.v2{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.000001pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.307200pt;}
.ls20{letter-spacing:0.368533pt;}
.ls2d{letter-spacing:0.368640pt;}
.ls2a{letter-spacing:0.380267pt;}
.ls1c{letter-spacing:0.397867pt;}
.ls2b{letter-spacing:0.414933pt;}
.ls28{letter-spacing:0.432640pt;}
.ls29{letter-spacing:0.499200pt;}
.ls9{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.650240pt;}
.ls5{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.800000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls3{letter-spacing:3.200000pt;}
.ls27{letter-spacing:3.210240pt;}
.ls11{letter-spacing:4.480000pt;}
.ls16{letter-spacing:4.640000pt;}
.ls4{letter-spacing:5.760000pt;}
.ls12{letter-spacing:5.898240pt;}
.ls10{letter-spacing:7.040000pt;}
.ls1{letter-spacing:8.320000pt;}
.ls2c{letter-spacing:9.600000pt;}
.ls2e{letter-spacing:9.706667pt;}
.ls1e{letter-spacing:10.880000pt;}
.ls26{letter-spacing:12.160000pt;}
.ls19{letter-spacing:13.440000pt;}
.lse{letter-spacing:17.280000pt;}
.ls18{letter-spacing:19.840000pt;}
.ls22{letter-spacing:22.528000pt;}
.ls1f{letter-spacing:23.680000pt;}
.ls1b{letter-spacing:24.960000pt;}
.lsd{letter-spacing:26.240000pt;}
.ls24{letter-spacing:27.530240pt;}
.ls25{letter-spacing:28.800000pt;}
.ls17{letter-spacing:32.640000pt;}
.lsc{letter-spacing:34.080000pt;}
.ls1d{letter-spacing:35.200000pt;}
.lsb{letter-spacing:36.640000pt;}
.ls21{letter-spacing:37.760000pt;}
.lsa{letter-spacing:43.791360pt;}
.ls30{letter-spacing:614.005333pt;}
.ls23{letter-spacing:647.306667pt;}
.ws0{word-spacing:-16.332800pt;}
.ws7{word-spacing:-15.219200pt;}
.ws8{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws9{word-spacing:-12.894613pt;}
.ws2{word-spacing:-12.541333pt;}
.ws6{word-spacing:-12.160000pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-4.648533pt;}
._c{margin-left:-3.529813pt;}
._a{margin-left:-2.593707pt;}
._1{margin-left:-1.236480pt;}
._0{width:1.180587pt;}
._4{width:2.673493pt;}
._5{width:4.362667pt;}
._7{width:5.463040pt;}
._6{width:6.740480pt;}
._8{width:7.808000pt;}
._11{width:8.714240pt;}
._18{width:9.634560pt;}
._10{width:10.716160pt;}
._9{width:12.129280pt;}
._d{width:13.189120pt;}
._14{width:16.309760pt;}
._16{width:17.310720pt;}
._13{width:18.547200pt;}
._12{width:19.489280pt;}
._21{width:20.725760pt;}
._25{width:21.655040pt;}
._15{width:22.609920pt;}
._23{width:23.773013pt;}
._22{width:25.047467pt;}
._1d{width:26.496000pt;}
._1e{width:27.850240pt;}
._24{width:29.170347pt;}
._29{width:30.726400pt;}
._1a{width:32.325120pt;}
._19{width:33.797120pt;}
._1c{width:35.681280pt;}
._1b{width:36.760747pt;}
._17{width:37.683200pt;}
._2a{width:38.798933pt;}
._2d{width:40.562773pt;}
._1f{width:41.981440pt;}
._20{width:43.322027pt;}
._2e{width:45.043200pt;}
._2c{width:46.338560pt;}
._2b{width:47.869440pt;}
._28{width:49.812480pt;}
._27{width:51.015680pt;}
._26{width:52.049920pt;}
._f{width:54.169600pt;}
._e{width:55.936000pt;}
._2f{width:56.849920pt;}
._30{width:152.458667pt;}
._3{width:288.106667pt;}
._2{width:769.399893pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:30.112000pt;}
.y3{bottom:48.032000pt;}
.y40{bottom:64.992000pt;}
.y94{bottom:65.632000pt;}
.y3f{bottom:69.792000pt;}
.y93{bottom:70.432000pt;}
.y3e{bottom:80.352000pt;}
.y85{bottom:80.992000pt;}
.y92{bottom:81.312000pt;}
.y98{bottom:81.952000pt;}
.y3d{bottom:85.152000pt;}
.y84{bottom:85.792000pt;}
.y97{bottom:86.752000pt;}
.y3c{bottom:96.672000pt;}
.y83{bottom:96.992000pt;}
.y79{bottom:97.952000pt;}
.y96{bottom:98.272000pt;}
.y82{bottom:101.792000pt;}
.ya4{bottom:103.072000pt;}
.y81{bottom:112.672000pt;}
.ya3{bottom:113.312000pt;}
.y78{bottom:114.912000pt;}
.ya2{bottom:118.144000pt;}
.y91{bottom:128.064000pt;}
.y80{bottom:128.704000pt;}
.y3b{bottom:129.024000pt;}
.y77{bottom:131.584000pt;}
.y90{bottom:132.864000pt;}
.y7f{bottom:133.506667pt;}
.y8f{bottom:143.426667pt;}
.ya1{bottom:144.066667pt;}
.y7e{bottom:145.346667pt;}
.y3a{bottom:145.986667pt;}
.y8e{bottom:148.226667pt;}
.y76{bottom:148.546667pt;}
.y8d{bottom:158.786667pt;}
.ya0{bottom:160.066667pt;}
.y39{bottom:162.946667pt;}
.y8c{bottom:163.586667pt;}
.y9f{bottom:164.866667pt;}
.y75{bottom:165.506667pt;}
.y8b{bottom:174.786667pt;}
.y9e{bottom:176.706667pt;}
.y38{bottom:179.586667pt;}
.y74{bottom:182.466667pt;}
.y8a{bottom:191.426667pt;}
.y37{bottom:196.546667pt;}
.y73{bottom:199.106667pt;}
.y7d{bottom:205.186667pt;}
.y36{bottom:213.506667pt;}
.y72{bottom:216.066667pt;}
.y89{bottom:222.146667pt;}
.y35{bottom:230.466667pt;}
.y71{bottom:233.026667pt;}
.y34{bottom:247.133333pt;}
.y70{bottom:249.693333pt;}
.y33{bottom:264.093333pt;}
.y6f{bottom:266.653333pt;}
.y32{bottom:281.053333pt;}
.y6e{bottom:283.613333pt;}
.y31{bottom:297.693333pt;}
.y6d{bottom:300.253333pt;}
.y30{bottom:314.653333pt;}
.y6c{bottom:317.213333pt;}
.y7c{bottom:323.293333pt;}
.y2e{bottom:331.613333pt;}
.y6b{bottom:334.173333pt;}
.y2f{bottom:337.693333pt;}
.y2c{bottom:348.253333pt;}
.y6a{bottom:351.133333pt;}
.y2d{bottom:354.373333pt;}
.y2b{bottom:365.253333pt;}
.y69{bottom:367.813333pt;}
.y7b{bottom:373.893333pt;}
.y2a{bottom:382.213333pt;}
.y68{bottom:384.773333pt;}
.y9a{bottom:390.853333pt;}
.y29{bottom:399.173333pt;}
.y67{bottom:401.733333pt;}
.y28{bottom:415.813333pt;}
.y66{bottom:418.373333pt;}
.y9d{bottom:424.453333pt;}
.y27{bottom:432.773333pt;}
.y65{bottom:435.333333pt;}
.y26{bottom:449.733333pt;}
.y64{bottom:452.293333pt;}
.y25{bottom:466.373333pt;}
.y63{bottom:468.933333pt;}
.y24{bottom:483.360000pt;}
.y62{bottom:485.920000pt;}
.y23{bottom:500.320000pt;}
.y61{bottom:502.880000pt;}
.y22{bottom:516.960000pt;}
.y60{bottom:519.840000pt;}
.y21{bottom:533.920000pt;}
.y5f{bottom:536.480000pt;}
.y20{bottom:550.880000pt;}
.y5e{bottom:553.440000pt;}
.y1f{bottom:567.840000pt;}
.y5d{bottom:570.400000pt;}
.y1e{bottom:584.480000pt;}
.y5c{bottom:587.040000pt;}
.y1d{bottom:601.466667pt;}
.y5b{bottom:604.026667pt;}
.y88{bottom:610.106667pt;}
.y1c{bottom:618.426667pt;}
.y5a{bottom:620.986667pt;}
.y1b{bottom:635.066667pt;}
.y59{bottom:637.946667pt;}
.y1a{bottom:652.026667pt;}
.y58{bottom:654.586667pt;}
.y19{bottom:668.986667pt;}
.y57{bottom:671.546667pt;}
.y18{bottom:685.946667pt;}
.y56{bottom:688.506667pt;}
.y99{bottom:694.586667pt;}
.y17{bottom:702.586667pt;}
.y55{bottom:705.146667pt;}
.y16{bottom:719.586667pt;}
.y54{bottom:722.146667pt;}
.y15{bottom:736.546667pt;}
.y53{bottom:739.106667pt;}
.y87{bottom:745.186667pt;}
.y14{bottom:753.186667pt;}
.y52{bottom:755.746667pt;}
.y13{bottom:770.146667pt;}
.y51{bottom:772.706667pt;}
.y7a{bottom:778.786667pt;}
.y12{bottom:787.106667pt;}
.y50{bottom:789.666667pt;}
.y4f{bottom:806.626667pt;}
.y11{bottom:813.346667pt;}
.y4e{bottom:823.266667pt;}
.y9c{bottom:829.373333pt;}
.y10{bottom:832.253333pt;}
.y4d{bottom:840.253333pt;}
.y9b{bottom:846.333333pt;}
.yf{bottom:851.133333pt;}
.y4c{bottom:857.213333pt;}
.y95{bottom:863.293333pt;}
.ye{bottom:870.013333pt;}
.y4b{bottom:873.853333pt;}
.yd{bottom:888.573333pt;}
.y4a{bottom:890.813333pt;}
.y86{bottom:896.893333pt;}
.yc{bottom:907.453333pt;}
.y49{bottom:907.773333pt;}
.y48{bottom:924.413333pt;}
.yb{bottom:926.013333pt;}
.y47{bottom:941.373333pt;}
.ya{bottom:944.893333pt;}
.y46{bottom:958.373333pt;}
.y9{bottom:963.813333pt;}
.y45{bottom:975.333333pt;}
.y8{bottom:990.693333pt;}
.y44{bottom:991.973333pt;}
.y7{bottom:1007.973333pt;}
.y43{bottom:1008.933333pt;}
.y6{bottom:1025.253333pt;}
.y42{bottom:1025.893333pt;}
.y5{bottom:1042.213333pt;}
.y41{bottom:1042.533333pt;}
.y2{bottom:1066.533333pt;}
.y1{bottom:1086.080000pt;}
.ha{height:33.918750pt;}
.hf{height:34.374375pt;}
.h9{height:36.431250pt;}
.h13{height:36.920625pt;}
.h8{height:41.285000pt;}
.h4{height:49.852500pt;}
.he{height:50.916250pt;}
.hc{height:52.762500pt;}
.h10{height:53.471250pt;}
.hb{height:53.628750pt;}
.h5{height:53.937500pt;}
.h12{height:54.180000pt;}
.h6{height:54.187500pt;}
.h14{height:57.758750pt;}
.h7{height:57.787500pt;}
.h3{height:58.563750pt;}
.h11{height:59.340000pt;}
.hd{height:60.519362pt;}
.h2{height:62.857500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:75.551988pt;}
.x8{left:107.551988pt;}
.x1{left:113.311988pt;}
.xe{left:117.791988pt;}
.x24{left:122.303988pt;}
.x15{left:127.423976pt;}
.x1f{left:131.263976pt;}
.x16{left:132.223988pt;}
.x1d{left:136.386643pt;}
.xf{left:137.346655pt;}
.x1e{left:141.186655pt;}
.x33{left:156.866643pt;}
.x10{left:161.346655pt;}
.x34{left:166.466655pt;}
.x25{left:190.146643pt;}
.x26{left:199.746655pt;}
.x2d{left:218.013310pt;}
.x2e{left:227.613322pt;}
.x31{left:253.853310pt;}
.x32{left:263.453322pt;}
.x9{left:270.173310pt;}
.x27{left:272.733310pt;}
.xa{left:274.973322pt;}
.x28{left:282.333322pt;}
.xd{left:305.413322pt;}
.x29{left:389.279976pt;}
.x2a{left:398.879988pt;}
.xb{left:446.559976pt;}
.xc{left:451.386655pt;}
.x4{left:463.546655pt;}
.x11{left:519.866643pt;}
.x12{left:524.666655pt;}
.x20{left:559.266643pt;}
.x21{left:568.866655pt;}
.x5{left:570.466655pt;}
.x3{left:589.346655pt;}
.x17{left:620.093310pt;}
.x18{left:624.893322pt;}
.x19{left:635.773310pt;}
.x1a{left:640.573322pt;}
.x13{left:677.053310pt;}
.x14{left:681.853322pt;}
.x2f{left:695.933310pt;}
.x30{left:705.573322pt;}
.x2b{left:710.373310pt;}
.x2c{left:719.973322pt;}
.x1b{left:721.573310pt;}
.x35{left:722.533322pt;}
.x1c{left:726.373322pt;}
.x2{left:729.893322pt;}
.x22{left:735.333310pt;}
.x23{left:744.933322pt;}
.x6{left:756.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; }
  