
    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_e14b01ea1a5112d7e642083b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_ee4f656cd752b29042405a0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_5fa08557958130c235ca9984.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_e02d96297538ad4c73a5dce1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051758;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_e79d06136f42fa753c5203bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912500;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_1a7ad90eca1bf34161171b9b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_ea6a017e8167e97d8f4b2cdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.820801;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_39cec48a705eed15d4d22196.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_28804340d8474fa7f1006d66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls3{letter-spacing:-6.624000px;}
.ls9{letter-spacing:-6.436800px;}
.ls1{letter-spacing:-4.314600px;}
.ls6{letter-spacing:-4.176000px;}
.ls4{letter-spacing:-1.294260px;}
.ls5{letter-spacing:-1.164834px;}
.ls2{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.209880px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.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:-120.000000px;}
.ws13{word-spacing:-72.360000px;}
.ws1{word-spacing:-72.000000px;}
.ws9{word-spacing:-71.640000px;}
.wse{word-spacing:-60.000000px;}
.ws4{word-spacing:-54.000000px;}
.ws6{word-spacing:-49.685400px;}
.wsa{word-spacing:-43.920000px;}
.ws8{word-spacing:-18.000000px;}
.ws11{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.wsd{word-spacing:-11.376000px;}
.ws12{word-spacing:-10.703880px;}
.ws2{word-spacing:-10.494000px;}
.wsb{word-spacing:-8.745000px;}
.ws3{word-spacing:-7.870500px;}
.wsf{word-spacing:-7.450740px;}
.ws10{word-spacing:-6.705666px;}
.wsc{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
._e{margin-left:-7.404000px;}
._1{margin-left:-5.760000px;}
._b{margin-left:-4.140408px;}
._6{margin-left:-3.016800px;}
._0{margin-left:-1.092000px;}
._5{width:1.108800px;}
._c{width:2.700000px;}
._7{width:3.708000px;}
._3{width:5.040000px;}
._4{width:6.732000px;}
._2{width:7.776000px;}
._a{width:9.628200px;}
._d{width:11.021400px;}
._9{width:12.204000px;}
._8{width:40.500000px;}
.fc1{color:rgb(128,130,133);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs2{font-size:41.976000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y73{bottom:127.558950px;}
.y12{bottom:127.559100px;}
.yb7{bottom:127.559250px;}
.y45{bottom:132.054450px;}
.y72{bottom:143.758950px;}
.y11{bottom:143.759100px;}
.yb6{bottom:143.759250px;}
.y89{bottom:148.254450px;}
.y10{bottom:159.959100px;}
.yb5{bottom:159.959250px;}
.y71{bottom:164.454450px;}
.y88{bottom:176.158950px;}
.y70{bottom:176.159100px;}
.yb4{bottom:176.159250px;}
.yf{bottom:180.654600px;}
.y6f{bottom:192.359100px;}
.ye{bottom:192.359250px;}
.y44{bottom:194.335200px;}
.y87{bottom:196.854450px;}
.yb3{bottom:196.854750px;}
.yb9{bottom:208.558950px;}
.y6e{bottom:208.559100px;}
.yd{bottom:208.559250px;}
.yb2{bottom:208.559400px;}
.y43{bottom:215.935200px;}
.yb1{bottom:224.759400px;}
.y6d{bottom:229.254450px;}
.yc{bottom:229.254750px;}
.y42{bottom:237.535200px;}
.yb0{bottom:240.959400px;}
.yb8{bottom:245.454450px;}
.y6c{bottom:245.454600px;}
.yaf{bottom:257.159400px;}
.y41{bottom:259.135200px;}
.y6b{bottom:261.654600px;}
.y86{bottom:272.311650px;}
.yae{bottom:273.359400px;}
.y40{bottom:280.735200px;}
.yb{bottom:289.146750px;}
.y85{bottom:293.911650px;}
.yad{bottom:294.054900px;}
.y3f{bottom:302.335200px;}
.yac{bottom:305.759550px;}
.ya{bottom:310.746750px;}
.y84{bottom:315.511650px;}
.y6a{bottom:319.559400px;}
.y3e{bottom:323.935200px;}
.yab{bottom:326.455050px;}
.y9{bottom:332.346750px;}
.y83{bottom:337.111650px;}
.y69{bottom:341.159400px;}
.yaa{bottom:342.655200px;}
.y3d{bottom:345.535200px;}
.y8{bottom:353.946750px;}
.y82{bottom:358.711650px;}
.y68{bottom:362.759400px;}
.y3c{bottom:367.135200px;}
.y7{bottom:375.546750px;}
.y67{bottom:384.359400px;}
.y3b{bottom:388.735200px;}
.y81{bottom:393.067500px;}
.y6{bottom:397.146750px;}
.y66{bottom:405.959400px;}
.y3a{bottom:410.335200px;}
.y80{bottom:412.567500px;}
.ya9{bottom:414.823650px;}
.y5{bottom:418.746750px;}
.y65{bottom:427.559400px;}
.y39{bottom:431.935200px;}
.y7f{bottom:432.067500px;}
.ya8{bottom:436.423650px;}
.y4{bottom:440.346750px;}
.y64{bottom:449.159400px;}
.y7e{bottom:451.567500px;}
.y38{bottom:453.535200px;}
.ya7{bottom:458.023650px;}
.y63{bottom:470.759400px;}
.y7d{bottom:471.067500px;}
.y37{bottom:475.135200px;}
.ya6{bottom:479.623650px;}
.y7c{bottom:490.567500px;}
.y62{bottom:492.359400px;}
.y36{bottom:496.735200px;}
.ya5{bottom:501.223650px;}
.y61{bottom:513.959400px;}
.y35{bottom:518.335200px;}
.y7b{bottom:522.823350px;}
.ya4{bottom:522.823650px;}
.y60{bottom:535.559400px;}
.y34{bottom:539.935200px;}
.y7a{bottom:544.423350px;}
.ya3{bottom:544.423650px;}
.y5f{bottom:557.159400px;}
.y33{bottom:561.535200px;}
.y79{bottom:566.023350px;}
.ya2{bottom:566.023650px;}
.y5e{bottom:578.759400px;}
.y32{bottom:583.135200px;}
.y78{bottom:587.623350px;}
.ya1{bottom:587.623650px;}
.y5d{bottom:600.359400px;}
.y31{bottom:604.735200px;}
.ya0{bottom:609.223650px;}
.y5c{bottom:621.959400px;}
.y77{bottom:621.979350px;}
.y30{bottom:626.335200px;}
.y9f{bottom:630.823500px;}
.y76{bottom:641.479350px;}
.y5b{bottom:643.559400px;}
.y2f{bottom:647.935200px;}
.y9e{bottom:652.423500px;}
.y75{bottom:660.979350px;}
.y5a{bottom:665.159400px;}
.y2e{bottom:669.535200px;}
.y9d{bottom:674.023500px;}
.y74{bottom:680.479350px;}
.y59{bottom:686.759400px;}
.y2d{bottom:691.135200px;}
.y9c{bottom:695.623500px;}
.y58{bottom:708.359550px;}
.y2c{bottom:712.735200px;}
.y9b{bottom:717.223500px;}
.y57{bottom:729.959550px;}
.y2b{bottom:734.335200px;}
.y9a{bottom:738.823500px;}
.y56{bottom:751.559550px;}
.y2a{bottom:755.935200px;}
.y99{bottom:760.423500px;}
.y55{bottom:773.159550px;}
.y29{bottom:777.535200px;}
.y98{bottom:782.023500px;}
.y54{bottom:794.759550px;}
.y28{bottom:799.135200px;}
.y97{bottom:803.623500px;}
.y53{bottom:816.359550px;}
.y27{bottom:820.735200px;}
.y96{bottom:825.223500px;}
.y52{bottom:837.959550px;}
.y26{bottom:842.335200px;}
.y95{bottom:846.823500px;}
.y51{bottom:859.559550px;}
.y25{bottom:863.935200px;}
.y50{bottom:881.159550px;}
.y94{bottom:881.179350px;}
.y3{bottom:885.102600px;}
.y24{bottom:885.535200px;}
.y93{bottom:900.679350px;}
.y4f{bottom:902.759550px;}
.y23{bottom:907.135200px;}
.y2{bottom:915.102600px;}
.y92{bottom:920.179350px;}
.y4e{bottom:924.359550px;}
.y22{bottom:928.735200px;}
.y91{bottom:939.679350px;}
.y4d{bottom:945.959550px;}
.y21{bottom:950.335200px;}
.y4c{bottom:967.559550px;}
.y20{bottom:971.935200px;}
.y90{bottom:971.935350px;}
.y4b{bottom:989.159550px;}
.y1f{bottom:993.535200px;}
.y8f{bottom:993.535350px;}
.y4a{bottom:1010.759550px;}
.y1e{bottom:1015.135200px;}
.y8e{bottom:1015.135350px;}
.y1{bottom:1018.614600px;}
.y1d{bottom:1036.735200px;}
.y8d{bottom:1036.735350px;}
.y49{bottom:1045.115400px;}
.y1c{bottom:1058.335200px;}
.y8c{bottom:1058.335350px;}
.y48{bottom:1064.615400px;}
.y1b{bottom:1079.935200px;}
.y8b{bottom:1079.935350px;}
.y47{bottom:1084.115400px;}
.y18{bottom:1096.552350px;}
.y1a{bottom:1101.535200px;}
.y8a{bottom:1101.535350px;}
.y46{bottom:1103.615400px;}
.y17{bottom:1116.352350px;}
.y16{bottom:1136.152350px;}
.y15{bottom:1155.952350px;}
.y19{bottom:1166.275950px;}
.y14{bottom:1175.752350px;}
.y13{bottom:1195.552350px;}
.h5{height:29.399836px;}
.hb{height:29.400436px;}
.hd{height:29.531672px;}
.h6{height:47.381836px;}
.he{height:47.513672px;}
.h7{height:48.015000px;}
.ha{height:52.646484px;}
.h4{height:63.175781px;}
.hc{height:63.176381px;}
.h9{height:63.351562px;}
.h2{height:69.984000px;}
.h8{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.559100px;}
.xc{left:148.818900px;}
.xb{left:217.098450px;}
.x2{left:276.989400px;}
.x3{left:280.319400px;}
.x1{left:376.590750px;}
.x9{left:455.497350px;}
.x5{left:485.675850px;}
.x8{left:511.811850px;}
.x6{left:611.455350px;}
.xa{left:641.551350px;}
.x7{left:698.047350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls3{letter-spacing:-5.888000pt;}
.ls9{letter-spacing:-5.721600pt;}
.ls1{letter-spacing:-3.835200pt;}
.ls6{letter-spacing:-3.712000pt;}
.ls4{letter-spacing:-1.150453pt;}
.ls5{letter-spacing:-1.035408pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.186560pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ws0{word-spacing:-106.666667pt;}
.ws13{word-spacing:-64.320000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws9{word-spacing:-63.680000pt;}
.wse{word-spacing:-53.333333pt;}
.ws4{word-spacing:-48.000000pt;}
.ws6{word-spacing:-44.164800pt;}
.wsa{word-spacing:-39.040000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws11{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.wsd{word-spacing:-10.112000pt;}
.ws12{word-spacing:-9.514560pt;}
.ws2{word-spacing:-9.328000pt;}
.wsb{word-spacing:-7.773333pt;}
.ws3{word-spacing:-6.996000pt;}
.wsf{word-spacing:-6.622880pt;}
.ws10{word-spacing:-5.960592pt;}
.wsc{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
._e{margin-left:-6.581333pt;}
._1{margin-left:-5.120000pt;}
._b{margin-left:-3.680363pt;}
._6{margin-left:-2.681600pt;}
._0{margin-left:-0.970667pt;}
._5{width:0.985600pt;}
._c{width:2.400000pt;}
._7{width:3.296000pt;}
._3{width:4.480000pt;}
._4{width:5.984000pt;}
._2{width:6.912000pt;}
._a{width:8.558400pt;}
._d{width:9.796800pt;}
._9{width:10.848000pt;}
._8{width:36.000000pt;}
.fs3{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs2{font-size:37.312000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:113.385733pt;}
.y12{bottom:113.385867pt;}
.yb7{bottom:113.386000pt;}
.y45{bottom:117.381733pt;}
.y72{bottom:127.785733pt;}
.y11{bottom:127.785867pt;}
.yb6{bottom:127.786000pt;}
.y89{bottom:131.781733pt;}
.y10{bottom:142.185867pt;}
.yb5{bottom:142.186000pt;}
.y71{bottom:146.181733pt;}
.y88{bottom:156.585733pt;}
.y70{bottom:156.585867pt;}
.yb4{bottom:156.586000pt;}
.yf{bottom:160.581867pt;}
.y6f{bottom:170.985867pt;}
.ye{bottom:170.986000pt;}
.y44{bottom:172.742400pt;}
.y87{bottom:174.981733pt;}
.yb3{bottom:174.982000pt;}
.yb9{bottom:185.385733pt;}
.y6e{bottom:185.385867pt;}
.yd{bottom:185.386000pt;}
.yb2{bottom:185.386133pt;}
.y43{bottom:191.942400pt;}
.yb1{bottom:199.786133pt;}
.y6d{bottom:203.781733pt;}
.yc{bottom:203.782000pt;}
.y42{bottom:211.142400pt;}
.yb0{bottom:214.186133pt;}
.yb8{bottom:218.181733pt;}
.y6c{bottom:218.181867pt;}
.yaf{bottom:228.586133pt;}
.y41{bottom:230.342400pt;}
.y6b{bottom:232.581867pt;}
.y86{bottom:242.054800pt;}
.yae{bottom:242.986133pt;}
.y40{bottom:249.542400pt;}
.yb{bottom:257.019333pt;}
.y85{bottom:261.254800pt;}
.yad{bottom:261.382133pt;}
.y3f{bottom:268.742400pt;}
.yac{bottom:271.786267pt;}
.ya{bottom:276.219333pt;}
.y84{bottom:280.454800pt;}
.y6a{bottom:284.052800pt;}
.y3e{bottom:287.942400pt;}
.yab{bottom:290.182267pt;}
.y9{bottom:295.419333pt;}
.y83{bottom:299.654800pt;}
.y69{bottom:303.252800pt;}
.yaa{bottom:304.582400pt;}
.y3d{bottom:307.142400pt;}
.y8{bottom:314.619333pt;}
.y82{bottom:318.854800pt;}
.y68{bottom:322.452800pt;}
.y3c{bottom:326.342400pt;}
.y7{bottom:333.819333pt;}
.y67{bottom:341.652800pt;}
.y3b{bottom:345.542400pt;}
.y81{bottom:349.393333pt;}
.y6{bottom:353.019333pt;}
.y66{bottom:360.852800pt;}
.y3a{bottom:364.742400pt;}
.y80{bottom:366.726667pt;}
.ya9{bottom:368.732133pt;}
.y5{bottom:372.219333pt;}
.y65{bottom:380.052800pt;}
.y39{bottom:383.942400pt;}
.y7f{bottom:384.060000pt;}
.ya8{bottom:387.932133pt;}
.y4{bottom:391.419333pt;}
.y64{bottom:399.252800pt;}
.y7e{bottom:401.393333pt;}
.y38{bottom:403.142400pt;}
.ya7{bottom:407.132133pt;}
.y63{bottom:418.452800pt;}
.y7d{bottom:418.726667pt;}
.y37{bottom:422.342400pt;}
.ya6{bottom:426.332133pt;}
.y7c{bottom:436.060000pt;}
.y62{bottom:437.652800pt;}
.y36{bottom:441.542400pt;}
.ya5{bottom:445.532133pt;}
.y61{bottom:456.852800pt;}
.y35{bottom:460.742400pt;}
.y7b{bottom:464.731867pt;}
.ya4{bottom:464.732133pt;}
.y60{bottom:476.052800pt;}
.y34{bottom:479.942400pt;}
.y7a{bottom:483.931867pt;}
.ya3{bottom:483.932133pt;}
.y5f{bottom:495.252800pt;}
.y33{bottom:499.142400pt;}
.y79{bottom:503.131867pt;}
.ya2{bottom:503.132133pt;}
.y5e{bottom:514.452800pt;}
.y32{bottom:518.342400pt;}
.y78{bottom:522.331867pt;}
.ya1{bottom:522.332133pt;}
.y5d{bottom:533.652800pt;}
.y31{bottom:537.542400pt;}
.ya0{bottom:541.532133pt;}
.y5c{bottom:552.852800pt;}
.y77{bottom:552.870533pt;}
.y30{bottom:556.742400pt;}
.y9f{bottom:560.732000pt;}
.y76{bottom:570.203867pt;}
.y5b{bottom:572.052800pt;}
.y2f{bottom:575.942400pt;}
.y9e{bottom:579.932000pt;}
.y75{bottom:587.537200pt;}
.y5a{bottom:591.252800pt;}
.y2e{bottom:595.142400pt;}
.y9d{bottom:599.132000pt;}
.y74{bottom:604.870533pt;}
.y59{bottom:610.452800pt;}
.y2d{bottom:614.342400pt;}
.y9c{bottom:618.332000pt;}
.y58{bottom:629.652933pt;}
.y2c{bottom:633.542400pt;}
.y9b{bottom:637.532000pt;}
.y57{bottom:648.852933pt;}
.y2b{bottom:652.742400pt;}
.y9a{bottom:656.732000pt;}
.y56{bottom:668.052933pt;}
.y2a{bottom:671.942400pt;}
.y99{bottom:675.932000pt;}
.y55{bottom:687.252933pt;}
.y29{bottom:691.142400pt;}
.y98{bottom:695.132000pt;}
.y54{bottom:706.452933pt;}
.y28{bottom:710.342400pt;}
.y97{bottom:714.332000pt;}
.y53{bottom:725.652933pt;}
.y27{bottom:729.542400pt;}
.y96{bottom:733.532000pt;}
.y52{bottom:744.852933pt;}
.y26{bottom:748.742400pt;}
.y95{bottom:752.732000pt;}
.y51{bottom:764.052933pt;}
.y25{bottom:767.942400pt;}
.y50{bottom:783.252933pt;}
.y94{bottom:783.270533pt;}
.y3{bottom:786.757867pt;}
.y24{bottom:787.142400pt;}
.y93{bottom:800.603867pt;}
.y4f{bottom:802.452933pt;}
.y23{bottom:806.342400pt;}
.y2{bottom:813.424533pt;}
.y92{bottom:817.937200pt;}
.y4e{bottom:821.652933pt;}
.y22{bottom:825.542400pt;}
.y91{bottom:835.270533pt;}
.y4d{bottom:840.852933pt;}
.y21{bottom:844.742400pt;}
.y4c{bottom:860.052933pt;}
.y20{bottom:863.942400pt;}
.y90{bottom:863.942533pt;}
.y4b{bottom:879.252933pt;}
.y1f{bottom:883.142400pt;}
.y8f{bottom:883.142533pt;}
.y4a{bottom:898.452933pt;}
.y1e{bottom:902.342400pt;}
.y8e{bottom:902.342533pt;}
.y1{bottom:905.435200pt;}
.y1d{bottom:921.542400pt;}
.y8d{bottom:921.542533pt;}
.y49{bottom:928.991467pt;}
.y1c{bottom:940.742400pt;}
.y8c{bottom:940.742533pt;}
.y48{bottom:946.324800pt;}
.y1b{bottom:959.942400pt;}
.y8b{bottom:959.942533pt;}
.y47{bottom:963.658133pt;}
.y18{bottom:974.713200pt;}
.y1a{bottom:979.142400pt;}
.y8a{bottom:979.142533pt;}
.y46{bottom:980.991467pt;}
.y17{bottom:992.313200pt;}
.y16{bottom:1009.913200pt;}
.y15{bottom:1027.513200pt;}
.y19{bottom:1036.689733pt;}
.y14{bottom:1045.113200pt;}
.y13{bottom:1062.713200pt;}
.h5{height:26.133187pt;}
.hb{height:26.133721pt;}
.hd{height:26.250375pt;}
.h6{height:42.117188pt;}
.he{height:42.234375pt;}
.h7{height:42.680000pt;}
.ha{height:46.796875pt;}
.h4{height:56.156250pt;}
.hc{height:56.156783pt;}
.h9{height:56.312500pt;}
.h2{height:62.208000pt;}
.h8{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.385867pt;}
.xc{left:132.283467pt;}
.xb{left:192.976400pt;}
.x2{left:246.212800pt;}
.x3{left:249.172800pt;}
.x1{left:334.747333pt;}
.x9{left:404.886533pt;}
.x5{left:431.711867pt;}
.x8{left:454.943867pt;}
.x6{left:543.515867pt;}
.xa{left:570.267867pt;}
.x7{left:620.486533pt;}
}




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